void} & ViewStyleProp) {
const t = useTheme()
- const {_} = useLingui()
+ const {t: l} = useLingui()
return (
{img.alt ? (
-
+ ]}
+ scrollEnabled={isAltExpanded}
+ contentContainerStyle={[a.px_4xl, a.py_2xl]}>
-
+
) : null}
{imgs.length > 1 && (
@@ -449,6 +453,14 @@ const styles = StyleSheet.create({
padding: 16,
boxSizing: 'border-box',
},
+ altScroll: {
+ // Size to content like the View it replaced, rather than filling the
+ // column via ScrollView's default flexGrow.
+ flexGrow: 0,
+ flexShrink: 0,
+ // @ts-ignore web-only -sfn
+ maxHeight: '50vh',
+ },
menuBtn: {
top: 20,
left: 20,
diff --git a/src/components/Lightbox/chrome/Footer.tsx b/src/components/Lightbox/chrome/Footer.tsx
index a20c80df3d..0a708c7545 100644
--- a/src/components/Lightbox/chrome/Footer.tsx
+++ b/src/components/Lightbox/chrome/Footer.tsx
@@ -1,6 +1,9 @@
import {useRef} from 'react'
import {LayoutAnimation, ScrollView, StyleSheet, View} from 'react-native'
-import {useSafeAreaInsets} from 'react-native-safe-area-context'
+import {
+ useSafeAreaFrame,
+ useSafeAreaInsets,
+} from 'react-native-safe-area-context'
import {BlurView} from 'expo-blur'
import {useLingui} from '@lingui/react/macro'
@@ -17,10 +20,16 @@ export function Footer({altText, isAltExpanded, onToggleAltExpanded}: Props) {
const {t: l} = useLingui()
const t = useTheme()
const insets = useSafeAreaInsets()
+ const {height: screenHeight} = useSafeAreaFrame()
const isMomentumScrolling = useRef(false)
if (!altText) return null
+ // Cap the overlay height so long alt text - or text enlarged by the OS via
+ // Dynamic Type / font scaling - scrolls within the overlay instead of growing
+ // past the top of the screen. Leaves the upper half clear for the header.
+ const maxHeight = screenHeight / 2
+
return (
{
isMomentumScrolling.current = true
From 6677ae977cd0cea0adc45a0b741c08660018ae79 Mon Sep 17 00:00:00 2001
From: Spence Pope
Date: Thu, 4 Jun 2026 14:25:35 -0400
Subject: [PATCH 009/165] Show image count badge on in-feed carousel (#10719)
---
src/components/Lightbox/chrome/PagerDots.tsx | 43 ++++++++-----
.../Lightbox/chrome/PagerDots.web.tsx | 62 +++++++++++++++++++
src/components/images/Gallery/index.tsx | 29 +++++++++
3 files changed, 118 insertions(+), 16 deletions(-)
create mode 100644 src/components/Lightbox/chrome/PagerDots.web.tsx
diff --git a/src/components/Lightbox/chrome/PagerDots.tsx b/src/components/Lightbox/chrome/PagerDots.tsx
index a5fea5d4de..ea3cbc7f17 100644
--- a/src/components/Lightbox/chrome/PagerDots.tsx
+++ b/src/components/Lightbox/chrome/PagerDots.tsx
@@ -1,6 +1,5 @@
import {StyleSheet, View} from 'react-native'
-
-import {atoms as a} from '#/alf'
+import {BlurView} from 'expo-blur'
type Props = {
count: number
@@ -14,26 +13,38 @@ const GAP = 5
export function PagerDots({count, activeIndex}: Props) {
if (count <= 1) return null
return (
-
- {Array.from({length: count}).map((_, i) => {
- const isActive = i === activeIndex
- return (
-
- )
- })}
+
+
+ {Array.from({length: count}).map((_, i) => {
+ const isActive = i === activeIndex
+ return (
+
+ )
+ })}
+
)
}
const styles = StyleSheet.create({
- row: {
+ root: {
+ borderRadius: 999,
+ overflow: 'hidden',
+ },
+ inner: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ justifyContent: 'center',
gap: GAP,
+ paddingHorizontal: 10,
+ paddingVertical: 6,
+ backgroundColor: 'rgba(0, 0, 0, 0.5)',
},
activeDot: {
width: ACTIVE,
diff --git a/src/components/Lightbox/chrome/PagerDots.web.tsx b/src/components/Lightbox/chrome/PagerDots.web.tsx
new file mode 100644
index 0000000000..370917254f
--- /dev/null
+++ b/src/components/Lightbox/chrome/PagerDots.web.tsx
@@ -0,0 +1,62 @@
+import {StyleSheet, View} from 'react-native'
+
+type Props = {
+ count: number
+ activeIndex: number
+}
+
+const ACTIVE = 6
+const INACTIVE = 4
+const GAP = 5
+
+export function PagerDots({count, activeIndex}: Props) {
+ if (count <= 1) return null
+ return (
+
+ {Array.from({length: count}).map((_, i) => {
+ const isActive = i === activeIndex
+ return (
+
+ )
+ })}
+
+ )
+}
+
+const styles = StyleSheet.create({
+ root: {
+ flexDirection: 'row',
+ alignItems: 'center',
+ justifyContent: 'center',
+ gap: GAP,
+ paddingHorizontal: 10,
+ paddingVertical: 6,
+ borderRadius: 999,
+ backgroundColor: 'rgba(0, 0, 0, 0.75)',
+ // @ts-expect-error web-only
+ backdropFilter: 'blur(8px)',
+ WebkitBackdropFilter: 'blur(8px)',
+ },
+ activeDot: {
+ width: ACTIVE,
+ height: ACTIVE,
+ borderRadius: ACTIVE / 2,
+ },
+ inactiveDot: {
+ width: INACTIVE,
+ height: INACTIVE,
+ borderRadius: INACTIVE / 2,
+ },
+ active: {
+ backgroundColor: '#fff',
+ },
+ inactive: {
+ backgroundColor: 'rgba(255, 255, 255, 0.4)',
+ },
+})
diff --git a/src/components/images/Gallery/index.tsx b/src/components/images/Gallery/index.tsx
index db5ced37bc..0ca46c0b67 100644
--- a/src/components/images/Gallery/index.tsx
+++ b/src/components/images/Gallery/index.tsx
@@ -491,6 +491,35 @@ function GalleryImage({
useAppleWebpCodec
/>
+ {!hideBadges && imageCount > 1 ? (
+
+
+ {index + 1}/{imageCount}
+
+
+ ) : null}
+
{(hasAlt || isCropped) && !hideBadges ? (
Date: Thu, 4 Jun 2026 12:57:22 -0700
Subject: [PATCH 010/165] Improve error message for group chat join link
(#10729)
---
src/components/intents/GroupChatJoinDialog.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/intents/GroupChatJoinDialog.tsx b/src/components/intents/GroupChatJoinDialog.tsx
index 7c0d7d7e19..8d235b9a07 100644
--- a/src/components/intents/GroupChatJoinDialog.tsx
+++ b/src/components/intents/GroupChatJoinDialog.tsx
@@ -134,7 +134,7 @@ function GroupChatJoinDialogContent({code}: {code?: string}) {
) {
errorMessage = l`The member limit has been reached.`
} else if (error instanceof ChatBskyGroupRequestJoin.UserKickedError) {
- errorMessage = l`You have been removed from this group.`
+ errorMessage = l`You have been previously removed from this group and can’t join it using this link.`
}
Toast.show(errorMessage)
},
From 09fa93553bf17a7058339bb0cf843daeb88ab0ff Mon Sep 17 00:00:00 2001
From: DS Boyce <260543580+ds-boyce@users.noreply.github.com>
Date: Thu, 4 Jun 2026 13:08:51 -0700
Subject: [PATCH 011/165] Fix useJoinRequestMutation (#10730)
---
src/state/queries/messages/join-requests.ts | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/src/state/queries/messages/join-requests.ts b/src/state/queries/messages/join-requests.ts
index a3eda671e8..179dfafaaf 100644
--- a/src/state/queries/messages/join-requests.ts
+++ b/src/state/queries/messages/join-requests.ts
@@ -39,14 +39,16 @@ export function useJoinRequestMutation(
return useMutation({
mutationFn: async ({member}: {member: string}) => {
if (!convoId) throw new Error('No convoId provided')
- const endpoint =
+ const {data} =
action === 'approve'
- ? agent.chat.bsky.group.approveJoinRequest
- : agent.chat.bsky.group.rejectJoinRequest
- const {data} = await endpoint(
- {convoId, member},
- {headers: DM_SERVICE_HEADERS, encoding: 'application/json'},
- )
+ ? await agent.chat.bsky.group.approveJoinRequest(
+ {convoId, member},
+ {headers: DM_SERVICE_HEADERS, encoding: 'application/json'},
+ )
+ : await agent.chat.bsky.group.rejectJoinRequest(
+ {convoId, member},
+ {headers: DM_SERVICE_HEADERS, encoding: 'application/json'},
+ )
return data as JoinRequestOutput
},
onMutate: ({member}) => {
From ded2ca37440d63ef3d2ea31e44fd16f60ad676c6 Mon Sep 17 00:00:00 2001
From: Samuel Newman
Date: Thu, 4 Jun 2026 23:11:03 +0300
Subject: [PATCH 012/165] [Chat] Add chat invite as message embed type (#10728)
---
.gitignore | 1 +
eslint-suppressions.json | 10 -
src/components/Button.tsx | 31 ++-
src/components/Post/Embed/ChatInviteEmbed.tsx | 41 ++--
.../Post/Embed/ExternalEmbed/index.tsx | 2 +-
.../Post/Embed/JoinRequestEmbed.tsx | 230 +++---------------
src/components/dms/ChatInvite/Card.tsx | 90 +++++++
src/components/dms/ChatInvite/Context.tsx | 47 ++++
src/components/dms/ChatInvite/JoinButton.tsx | 42 ++++
src/components/dms/ChatInvite/Root.tsx | 144 +++++++++++
src/components/dms/ChatInvite/index.tsx | 8 +
src/components/dms/MessageItem.tsx | 17 +-
src/components/dms/MessageItemInviteEmbed.tsx | 87 +++++++
.../Messages/components/MessageComposer.tsx | 8 +-
.../Messages/components/MessageInputEmbed.tsx | 151 ++++++++++--
.../Messages/components/MessagesList.tsx | 116 +++++----
src/state/messages/convo/agent.ts | 9 +-
src/state/messages/convo/types.ts | 6 +-
src/state/queries/join-links.ts | 87 +++++--
src/view/com/composer/ExternalEmbed.tsx | 2 +-
20 files changed, 813 insertions(+), 316 deletions(-)
create mode 100644 src/components/dms/ChatInvite/Card.tsx
create mode 100644 src/components/dms/ChatInvite/Context.tsx
create mode 100644 src/components/dms/ChatInvite/JoinButton.tsx
create mode 100644 src/components/dms/ChatInvite/Root.tsx
create mode 100644 src/components/dms/ChatInvite/index.tsx
create mode 100644 src/components/dms/MessageItemInviteEmbed.tsx
diff --git a/.gitignore b/.gitignore
index 6dc2fe592b..015e13d3de 100644
--- a/.gitignore
+++ b/.gitignore
@@ -133,3 +133,4 @@ bskyweb/static/media/*.svg
# superpowers plugin plans/specs — local-only workspace
docs/superpowers/
+.claude/worktrees
diff --git a/eslint-suppressions.json b/eslint-suppressions.json
index d8555ace5b..483ed83e7d 100644
--- a/eslint-suppressions.json
+++ b/eslint-suppressions.json
@@ -124,11 +124,6 @@
"count": 1
}
},
- "src/components/Button.tsx": {
- "react-hooks/immutability": {
- "count": 1
- }
- },
"src/components/Composer/index.tsx": {
"@typescript-eslint/no-explicit-any": {
"count": 2
@@ -261,11 +256,6 @@
"count": 3
}
},
- "src/components/Post/Embed/ExternalEmbed/index.tsx": {
- "@typescript-eslint/no-floating-promises": {
- "count": 1
- }
- },
"src/components/Post/Embed/ImageEmbed.tsx": {
"@typescript-eslint/no-explicit-any": {
"count": 2
diff --git a/src/components/Button.tsx b/src/components/Button.tsx
index 5f74595029..2d02bb832f 100644
--- a/src/components/Button.tsx
+++ b/src/components/Button.tsx
@@ -45,7 +45,7 @@ export type ButtonColor =
| 'negative'
| 'primary_subtle'
| 'negative_subtle'
-export type ButtonSize = 'tiny' | 'small' | 'large'
+export type ButtonSize = 'tiny' | 'small' | 'medium' | 'large'
export type ButtonShape = 'round' | 'square' | 'rectangular' | 'default'
export type VariantProps = {
/**
@@ -136,7 +136,7 @@ export const Button = forwardRef(
(
{
children,
- variant,
+ variant: variantProp,
color,
size,
shape = 'default',
@@ -160,7 +160,8 @@ export const Button = forwardRef(
* If a `color` is set, then we want to use the existing codepaths for
* "solid" buttons. This is to maintain backwards compatibility.
*/
- if (!variant && color) {
+ let variant: VariantProps['variant'] = variantProp
+ if (!variantProp && color) {
variant = 'solid'
}
@@ -458,6 +459,12 @@ export const Button = forwardRef(
paddingHorizontal: 24,
gap: 6,
})
+ } else if (size === 'medium') {
+ baseStyles.push(a.rounded_full, {
+ paddingVertical: 9,
+ paddingHorizontal: 28,
+ gap: 5,
+ })
} else if (size === 'small') {
baseStyles.push(a.rounded_full, {
paddingVertical: 8,
@@ -479,6 +486,13 @@ export const Button = forwardRef(
borderRadius: 10,
gap: 3,
})
+ } else if (size === 'medium') {
+ baseStyles.push({
+ paddingVertical: 9,
+ paddingHorizontal: 16,
+ borderRadius: 8,
+ gap: 3,
+ })
} else if (size === 'small') {
baseStyles.push({
paddingVertical: 8,
@@ -505,6 +519,12 @@ export const Button = forwardRef(
} else {
baseStyles.push({height: 44, width: 44})
}
+ } else if (size === 'medium') {
+ if (shape === 'round') {
+ baseStyles.push({height: 33, width: 33})
+ } else {
+ baseStyles.push({height: 33, width: 33})
+ }
} else if (size === 'small') {
if (shape === 'round') {
baseStyles.push({height: 33, width: 33})
@@ -758,6 +778,8 @@ export function useSharedButtonTextStyles() {
if (size === 'large') {
baseStyles.push(a.text_md, a.font_medium)
+ } else if (size === 'medium') {
+ baseStyles.push(a.text_sm, a.font_medium)
} else if (size === 'small') {
baseStyles.push(a.text_sm, a.font_medium)
} else if (size === 'tiny') {
@@ -799,6 +821,7 @@ export function ButtonIcon({
size ??
(({
large: 'md',
+ medium: 'sm',
small: 'sm',
tiny: 'xs',
}[buttonSize || 'small'] || 'sm') as Exclude<
@@ -828,6 +851,7 @@ export function ButtonIcon({
*/
const iconContainerSize = {
large: 20,
+ medium: 17,
small: 17,
tiny: 15,
}[buttonSize || 'small']
@@ -841,6 +865,7 @@ export function ButtonIcon({
if (buttonShape === 'default') {
iconNegativeMargin = {
large: -2,
+ medium: -2,
small: -2,
tiny: -1,
}[buttonSize || 'small']
diff --git a/src/components/Post/Embed/ChatInviteEmbed.tsx b/src/components/Post/Embed/ChatInviteEmbed.tsx
index 744fcfb7fa..f50085426f 100644
--- a/src/components/Post/Embed/ChatInviteEmbed.tsx
+++ b/src/components/Post/Embed/ChatInviteEmbed.tsx
@@ -1,12 +1,16 @@
import {type StyleProp, type ViewStyle} from 'react-native'
import {type AppBskyEmbedExternal} from '@atproto/api'
-import {useJoinLinkPreviewsQuery} from '#/state/queries/join-links'
-import {useSession} from '#/state/session'
import {atoms as a} from '#/alf'
+import * as ChatInvite from '#/components/dms/ChatInvite'
import {ExternalEmbed} from '#/components/Post/Embed/ExternalEmbed'
-import {JoinRequestEmbed} from '#/components/Post/Embed/JoinRequestEmbed'
+import {JoinRequestEmbedBody} from '#/components/Post/Embed/JoinRequestEmbed'
+/**
+ * Renders a chat invite link found in an `app.bsky.embed.external` embed (e.g.
+ * a `bsky.app/c/` link posted to the feed) as a join request card,
+ * falling back to a plain external embed if the invite can't be resolved.
+ */
export function ChatInviteEmbed({
code,
link,
@@ -18,24 +22,27 @@ export function ChatInviteEmbed({
onOpen?: () => void
style?: StyleProp
}) {
- const {hasSession} = useSession()
- const {data, error, isPending} = useJoinLinkPreviewsQuery({
- codes: [code],
- hasSession,
- })
+ return (
+
+
+
+ )
+}
- const preview = data?.joinLinkPreviews[0]
+function ChatInviteEmbedBody({
+ link,
+ onOpen,
+ style,
+}: {
+ link: AppBskyEmbedExternal.ViewExternal
+ onOpen?: () => void
+ style?: StyleProp
+}) {
+ const {error} = ChatInvite.useChatInvite()
if (error) {
return
}
- return (
-
- )
+ return
}
diff --git a/src/components/Post/Embed/ExternalEmbed/index.tsx b/src/components/Post/Embed/ExternalEmbed/index.tsx
index fe0be2bd25..472c403060 100644
--- a/src/components/Post/Embed/ExternalEmbed/index.tsx
+++ b/src/components/Post/Embed/ExternalEmbed/index.tsx
@@ -59,7 +59,7 @@ export const ExternalEmbed = ({
const onShareExternal = useCallback(() => {
if (link.uri && IS_NATIVE) {
playHaptic('Heavy')
- shareUrl(link.uri)
+ void shareUrl(link.uri)
}
}, [link.uri, playHaptic])
diff --git a/src/components/Post/Embed/JoinRequestEmbed.tsx b/src/components/Post/Embed/JoinRequestEmbed.tsx
index 77a0223bec..db7ec589bb 100644
--- a/src/components/Post/Embed/JoinRequestEmbed.tsx
+++ b/src/components/Post/Embed/JoinRequestEmbed.tsx
@@ -1,43 +1,56 @@
import {type StyleProp, View, type ViewStyle} from 'react-native'
import {type ChatBskyGroupDefs} from '@atproto/api'
-import {Plural, Trans, useLingui} from '@lingui/react/macro'
-import {useNavigation} from '@react-navigation/native'
+import {Trans} from '@lingui/react/macro'
-import {createSanitizedDisplayName} from '#/lib/moderation/create-sanitized-display-name'
-import {type NavigationProp} from '#/lib/routes/types'
-import {sanitizeHandle} from '#/lib/strings/handles'
import {atoms as a, useTheme} from '#/alf'
-import {AvatarBubbles} from '#/components/AvatarBubbles'
-import {
- Button,
- type ButtonColor,
- ButtonIcon,
- ButtonText,
-} from '#/components/Button'
-import {ArrowRight_Stroke2_Corner0_Rounded as ArrowRightIcon} from '#/components/icons/Arrow'
-import {ArrowBoxRight_Stroke2_Corner3_Rounded as JoinIcon} from '#/components/icons/ArrowBoxRight'
-import {CheckThick_Stroke2_Corner0_Rounded as CheckIcon} from '#/components/icons/Check'
-import {RaisingHand4Finger_Stroke2_Corner2_Rounded as HandIcon} from '#/components/icons/RaisingHand'
+import * as ChatInvite from '#/components/dms/ChatInvite'
import {Warning_Stroke2_Corner0_Rounded as WarningIcon} from '#/components/icons/Warning'
-import {useIntentDialogs} from '#/components/intents/IntentDialogs'
import {Loader} from '#/components/Loader'
-import {ProfileBadges} from '#/components/ProfileBadges'
import {Text} from '#/components/Typography'
-const JOIN_REQUEST_EMBED_HEIGHT = 152
+const JOIN_REQUEST_EMBED_HEIGHT = 140
+/**
+ * The "join request" presentation of a chat invite, used as a post embed (in
+ * feeds and the post composer). Composes the headless `ChatInvite` primitive:
+ * pass either a `code` to fetch by, or an already-resolved `preview` as the
+ * initial data to avoid a loading flash.
+ */
export function JoinRequestEmbed({
- loading = false,
+ code,
preview,
style,
onOpen,
}: {
- loading?: boolean
+ code?: string
preview?: ChatBskyGroupDefs.JoinLinkPreviewView
style?: StyleProp
onOpen?: () => void
+}) {
+ const resolvedCode = code ?? preview?.code
+ if (!resolvedCode) return null
+
+ return (
+
+
+
+ )
+}
+
+/**
+ * The context-consuming presentation (loading / no-longer-available / card +
+ * join button). Exported so surfaces that own their own `ChatInvite.Root` (e.g.
+ * to add an error fallback) can render it without nesting another Root.
+ */
+export function JoinRequestEmbedBody({
+ style,
+ onOpen,
+}: {
+ style?: StyleProp
+ onOpen?: () => void
}) {
const t = useTheme()
+ const {loading, preview} = ChatInvite.useChatInvite()
if (loading) {
return (
@@ -81,60 +94,6 @@ export function JoinRequestEmbed({
)
}
- return (
-
- )
-}
-
-function JoinRequestEmbedInner({
- preview,
- style,
- onOpen,
-}: {
- preview: ChatBskyGroupDefs.JoinLinkPreviewView
- style?: StyleProp
- onOpen?: () => void
-}) {
- const t = useTheme()
- const {t: l} = useLingui()
- const navigation = useNavigation()
-
- const {groupChatJoinDialogControl, setGroupChatJoinState} = useIntentDialogs()
-
- const ownerDisplayName = createSanitizedDisplayName(preview.owner)
- const ownerHandle = sanitizeHandle(preview.owner.handle, '@')
-
- const avatarProfiles = preview.convo?.members ?? [preview.owner]
-
- const convoId = preview.convo?.id
- const isFollowing = preview.owner.viewer?.following ?? false
- const hasRequested = !convoId && preview.viewer?.requestedAt != null
-
- let canJoin = true
- let ButtonIconImage = JoinIcon
- let buttonText = preview.requireApproval ? l`Request to join` : l`Join`
- let buttonColor: ButtonColor = 'primary'
- if (preview.enabledStatus !== 'enabled') {
- canJoin = false
- ButtonIconImage = WarningIcon
- buttonText = l`Chat invite link no longer available`
- buttonColor = 'secondary'
- } else if (preview.memberCount >= preview.memberLimit) {
- canJoin = false
- ButtonIconImage = HandIcon
- buttonText = l`This chat is full`
- buttonColor = 'secondary'
- } else if (preview.joinRule === 'followedByOwner' && !isFollowing) {
- canJoin = false
- ButtonIconImage = HandIcon
- buttonText = l`Only people the chat owner follows can join`
- buttonColor = 'secondary'
- } else if (hasRequested) {
- ButtonIconImage = CheckIcon
- buttonText = l`Requested`
- buttonColor = 'secondary'
- }
-
return (
-
-
-
-
- {preview.name}
-
-
-
- Group chat
-
-
-
- {preview.memberCount}/{preview.memberLimit}{' '}
-
-
-
-
-
-
-
- By{' '}
-
- {ownerDisplayName}
-
-
-
-
-
- {ownerHandle}
-
-
-
-
- {convoId ? (
-
- ) : (
-
- )}
+
+
)
}
diff --git a/src/components/dms/ChatInvite/Card.tsx b/src/components/dms/ChatInvite/Card.tsx
new file mode 100644
index 0000000000..518371325e
--- /dev/null
+++ b/src/components/dms/ChatInvite/Card.tsx
@@ -0,0 +1,90 @@
+import {View} from 'react-native'
+import {Plural, Trans} from '@lingui/react/macro'
+
+import {createSanitizedDisplayName} from '#/lib/moderation/create-sanitized-display-name'
+import {sanitizeHandle} from '#/lib/strings/handles'
+import {atoms as a, useTheme} from '#/alf'
+import {AvatarBubbles} from '#/components/AvatarBubbles'
+import {ProfileBadges} from '#/components/ProfileBadges'
+import {Text} from '#/components/Typography'
+import {useChatInvite} from './Context'
+
+/**
+ * Presentational preview of a chat invite: member avatars, group name, member
+ * count, and owner. Reads the preview from `ChatInvite.Root` context. Renders
+ * nothing if there's no preview (use a fallback alongside it for that case).
+ */
+export function Card({size}: {size: 'large' | 'small'}) {
+ const t = useTheme()
+ const {preview} = useChatInvite()
+
+ if (!preview) return null
+
+ const ownerDisplayName = createSanitizedDisplayName(preview.owner)
+ const ownerHandle = sanitizeHandle(preview.owner.handle, '@')
+ const avatarProfiles = preview.convo?.members ?? [preview.owner]
+
+ return (
+
+
+
+
+ {preview.name}
+
+
+
+ Group chat
+
+
+
+ {preview.memberCount}/{preview.memberLimit}{' '}
+
+
+
+
+
+
+
+ By {ownerDisplayName}
+
+
+
+
+ {ownerHandle}
+
+
+
+
+ )
+}
diff --git a/src/components/dms/ChatInvite/Context.tsx b/src/components/dms/ChatInvite/Context.tsx
new file mode 100644
index 0000000000..53c7a6cc22
--- /dev/null
+++ b/src/components/dms/ChatInvite/Context.tsx
@@ -0,0 +1,47 @@
+import {createContext, useContext} from 'react'
+import {type ChatBskyGroupDefs} from '@atproto/api'
+
+import {type ButtonColor} from '#/components/Button'
+import {type Props as SVGIconProps} from '#/components/icons/common'
+
+/**
+ * The derived state of the join/open action for a chat invite, computed once in
+ * `Root` and consumed by `JoinButton` (or any custom action UI).
+ */
+export type ChatInviteAction = {
+ label: string
+ accessibilityHint: string
+ icon: React.ComponentType
+ color: ButtonColor
+ /**
+ * Whether the action can be performed. False when the link is disabled, the
+ * chat is full, or the viewer doesn't meet the join rule.
+ */
+ disabled: boolean
+ onPress: () => void
+ side: 'left' | 'right'
+}
+
+export type ChatInviteContextValue = {
+ code: string
+ loading: boolean
+ error: boolean
+ preview: ChatBskyGroupDefs.JoinLinkPreviewView | undefined
+ /**
+ * The derived action descriptor. Undefined while loading or when there's no
+ * preview to act on.
+ */
+ action: ChatInviteAction | undefined
+}
+
+const ChatInviteContext = createContext(null)
+
+export function useChatInvite(): ChatInviteContextValue {
+ const ctx = useContext(ChatInviteContext)
+ if (!ctx) {
+ throw new Error('useChatInvite must be used within a ChatInvite.Root')
+ }
+ return ctx
+}
+
+export const ChatInviteProvider = ChatInviteContext.Provider
diff --git a/src/components/dms/ChatInvite/JoinButton.tsx b/src/components/dms/ChatInvite/JoinButton.tsx
new file mode 100644
index 0000000000..0036391b0e
--- /dev/null
+++ b/src/components/dms/ChatInvite/JoinButton.tsx
@@ -0,0 +1,42 @@
+import {type StyleProp, type ViewStyle} from 'react-native'
+
+import {atoms as a} from '#/alf'
+import {Button, ButtonIcon, ButtonText} from '#/components/Button'
+import {useChatInvite} from './Context'
+
+/**
+ * The join/open action button for a chat invite. Reads the derived action from
+ * `ChatInvite.Root` context. Pass `onPress` to intercept (e.g. to close a
+ * surface before navigating); it runs before the default action. Renders
+ * nothing while loading or when there's no preview to act on.
+ */
+export function JoinButton({
+ onPress,
+ style,
+}: {
+ onPress?: () => void
+ style?: StyleProp
+}) {
+ const {action} = useChatInvite()
+
+ if (!action) return null
+
+ return (
+
+ )
+}
diff --git a/src/components/dms/ChatInvite/Root.tsx b/src/components/dms/ChatInvite/Root.tsx
new file mode 100644
index 0000000000..a9f2c54e3a
--- /dev/null
+++ b/src/components/dms/ChatInvite/Root.tsx
@@ -0,0 +1,144 @@
+import {setStringAsync} from 'expo-clipboard'
+import {type ChatBskyGroupDefs} from '@atproto/api'
+import {useLingui} from '@lingui/react/macro'
+import {useNavigation} from '@react-navigation/native'
+
+import {type NavigationProp} from '#/lib/routes/types'
+import {useJoinLinkPreviewsQuery} from '#/state/queries/join-links'
+import {useSession} from '#/state/session'
+import {type ButtonColor} from '#/components/Button'
+import {ArrowRight_Stroke2_Corner0_Rounded as ArrowRightIcon} from '#/components/icons/Arrow'
+import {ArrowBoxRight_Stroke2_Corner3_Rounded as JoinIcon} from '#/components/icons/ArrowBoxRight'
+import {ChainLink_Stroke2_Corner0_Rounded as LinkIcon} from '#/components/icons/ChainLink'
+import {CheckThick_Stroke2_Corner0_Rounded as CheckIcon} from '#/components/icons/Check'
+import {type Props as SVGIconProps} from '#/components/icons/common'
+import {RaisingHand4Finger_Stroke2_Corner2_Rounded as HandIcon} from '#/components/icons/RaisingHand'
+import {Warning_Stroke2_Corner0_Rounded as WarningIcon} from '#/components/icons/Warning'
+import {useIntentDialogs} from '#/components/intents/IntentDialogs'
+import * as Toast from '#/components/Toast'
+import {type ChatInviteAction, ChatInviteProvider} from './Context'
+
+/**
+ * Headless data + state owner for a chat invite. Fetches the join link preview
+ * by code and derives the join/open action, exposing both via context for the
+ * composable parts (`Card`, `JoinButton`) or any custom UI to consume.
+ *
+ * Pass `initialPreview` when the preview is already known (e.g. a DM message
+ * embed already carries the resolved view) to avoid a loading flash.
+ */
+export function Root({
+ code,
+ initialPreview,
+ currentConvoId,
+ children,
+}: {
+ code: string
+ initialPreview?: ChatBskyGroupDefs.JoinLinkPreviewView
+ /**
+ * The convo this invite is being viewed within, if any. When the invite
+ * links to the same chat, the action becomes "Copy link" instead of
+ * open/join (you're already here).
+ */
+ currentConvoId?: string
+ children: React.ReactNode
+}) {
+ const {hasSession} = useSession()
+ const {t: l} = useLingui()
+ const navigation = useNavigation()
+ const {groupChatJoinDialogControl, setGroupChatJoinState} = useIntentDialogs()
+
+ const {data, error, isPending} = useJoinLinkPreviewsQuery({
+ codes: [code],
+ hasSession,
+ // Seed the cache with the already-resolved preview so we don't refetch.
+ initialData: initialPreview
+ ? {joinLinkPreviews: [initialPreview]}
+ : undefined,
+ })
+
+ const preview = data?.joinLinkPreviews[0]
+ const loading = isPending && !preview
+
+ let action: ChatInviteAction | undefined
+ if (preview) {
+ const convoId = preview.convo?.id
+ const isFollowing = preview.owner.viewer?.following ?? false
+ const hasRequested = !convoId && preview.viewer?.requestedAt != null
+
+ if (convoId && convoId === currentConvoId) {
+ // You're already in the chat this invite links to - offer to copy the
+ // link rather than open/join.
+ action = {
+ label: l`Copy link`,
+ accessibilityHint: l`Tap to copy this invite link`,
+ icon: LinkIcon,
+ side: 'left',
+ color: 'primary',
+ disabled: false,
+ onPress: () => {
+ void setStringAsync(`https://bsky.app/c/${preview.code}`)
+ Toast.show(l`Copied to clipboard`, {type: 'success'})
+ },
+ }
+ } else if (convoId) {
+ action = {
+ label: l`Open chat`,
+ accessibilityHint: l`Tap to open this group chat`,
+ icon: ArrowRightIcon,
+ side: 'right',
+ color: 'primary',
+ disabled: false,
+ onPress: () => {
+ navigation.push('MessagesConversation', {conversation: convoId})
+ },
+ }
+ } else {
+ let canJoin = true
+ let icon: React.ComponentType = JoinIcon
+ let label = preview.requireApproval ? l`Request to join` : l`Join`
+ let color: ButtonColor = 'primary'
+ if (preview.enabledStatus !== 'enabled') {
+ canJoin = false
+ icon = WarningIcon
+ label = l`Chat invite link no longer available`
+ color = 'secondary'
+ } else if (preview.memberCount >= preview.memberLimit) {
+ canJoin = false
+ icon = HandIcon
+ label = l`This chat is full`
+ color = 'secondary'
+ } else if (preview.joinRule === 'followedByOwner' && !isFollowing) {
+ canJoin = false
+ icon = HandIcon
+ label = l`Only people the chat owner follows can join`
+ color = 'secondary'
+ } else if (hasRequested) {
+ icon = CheckIcon
+ label = l`Requested`
+ color = 'secondary'
+ }
+
+ action = {
+ label,
+ side: 'left',
+ accessibilityHint: preview.requireApproval
+ ? l`Tap to request access to join this group chat`
+ : l`Tap to join this group chat immediately`,
+ icon,
+ color,
+ disabled: !canJoin,
+ onPress: () => {
+ setGroupChatJoinState({code: preview.code})
+ groupChatJoinDialogControl.open()
+ },
+ }
+ }
+ }
+
+ return (
+
+ {children}
+
+ )
+}
diff --git a/src/components/dms/ChatInvite/index.tsx b/src/components/dms/ChatInvite/index.tsx
new file mode 100644
index 0000000000..bcea3f7651
--- /dev/null
+++ b/src/components/dms/ChatInvite/index.tsx
@@ -0,0 +1,8 @@
+export {Card} from './Card'
+export {
+ type ChatInviteAction,
+ type ChatInviteContextValue,
+ useChatInvite,
+} from './Context'
+export {JoinButton} from './JoinButton'
+export {Root} from './Root'
diff --git a/src/components/dms/MessageItem.tsx b/src/components/dms/MessageItem.tsx
index ac6acb5891..f4f3cdacc3 100644
--- a/src/components/dms/MessageItem.tsx
+++ b/src/components/dms/MessageItem.tsx
@@ -20,6 +20,7 @@ import {
AppBskyEmbedRecord,
type ChatBskyActorDefs,
ChatBskyConvoDefs,
+ ChatBskyEmbedJoinLink,
RichText as RichTextAPI,
} from '@atproto/api'
import {plural} from '@lingui/core/macro'
@@ -49,6 +50,7 @@ import {RichText} from '#/components/RichText'
import {Text} from '#/components/Typography'
import {DateDivider} from './DateDivider'
import {MessageItemEmbed} from './MessageItemEmbed'
+import {MessageItemInviteEmbed} from './MessageItemInviteEmbed'
import {groupReactions} from './ReactionsDialog'
import {CLUSTERED_MESSAGE_THRESHOLD_MS, MESSAGE_GAP_THRESHOLD_MS} from './util'
@@ -185,8 +187,10 @@ let MessageItem = ({
const rt = new RichTextAPI({text: message.text, facets: message.facets})
- const hasEmbedAndText =
- AppBskyEmbedRecord.isView(message.embed) && rt.text.length > 0
+ const hasEmbed =
+ AppBskyEmbedRecord.isView(message.embed) ||
+ ChatBskyEmbedJoinLink.isView(message.embed)
+ const hasEmbedAndText = hasEmbed && rt.text.length > 0
const targetBottomRadius = squaredBottomCorner
? SQUARED_BORDER_RADIUS
@@ -427,6 +431,15 @@ let MessageItem = ({
squaredTopCorner={squaredTopCorner}
/>
)}
+ {ChatBskyEmbedJoinLink.isView(message.embed) && (
+
+ )}
{rt.text.length > 0 && (
+ isFromSelf: boolean
+ isGroupChat: boolean
+ squaredTopCorner: boolean
+ squaredBottomCorner: boolean
+}): React.ReactNode => {
+ const t = useTheme()
+ const screen = useWindowDimensions()
+ const convo = useConvoActive()
+
+ return (
+
+
+
+
+
+
+
+
+
+
+ )
+}
+MessageItemInviteEmbed = memo(MessageItemInviteEmbed)
+export {MessageItemInviteEmbed}
diff --git a/src/screens/Messages/components/MessageComposer.tsx b/src/screens/Messages/components/MessageComposer.tsx
index 0aa132e232..c6899fb9d0 100644
--- a/src/screens/Messages/components/MessageComposer.tsx
+++ b/src/screens/Messages/components/MessageComposer.tsx
@@ -20,7 +20,7 @@ import {countGraphemes} from 'unicode-segmenter/grapheme'
import {HITSLOP_10, MAX_DM_GRAPHEME_LENGTH} from '#/lib/constants'
import {useHaptics} from '#/lib/haptics'
import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback'
-import {isBskyPostUrl} from '#/lib/strings/url-helpers'
+import {isBskyChatInviteUrl, isBskyPostUrl} from '#/lib/strings/url-helpers'
import {useEmail} from '#/state/email-verification'
import {
useMessageDraft,
@@ -233,7 +233,11 @@ export function MessageComposer({
}}
onChange={handleChange}
onFacetCommitted={facet => {
- if (facet.type === 'url' && isBskyPostUrl(facet.value)) {
+ if (
+ facet.type === 'url' &&
+ (isBskyPostUrl(facet.value) ||
+ isBskyChatInviteUrl(facet.value))
+ ) {
setEmbed(facet.value)
}
}}
diff --git a/src/screens/Messages/components/MessageInputEmbed.tsx b/src/screens/Messages/components/MessageInputEmbed.tsx
index 5bc2f38a05..a73a6564fb 100644
--- a/src/screens/Messages/components/MessageInputEmbed.tsx
+++ b/src/screens/Messages/components/MessageInputEmbed.tsx
@@ -18,6 +18,8 @@ import {
} from '#/lib/routes/types'
import {
convertBskyAppUrlIfNeeded,
+ getChatInviteCodeFromUrl,
+ isBskyChatInviteUrl,
isBskyPostUrl,
makeRecordUri,
} from '#/lib/strings/url-helpers'
@@ -26,6 +28,7 @@ import {usePostQuery} from '#/state/queries/post'
import {PostMeta} from '#/view/com/util/PostMeta'
import {atoms as a, useTheme} from '#/alf'
import {Button} from '#/components/Button'
+import * as ChatInvite from '#/components/dms/ChatInvite'
import {TimesLarge_Stroke2_Corner0_Rounded as XIcon} from '#/components/icons/Times'
import {Loader} from '#/components/Loader'
import * as MediaPreview from '#/components/MediaPreview'
@@ -35,35 +38,56 @@ import {RichText} from '#/components/RichText'
import {Text} from '#/components/Typography'
import * as bsky from '#/types/bsky'
+/**
+ * The embed staged in the message composer. A message can carry at most one
+ * embed: either a quoted post or a group chat invite link.
+ */
+export type MessageEmbedState =
+ | {type: 'post'; uri: string}
+ | {type: 'invite'; code: string}
+
export function useMessageEmbed() {
const route =
useRoute>()
const navigation = useNavigation()
const embedFromParams = route.params.embed
- const [embedUri, setEmbedUri] = useState(embedFromParams)
+ const [embed, setEmbedState] = useState(
+ embedFromParams ? {type: 'post', uri: embedFromParams} : undefined,
+ )
- if (embedFromParams && embedUri !== embedFromParams) {
- setEmbedUri(embedFromParams)
+ if (embedFromParams && embed?.type !== 'post') {
+ setEmbedState({type: 'post', uri: embedFromParams})
}
return {
- embedUri,
+ embed,
setEmbed: useCallback(
(embedUrl: string | undefined) => {
if (!embedUrl) {
+ // Only the post embed is reflected in the route param (used by the
+ // share-to-DM intent flow); invites are local-only.
navigation.setParams({embed: ''})
- setEmbedUri(undefined)
+ setEmbedState(undefined)
return
}
if (embedFromParams) return
- const url = convertBskyAppUrlIfNeeded(embedUrl)
- const [_0, user, _1, rkey] = url.split('/').filter(Boolean)
- const uri = makeRecordUri(user, 'app.bsky.feed.post', rkey)
+ if (isBskyChatInviteUrl(embedUrl)) {
+ const code = getChatInviteCodeFromUrl(embedUrl)
+ if (code) {
+ setEmbedState({type: 'invite', code})
+ }
+ return
+ }
- setEmbedUri(uri)
+ if (isBskyPostUrl(embedUrl)) {
+ const url = convertBskyAppUrlIfNeeded(embedUrl)
+ const [_0, user, _1, rkey] = url.split('/').filter(Boolean)
+ const uri = makeRecordUri(user, 'app.bsky.feed.post', rkey)
+ setEmbedState({type: 'post', uri})
+ }
},
[embedFromParams, navigation],
),
@@ -81,7 +105,10 @@ export function useExtractEmbedFromFacets(
for (const facet of rt.facets ?? []) {
for (const feature of facet.features) {
- if (AppBskyRichtextFacet.isLink(feature) && isBskyPostUrl(feature.uri)) {
+ if (
+ AppBskyRichtextFacet.isLink(feature) &&
+ (isBskyPostUrl(feature.uri) || isBskyChatInviteUrl(feature.uri))
+ ) {
uriFromFacet = feature.uri
break
}
@@ -96,16 +123,40 @@ export function useExtractEmbedFromFacets(
}
export function MessageInputEmbed({
- embedUri,
+ embed,
setEmbed,
}: {
- embedUri: string | undefined
+ embed: MessageEmbedState | undefined
setEmbed: (embedUrl: string | undefined) => void
+}) {
+ const onRemove = useCallback(() => {
+ LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
+ setEmbed(undefined)
+ }, [setEmbed])
+
+ if (!embed) {
+ return null
+ }
+
+ switch (embed.type) {
+ case 'post':
+ return
+ case 'invite':
+ return
+ }
+}
+
+function MessageInputPostEmbed({
+ uri,
+ onRemove,
+}: {
+ uri: string
+ onRemove: () => void
}) {
const t = useTheme()
const {t: l} = useLingui()
- const {data: post, status} = usePostQuery(embedUri)
+ const {data: post, status} = usePostQuery(uri)
const moderationOpts = useModerationOpts()
const moderation = useMemo(
@@ -134,15 +185,6 @@ export function MessageInputEmbed({
return {rt: undefined, record: undefined}
}, [post])
- if (!embedUri) {
- return null
- }
-
- const onRemove = () => {
- LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut)
- setEmbed(undefined)
- }
-
switch (status) {
case 'pending': {
return (
@@ -220,6 +262,71 @@ export function MessageInputEmbed({
}
}
+function MessageInputInviteEmbed({
+ code,
+ onRemove,
+}: {
+ code: string
+ onRemove: () => void
+}) {
+ const t = useTheme()
+ const {t: l} = useLingui()
+
+ return (
+
+
+
+
+
+
+ )
+}
+
+function MessageInputInviteEmbedBody() {
+ const t = useTheme()
+ const {loading, preview} = ChatInvite.useChatInvite()
+
+ if (loading) {
+ return (
+
+
+
+ )
+ }
+
+ if (!preview) {
+ return (
+
+
+ Could not load invite
+
+
+ )
+ }
+
+ return
+}
+
function SimpleContainer({
children,
onRemove,
diff --git a/src/screens/Messages/components/MessagesList.tsx b/src/screens/Messages/components/MessagesList.tsx
index fbebdc0745..6f56c6a898 100644
--- a/src/screens/Messages/components/MessagesList.tsx
+++ b/src/screens/Messages/components/MessagesList.tsx
@@ -28,6 +28,7 @@ import {
type AppBskyEmbedRecord,
AppBskyRichtextFacet,
ChatBskyConvoDefs,
+ type ChatBskyEmbedJoinLink,
RichText,
} from '@atproto/api'
import {useScrollEdgeEffectRef} from '@bsky.app/expo-scroll-edge-effect'
@@ -37,6 +38,7 @@ import {ScrollProvider} from '#/lib/ScrollContext'
import {shortenLinks, stripInvalidMentions} from '#/lib/strings/rich-text-manip'
import {
convertBskyAppUrlIfNeeded,
+ getChatInviteCodeFromUrl,
isBskyPostUrl,
} from '#/lib/strings/url-helpers'
import {logger} from '#/logger'
@@ -46,9 +48,10 @@ import {
useConvoActive,
} from '#/state/messages/convo'
import {type ConvoState, ConvoStatus} from '#/state/messages/convo/types'
+import {useGetJoinLinkPreview} from '#/state/queries/join-links'
import {useGetPost} from '#/state/queries/post'
import {createEmbedViewRecordFromPost} from '#/state/queries/postgate/util'
-import {useAgent} from '#/state/session'
+import {useAgent, useSession} from '#/state/session'
import {List, type ListMethods} from '#/view/com/util/List'
import {MessageComposer} from '#/screens/Messages/components/MessageComposer'
import {MessageInput} from '#/screens/Messages/components/MessageInput'
@@ -131,8 +134,10 @@ export function MessagesList({
const ax = useAnalytics()
const convoState = useConvoActive()
const agent = useAgent()
+ const {hasSession} = useSession()
const getPost = useGetPost()
- const {embedUri, setEmbed} = useMessageEmbed()
+ const getJoinLinkPreview = useGetJoinLinkPreview()
+ const {embed: messageEmbed, setEmbed} = useMessageEmbed()
const t = useTheme()
const textInputId = 'chat-input-' + useId()
@@ -348,12 +353,38 @@ export function MessagesList({
// we want to remove the post link from the text, re-trim, then detect facets
rt.detectFacetsWithoutResolution()
- let embed: $Typed | undefined
- let embedView: $Typed | undefined
+ let embed:
+ | $Typed
+ | $Typed
+ | undefined
+ let embedView:
+ | $Typed
+ | $Typed
+ | undefined
- if (embedUri) {
+ // Find the embedded link facet and, if it's at the start or end of the
+ // message, remove it from the text (the embed card replaces it).
+ const stripLinkFacet = (predicate: (uri: string) => boolean) => {
+ const linkFacet = rt.facets?.find(facet =>
+ facet.features.find(
+ feature =>
+ AppBskyRichtextFacet.isLink(feature) && predicate(feature.uri),
+ ),
+ )
+ if (linkFacet) {
+ const isAtStart = linkFacet.index.byteStart === 0
+ const isAtEnd =
+ linkFacet.index.byteEnd === rt.unicodeText.graphemeLength
+ if (isAtStart || isAtEnd) {
+ rt.delete(linkFacet.index.byteStart, linkFacet.index.byteEnd)
+ }
+ rt = new RichText({text: rt.text.trim()}, {cleanNewlines: true})
+ }
+ }
+
+ if (messageEmbed?.type === 'post') {
try {
- const post = await getPost({uri: embedUri})
+ const post = await getPost({uri: messageEmbed.uri})
if (post) {
embed = {
$type: 'app.bsky.embed.record',
@@ -368,42 +399,34 @@ export function MessagesList({
record: createEmbedViewRecordFromPost(post),
}
- // look for the embed uri in the facets, so we can remove it from the text
- const postLinkFacet = rt.facets?.find(facet => {
- return facet.features.find(feature => {
- if (AppBskyRichtextFacet.isLink(feature)) {
- if (isBskyPostUrl(feature.uri)) {
- const url = convertBskyAppUrlIfNeeded(feature.uri)
- const [_0, _1, _2, rkey] = url.split('/').filter(Boolean)
-
- // this might have a handle instead of a DID
- // so just compare the rkey - not particularly dangerous
- return post.uri.endsWith(rkey)
- }
- }
- return false
- })
+ stripLinkFacet(uri => {
+ if (!isBskyPostUrl(uri)) return false
+ const url = convertBskyAppUrlIfNeeded(uri)
+ const [_0, _1, _2, rkey] = url.split('/').filter(Boolean)
+ // this might have a handle instead of a DID
+ // so just compare the rkey - not particularly dangerous
+ return post.uri.endsWith(rkey)
})
-
- if (postLinkFacet) {
- const isAtStart = postLinkFacet.index.byteStart === 0
- const isAtEnd =
- postLinkFacet.index.byteEnd === rt.unicodeText.graphemeLength
-
- // remove the post link from the text
- if (isAtStart || isAtEnd) {
- rt.delete(
- postLinkFacet.index.byteStart,
- postLinkFacet.index.byteEnd,
- )
- }
-
- rt = new RichText({text: rt.text.trim()}, {cleanNewlines: true})
- }
}
} catch (error) {
logger.error('Failed to get post as quote for DM', {error})
}
+ } else if (messageEmbed?.type === 'invite') {
+ const code = messageEmbed.code
+ embed = {
+ $type: 'chat.bsky.embed.joinLink',
+ code,
+ }
+
+ const joinLinkPreview = await getJoinLinkPreview({code, hasSession})
+ if (joinLinkPreview) {
+ embedView = {
+ $type: 'chat.bsky.embed.joinLink#view',
+ joinLinkPreview,
+ }
+ }
+
+ stripLinkFacet(uri => getChatInviteCodeFromUrl(uri) === code)
}
await rt.detectFacets(agent)
@@ -424,7 +447,16 @@ export function MessagesList({
embedView,
)
},
- [agent, convoState, embedUri, getPost, hasScrolled, setHasScrolled],
+ [
+ agent,
+ convoState,
+ messageEmbed,
+ getPost,
+ getJoinLinkPreview,
+ hasSession,
+ hasScrolled,
+ setHasScrolled,
+ ],
)
const scrollToEndOnPress = useCallback(() => {
@@ -595,11 +627,11 @@ export function MessagesList({
onSendMessage={(message: string) =>
void onSendMessage(message)
}
- hasEmbed={!!embedUri}
+ hasEmbed={!!messageEmbed}
setEmbed={setEmbed}
loading={loading}>
@@ -607,11 +639,11 @@ export function MessagesList({
diff --git a/src/state/messages/convo/agent.ts b/src/state/messages/convo/agent.ts
index 08b609f71a..e89965eb45 100644
--- a/src/state/messages/convo/agent.ts
+++ b/src/state/messages/convo/agent.ts
@@ -6,6 +6,7 @@ import {
ChatBskyConvoDefs,
type ChatBskyConvoGetLog,
type ChatBskyConvoSendMessage,
+ type ChatBskyEmbedJoinLink,
type ChatBskyGroupDefs,
} from '@atproto/api'
import {XRPCError} from '@atproto/api'
@@ -109,7 +110,9 @@ export class Convo {
{
id: string
message: ChatBskyConvoSendMessage.InputSchema['message']
- optimisticEmbedView?: $Typed
+ optimisticEmbedView?:
+ | $Typed
+ | $Typed
}
> = new Map()
private deletedMessages: Set = new Set()
@@ -942,7 +945,9 @@ export class Convo {
sendMessage(
message: ChatBskyConvoSendMessage.InputSchema['message'],
- optimisticEmbedView?: $Typed,
+ optimisticEmbedView?:
+ | $Typed
+ | $Typed,
) {
// Ignore empty messages for now since they have no other purpose atm
if (!message.text.trim() && !message.embed) return
diff --git a/src/state/messages/convo/types.ts b/src/state/messages/convo/types.ts
index 51d111356a..269f32c515 100644
--- a/src/state/messages/convo/types.ts
+++ b/src/state/messages/convo/types.ts
@@ -5,6 +5,7 @@ import {
type ChatBskyActorDefs,
type ChatBskyConvoDefs,
type ChatBskyConvoSendMessage,
+ type ChatBskyEmbedJoinLink,
} from '@atproto/api'
import {type MessagesEventBus} from '#/state/messages/events/agent'
@@ -108,7 +109,10 @@ export type ConvoItem =
type DeleteMessage = (messageId: string) => Promise
type SendMessage = (
message: ChatBskyConvoSendMessage.InputSchema['message'],
- optimisticEmbedView: $Typed | undefined,
+ optimisticEmbedView:
+ | $Typed
+ | $Typed
+ | undefined,
) => void
type FetchMessageHistory = () => Promise
type MarkConvoAccepted = () => void
diff --git a/src/state/queries/join-links.ts b/src/state/queries/join-links.ts
index 99a37b6b06..df87ec0a24 100644
--- a/src/state/queries/join-links.ts
+++ b/src/state/queries/join-links.ts
@@ -1,4 +1,9 @@
-import {AtpAgent} from '@atproto/api'
+import {useCallback} from 'react'
+import {
+ AtpAgent,
+ type ChatBskyGroupDefs,
+ type ChatBskyGroupGetJoinLinkPreviews,
+} from '@atproto/api'
import {useQuery, useQueryClient} from '@tanstack/react-query'
import {CHAT_SERVICE, DM_SERVICE_HEADERS} from '#/lib/constants'
@@ -17,14 +22,39 @@ export const createJoinLinkPreviewQueryKey = (args: {
persistedVersion: 1,
})
+async function fetchJoinLinkPreviews({
+ agent,
+ codes,
+ hasSession,
+}: {
+ agent: AtpAgent
+ codes: string[]
+ hasSession: boolean
+}) {
+ const previewAgent = new AtpAgent({service: CHAT_SERVICE})
+ const res = hasSession
+ ? await agent.chat.bsky.group.getJoinLinkPreviews(
+ {codes},
+ {headers: DM_SERVICE_HEADERS},
+ )
+ : await previewAgent.chat.bsky.group.getJoinLinkPreviews({codes})
+ return res.data
+}
+
export function useJoinLinkPreviewsQuery({
codes,
hasSession,
staleTime = STALE.MINUTES.ONE,
+ initialData,
}: {
codes?: string[]
hasSession: boolean
staleTime?: number
+ /**
+ * Seed the query with an already-known preview (e.g. a DM message embed
+ * already carries the resolved view), avoiding a duplicate fetch.
+ */
+ initialData?: ChatBskyGroupGetJoinLinkPreviews.OutputSchema
}) {
const agent = useAgent()
@@ -33,14 +63,7 @@ export function useJoinLinkPreviewsQuery({
queryFn: async () => {
if (!codes) throw new Error('No invite code')
try {
- const previewAgent = new AtpAgent({service: CHAT_SERVICE})
- const res = hasSession
- ? await agent.chat.bsky.group.getJoinLinkPreviews(
- {codes},
- {headers: DM_SERVICE_HEADERS},
- )
- : await previewAgent.chat.bsky.group.getJoinLinkPreviews({codes})
- return res.data
+ return await fetchJoinLinkPreviews({agent, codes, hasSession})
} catch (error) {
logger.error('Failed to fetch join link preview', {safeMessage: error})
throw error
@@ -48,6 +71,7 @@ export function useJoinLinkPreviewsQuery({
},
enabled: codes != null && codes.length > 0,
staleTime,
+ initialData,
})
}
@@ -58,17 +82,42 @@ export function usePrefetchJoinLinkPreviews() {
return ({codes, hasSession}: {codes: string[]; hasSession: boolean}) => {
return queryClient.prefetchQuery({
queryKey: createJoinLinkPreviewQueryKey({codes, hasSession}),
- queryFn: async () => {
- const previewAgent = new AtpAgent({service: CHAT_SERVICE})
- const res = hasSession
- ? await agent.chat.bsky.group.getJoinLinkPreviews(
- {codes},
- {headers: DM_SERVICE_HEADERS},
- )
- : await previewAgent.chat.bsky.group.getJoinLinkPreviews({codes})
- return res.data
- },
+ queryFn: () => fetchJoinLinkPreviews({agent, codes, hasSession}),
staleTime: STALE.MINUTES.ONE,
})
}
}
+
+/**
+ * Imperatively fetch (or read from cache) a single join link preview by code.
+ * Used when sending a DM invite embed so we can build an optimistic view.
+ * Returns undefined if the preview can't be resolved.
+ */
+export function useGetJoinLinkPreview() {
+ const agent = useAgent()
+ const queryClient = useQueryClient()
+
+ return useCallback(
+ async ({
+ code,
+ hasSession,
+ }: {
+ code: string
+ hasSession: boolean
+ }): Promise => {
+ try {
+ const data = await queryClient.fetchQuery({
+ queryKey: createJoinLinkPreviewQueryKey({codes: [code], hasSession}),
+ queryFn: () =>
+ fetchJoinLinkPreviews({agent, codes: [code], hasSession}),
+ staleTime: STALE.MINUTES.ONE,
+ })
+ return data.joinLinkPreviews[0]
+ } catch (error) {
+ logger.error('Failed to fetch join link preview', {safeMessage: error})
+ return undefined
+ }
+ },
+ [agent, queryClient],
+ )
+}
diff --git a/src/view/com/composer/ExternalEmbed.tsx b/src/view/com/composer/ExternalEmbed.tsx
index 5cc87c63f5..0b14f16ed3 100644
--- a/src/view/com/composer/ExternalEmbed.tsx
+++ b/src/view/com/composer/ExternalEmbed.tsx
@@ -117,7 +117,7 @@ export const ExternalEmbedLink = ({
/>
)
} else if (data.type === 'chat-invite') {
- return
+ return
} else if (data.kind === 'feed') {
return (
Date: Thu, 4 Jun 2026 15:56:37 -0500
Subject: [PATCH 013/165] V smol log cleanups (#10731)
---
eslint-suppressions.json | 3 --
src/analytics/PassiveAnalytics.tsx | 28 +++++++++----------
src/analytics/metrics/client.ts | 4 ---
.../Post/Embed/StandardSiteEmbed/index.tsx | 4 ++-
.../additional-moderation-authorities.ts | 8 ------
src/view/shell/desktop/LeftNav.tsx | 1 +
6 files changed, 17 insertions(+), 31 deletions(-)
diff --git a/eslint-suppressions.json b/eslint-suppressions.json
index 483ed83e7d..b8e65eb265 100644
--- a/eslint-suppressions.json
+++ b/eslint-suppressions.json
@@ -43,9 +43,6 @@
}
},
"src/analytics/PassiveAnalytics.tsx": {
- "@typescript-eslint/no-explicit-any": {
- "count": 1
- },
"react-hooks/purity": {
"count": 1
}
diff --git a/src/analytics/PassiveAnalytics.tsx b/src/analytics/PassiveAnalytics.tsx
index 34b5f2d275..c772ed09b8 100644
--- a/src/analytics/PassiveAnalytics.tsx
+++ b/src/analytics/PassiveAnalytics.tsx
@@ -2,8 +2,6 @@ import {useEffect, useRef} from 'react'
import {getCurrentState, onAppStateChange} from '#/lib/appState'
import {useAnalytics} from '#/analytics'
-import {Features, features} from '#/analytics/features'
-import {IS_DEV, IS_TESTFLIGHT} from '#/env'
/**
* Tracks passive analytics like app foreground/background time.
@@ -27,19 +25,19 @@ export function PassiveAnalytics() {
})
}
- if (IS_DEV || IS_TESTFLIGHT) {
- const feats = Object.values(Features).reduce(
- (acc, feat) => {
- acc[feat] = features.evalFeature(feat)
- return acc
- },
- {} as Record,
- )
- ax.logger.info('FEATURES', {
- features: feats,
- definitions: features.getFeatures(),
- })
- }
+ // if (IS_DEV || IS_TESTFLIGHT) {
+ // const feats = Object.values(Features).reduce(
+ // (acc, feat) => {
+ // acc[feat] = features.evalFeature(feat)
+ // return acc
+ // },
+ // {} as Record,
+ // )
+ // ax.logger.info('FEATURES', {
+ // features: feats,
+ // definitions: features.getFeatures(),
+ // })
+ // }
})
return () => sub.remove()
}, [ax])
diff --git a/src/analytics/metrics/client.ts b/src/analytics/metrics/client.ts
index 2aab90f265..1ea0573dcd 100644
--- a/src/analytics/metrics/client.ts
+++ b/src/analytics/metrics/client.ts
@@ -67,10 +67,6 @@ export class MetricsClient> {
}
private async sendBatch(events: Event[], isRetry: boolean = false) {
- logger.debug(`sendBatch: ${events.length}`, {
- isRetry,
- })
-
try {
const body = JSON.stringify({events})
if (env.IS_WEB && 'navigator' in globalThis && navigator.sendBeacon) {
diff --git a/src/components/Post/Embed/StandardSiteEmbed/index.tsx b/src/components/Post/Embed/StandardSiteEmbed/index.tsx
index 5f7fc1f5e7..c7b8abf88c 100644
--- a/src/components/Post/Embed/StandardSiteEmbed/index.tsx
+++ b/src/components/Post/Embed/StandardSiteEmbed/index.tsx
@@ -356,6 +356,7 @@ export function PublicationCard({
/>
{view.description && (
-
+
{view.description}
@@ -617,6 +618,7 @@ export function PublicationFooter({
/>
{sanitizeDisplayName(
From 45bd5b45e876e8ebd61b846ad886c7e93e9300dd Mon Sep 17 00:00:00 2001
From: DS Boyce <260543580+ds-boyce@users.noreply.github.com>
Date: Thu, 4 Jun 2026 14:11:50 -0700
Subject: [PATCH 014/165] Reduce stale time for join link preview queries
(#10733)
---
src/state/queries/join-links.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/state/queries/join-links.ts b/src/state/queries/join-links.ts
index df87ec0a24..628f5e9102 100644
--- a/src/state/queries/join-links.ts
+++ b/src/state/queries/join-links.ts
@@ -83,7 +83,7 @@ export function usePrefetchJoinLinkPreviews() {
return queryClient.prefetchQuery({
queryKey: createJoinLinkPreviewQueryKey({codes, hasSession}),
queryFn: () => fetchJoinLinkPreviews({agent, codes, hasSession}),
- staleTime: STALE.MINUTES.ONE,
+ staleTime: STALE.SECONDS.FIFTEEN,
})
}
}
@@ -110,7 +110,7 @@ export function useGetJoinLinkPreview() {
queryKey: createJoinLinkPreviewQueryKey({codes: [code], hasSession}),
queryFn: () =>
fetchJoinLinkPreviews({agent, codes: [code], hasSession}),
- staleTime: STALE.MINUTES.ONE,
+ staleTime: STALE.SECONDS.FIFTEEN,
})
return data.joinLinkPreviews[0]
} catch (error) {
From de926d1838185ce08a6fbad5b6e9edb71dc02314 Mon Sep 17 00:00:00 2001
From: DS Boyce <260543580+ds-boyce@users.noreply.github.com>
Date: Thu, 4 Jun 2026 14:22:29 -0700
Subject: [PATCH 015/165] Show a banner when there are incoming chat requests
(#10498)
Co-authored-by: Samuel Newman
---
src/screens/Messages/Conversation.tsx | 29 +++++-
.../Messages/components/ChatListItem.tsx | 32 +++++--
.../Messages/components/RequestStatus.tsx | 92 +++++++++++++++++++
.../queries/messages/list-join-requests.ts | 4 +-
.../messages/mark-join-request-read.ts | 85 +++++++++++++++++
5 files changed, 231 insertions(+), 11 deletions(-)
create mode 100644 src/screens/Messages/components/RequestStatus.tsx
create mode 100644 src/state/queries/messages/mark-join-request-read.ts
diff --git a/src/screens/Messages/Conversation.tsx b/src/screens/Messages/Conversation.tsx
index 6233c467ff..b269046534 100644
--- a/src/screens/Messages/Conversation.tsx
+++ b/src/screens/Messages/Conversation.tsx
@@ -1,7 +1,7 @@
import {useCallback, useEffect, useMemo, useRef, useState} from 'react'
import {type LayoutChangeEvent, View} from 'react-native'
import {useSafeAreaInsets} from 'react-native-safe-area-context'
-import {moderateProfile} from '@atproto/api'
+import {ChatBskyConvoDefs, moderateProfile} from '@atproto/api'
import {
ScrollEdgeEffect,
ScrollEdgeEffectProvider,
@@ -29,6 +29,7 @@ import {ConvoStatus} from '#/state/messages/convo/types'
import {useCurrentConvoId} from '#/state/messages/current-convo-id'
import {useModerationOpts} from '#/state/preferences/moderation-opts'
import {useConvoQuery} from '#/state/queries/messages/conversation'
+import {useMarkJoinRequestsRead} from '#/state/queries/messages/mark-join-request-read'
import {useSession} from '#/state/session'
import {MessagesList} from '#/screens/Messages/components/MessagesList'
import {atoms as a, web} from '#/alf'
@@ -51,6 +52,7 @@ import {IS_INTERNAL, IS_LIQUID_GLASS} from '#/env'
import {ChatDisabled} from './components/ChatDisabled'
import {ChatEnded} from './components/ChatEnded'
import {ChatLocked} from './components/ChatLocked'
+import {RequestStatus} from './components/RequestStatus'
type Props = NativeStackScreenProps<
CommonNavigatorParams,
@@ -180,6 +182,12 @@ function InnerReady({
const {needsEmailVerification} = useEmail()
const emailDialogControl = useEmailDialogControl()
+ const unreadRequestCount =
+ convo?.kind === 'group' && ChatBskyConvoDefs.isGroupConvo(convo.view.kind)
+ ? (convo.view.kind.unreadJoinRequestCount ?? 0)
+ : 0
+ const {mutate: markJoinRequestsRead} = useMarkJoinRequestsRead(convo?.view.id)
+
/**
* Must be non-reactive, otherwise the update to open the global dialog will
* cause a re-render loop.
@@ -264,8 +272,25 @@ function InnerReady({
{header}
) : (
- header
+ {header}
)}
+
+ {isActive && convo?.kind === 'group' && unreadRequestCount > 0 ? (
+ {
+ markJoinRequestsRead()
+ }}
+ onPress={() => {
+ markJoinRequestsRead()
+ navigation.navigate('MessagesJoinRequests', {
+ conversation: convo.view.id,
+ })
+ }}
+ />
+ ) : null}
+
{isActive && (
20
+ requestInfo={
+ convo.details.unreadJoinRequestCount
+ ? convo.details.unreadJoinRequestCount > JOIN_REQUESTS_THRESHOLD
? l({
- message: '20+ new join requests',
+ message: `${JOIN_REQUESTS_THRESHOLD}+ new join requests`,
context:
'Displayed when there are more than 20 requests to join a group chat',
})
- : plural(convo.details.joinRequestCount, {
+ : plural(convo.details.unreadJoinRequestCount, {
one: '# new join request',
other: '# new join requests',
})
@@ -241,6 +242,7 @@ function BaseChatItem({
avatar,
title,
subtitle,
+ requestInfo,
accessibilityHint,
isDeletedAccount,
isBlockedAccount,
@@ -256,6 +258,7 @@ function BaseChatItem({
avatar: React.ReactNode
title: string
subtitle?: string
+ requestInfo?: string
accessibilityHint: string
isDeletedAccount: boolean
isBlockedAccount: boolean
@@ -280,8 +283,10 @@ function BaseChatItem({
const playHaptic = useHaptics()
const queryClient = useQueryClient()
const hasUnread =
- convo.view.unreadCount > 0 &&
!isDeletedAccount &&
+ (convo.view.unreadCount > 0 ||
+ (convo.kind === 'group' &&
+ (convo.details.unreadJoinRequestCount ?? 0) > 0)) &&
(convo.kind !== 'group' || convo.details.lockStatus === 'unlocked')
const blockInfo = useMemo(() => {
@@ -607,6 +612,19 @@ function BaseChatItem({
{postAlerts}
+ {requestInfo && (
+
+ {requestInfo}
+
+ )}
+
{LastMessageIcon && (
diff --git a/src/screens/Messages/components/RequestStatus.tsx b/src/screens/Messages/components/RequestStatus.tsx
new file mode 100644
index 0000000000..9b35b69445
--- /dev/null
+++ b/src/screens/Messages/components/RequestStatus.tsx
@@ -0,0 +1,92 @@
+import {Pressable} from 'react-native'
+import Animated, {FadeIn, FadeOut} from 'react-native-reanimated'
+import {plural} from '@lingui/core/macro'
+import {useLingui} from '@lingui/react/macro'
+
+import {HITSLOP_10} from '#/lib/constants'
+import {JOIN_REQUESTS_THRESHOLD} from '#/state/queries/messages/list-join-requests'
+import {atoms as a, tokens, useTheme} from '#/alf'
+import {GlassView} from '#/components/GlassView'
+import {Envelope_Stroke2_Corner2_Rounded as EnvelopeIcon} from '#/components/icons/Envelope'
+import {TimesLarge_Stroke2_Corner0_Rounded as CloseIcon} from '#/components/icons/Times'
+import {Text} from '#/components/Typography'
+import {IS_LIQUID_GLASS} from '#/env'
+
+export function RequestStatus({
+ top,
+ count,
+ onDismiss,
+ onPress,
+}: {
+ top: number
+ count: number
+ onDismiss: () => void
+ onPress: () => void
+}) {
+ const t = useTheme()
+ const {t: l} = useLingui()
+
+ return (
+
+
+
+
+
+ {count > JOIN_REQUESTS_THRESHOLD
+ ? l({
+ message: `${JOIN_REQUESTS_THRESHOLD}+ new join requests`,
+ comment:
+ 'Displayed when the number of requests is greater than 20',
+ })
+ : plural(count, {
+ one: '# new join request',
+ other: '# new join requests',
+ })}
+
+
+
+
+
+
+
+ )
+}
diff --git a/src/state/queries/messages/list-join-requests.ts b/src/state/queries/messages/list-join-requests.ts
index 9f0860c20d..64a999c118 100644
--- a/src/state/queries/messages/list-join-requests.ts
+++ b/src/state/queries/messages/list-join-requests.ts
@@ -8,6 +8,8 @@ import {createQueryKey} from '#/state/queries/util'
import {useAgent} from '#/state/session'
import {STALE} from '..'
+export const JOIN_REQUESTS_THRESHOLD = 20
+
const listJoinRequestsQueryKeyRoot = 'list-join-requests'
export const createListJoinRequestsQueryKey = (args: {convoId: string}) =>
@@ -53,7 +55,7 @@ export function useListJoinRequestsQuery({
queryKey: createListJoinRequestsQueryKey({convoId: convoId ?? ''}),
queryFn: async ({pageParam}) => {
const {data} = await agent.chat.bsky.group.listJoinRequests(
- {convoId: convoId!, cursor: pageParam, limit: 20},
+ {convoId: convoId!, cursor: pageParam, limit: JOIN_REQUESTS_THRESHOLD},
{headers: DM_SERVICE_HEADERS},
)
return data
diff --git a/src/state/queries/messages/mark-join-request-read.ts b/src/state/queries/messages/mark-join-request-read.ts
new file mode 100644
index 0000000000..ae6d7e88a7
--- /dev/null
+++ b/src/state/queries/messages/mark-join-request-read.ts
@@ -0,0 +1,85 @@
+import {ChatBskyConvoDefs} from '@atproto/api'
+import {useMutation, useQueryClient} from '@tanstack/react-query'
+
+import {DM_SERVICE_HEADERS} from '#/lib/constants'
+import {logger} from '#/logger'
+import {useAgent} from '#/state/session'
+import {RQKEY as CONVO_KEY} from './conversation'
+import {
+ type ConvoListQueryData,
+ RQKEY_ROOT as CONVO_LIST_ROOT_KEY,
+} from './list-conversations'
+
+export function useMarkJoinRequestsRead(convoId: string | undefined) {
+ const queryClient = useQueryClient()
+ const agent = useAgent()
+
+ return useMutation({
+ mutationFn: async () => {
+ if (!convoId) throw new Error('No convoId provided')
+ await agent.chat.bsky.group.updateJoinRequestsRead(
+ {convoId},
+ {headers: DM_SERVICE_HEADERS, encoding: 'application/json'},
+ )
+ },
+ onMutate: () => {
+ if (!convoId) return
+
+ const prevConvo = queryClient.getQueryData(
+ CONVO_KEY(convoId),
+ )
+ queryClient.setQueryData(
+ CONVO_KEY(convoId),
+ old => {
+ if (!old || !ChatBskyConvoDefs.isGroupConvo(old.kind)) return old
+ return {
+ ...old,
+ kind: {...old.kind, unreadJoinRequestCount: 0},
+ }
+ },
+ )
+
+ const prevListEntries = queryClient.getQueriesData({
+ queryKey: [CONVO_LIST_ROOT_KEY],
+ })
+ queryClient.setQueriesData(
+ {queryKey: [CONVO_LIST_ROOT_KEY]},
+ old => {
+ if (!old) return old
+ return {
+ ...old,
+ pages: old.pages.map(page => ({
+ ...page,
+ convos: page.convos.map(convo => {
+ if (
+ convo.id !== convoId ||
+ !ChatBskyConvoDefs.isGroupConvo(convo.kind)
+ ) {
+ return convo
+ }
+ return {
+ ...convo,
+ kind: {...convo.kind, unreadJoinRequestCount: 0},
+ }
+ }),
+ })),
+ }
+ },
+ )
+
+ return {prevConvo, prevListEntries}
+ },
+ onError: (error, _, context) => {
+ logger.error('Failed to mark join requests as read', {safeMessage: error})
+ if (!convoId) return
+ if (context?.prevConvo) {
+ queryClient.setQueryData(CONVO_KEY(convoId), context.prevConvo)
+ }
+ for (const [key, data] of context?.prevListEntries ?? []) {
+ queryClient.setQueryData(key, data)
+ }
+ void queryClient.invalidateQueries({queryKey: CONVO_KEY(convoId)})
+ void queryClient.invalidateQueries({queryKey: [CONVO_LIST_ROOT_KEY]})
+ },
+ })
+}
From 144ba30ea647f4d80a2e76b14a380f3eb0a02149 Mon Sep 17 00:00:00 2001
From: Spence Pope
Date: Thu, 4 Jun 2026 17:22:40 -0400
Subject: [PATCH 016/165] Add gallery embed type support (display + compose)
(#10707)
---
package.json | 2 +-
pnpm-lock.yaml | 10 +-
src/components/MediaPreview.tsx | 34 +++-
src/components/Post/Embed/ImageEmbed.tsx | 23 ++-
src/components/Post/Embed/index.tsx | 4 +-
.../Gallery/maybeApplyGalleryOffsetStyles.ts | 33 +++-
src/components/images/ImageLayoutGrid.tsx | 22 ++-
src/components/images/ImageLayoutGridItem.tsx | 3 +
.../ReportDialog/utils/parseReportSubject.ts | 5 +-
src/lib/api/index.ts | 31 ++++
src/types/bsky/post.ts | 10 ++
src/view/com/composer/Composer.tsx | 124 ++++++++++----
src/view/com/composer/ComposerReplyTo.tsx | 30 +++-
src/view/com/composer/SelectMediaButton.tsx | 19 ++-
src/view/com/composer/drafts/state/api.ts | 159 ++++++++++++------
src/view/com/composer/drafts/state/queries.ts | 23 ++-
src/view/com/composer/photos/Gallery.tsx | 7 +-
src/view/com/composer/state/composer.ts | 92 +++++++---
src/view/com/feeds/ComposerPrompt.tsx | 6 +-
19 files changed, 494 insertions(+), 143 deletions(-)
diff --git a/package.json b/package.json
index c515ecdcee..a879182d9f 100644
--- a/package.json
+++ b/package.json
@@ -93,7 +93,7 @@
"prettier": "prettier --check ."
},
"dependencies": {
- "@atproto/api": "0.20.8",
+ "@atproto/api": "0.20.9",
"@atproto/syntax": "0.6.1",
"@bitdrift/react-native": "^0.6.8",
"@braintree/sanitize-url": "^6.0.2",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index d0136363f7..0ac8974cf9 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -242,8 +242,8 @@ importers:
.:
dependencies:
'@atproto/api':
- specifier: 0.20.8
- version: 0.20.8
+ specifier: 0.20.9
+ version: 0.20.9
'@atproto/syntax':
specifier: 0.6.1
version: 0.6.1
@@ -877,8 +877,8 @@ packages:
graphql:
optional: true
- '@atproto/api@0.20.8':
- resolution: {integrity: sha512-rTkA6kOmA2axSrg6VgpdXpsCFWpofnHBOn6pKg69Ju5MpIHqk4haQMgjBcVh1G3kUxzwgSAr7SYrPS3dFe5Etg==}
+ '@atproto/api@0.20.9':
+ resolution: {integrity: sha512-Yuw7Ewn+yMJZ8GskbuvI3lKPW65rsXic1xjFA2Dpq6H8WjVYs6xNZ31bkwtTYDDwjKIZcJmAVbAVgdfjo4T9iw==}
engines: {node: '>=22'}
'@atproto/common-web@0.5.0':
@@ -9493,7 +9493,7 @@ snapshots:
'@0no-co/graphql.web@1.2.0': {}
- '@atproto/api@0.20.8':
+ '@atproto/api@0.20.9':
dependencies:
'@atproto/common-web': 0.5.0
'@atproto/lexicon': 0.7.1
diff --git a/src/components/MediaPreview.tsx b/src/components/MediaPreview.tsx
index b36705d840..034094556c 100644
--- a/src/components/MediaPreview.tsx
+++ b/src/components/MediaPreview.tsx
@@ -1,6 +1,10 @@
import {type StyleProp, StyleSheet, View, type ViewStyle} from 'react-native'
import {Image} from 'expo-image'
-import {type AppBskyEmbedImages, type AppBskyFeedDefs} from '@atproto/api'
+import {
+ AppBskyEmbedGallery,
+ type AppBskyEmbedImages,
+ type AppBskyFeedDefs,
+} from '@atproto/api'
import {Trans, useLingui} from '@lingui/react/macro'
import {shareImageModal} from '#/lib/media/manip'
@@ -47,6 +51,34 @@ export function Embed({
)}
)
+ } else if (e.type === 'gallery') {
+ // Notification/DM preview is a narrow inline strip; cap at 4 tiles so
+ // a 10-image gallery doesn't blow out the row width. Single pass instead
+ // of filter().slice().map() so we stop at 4 viewable items rather than
+ // walking every item in a 10-image gallery.
+ const tiles: React.ReactNode[] = []
+ for (const item of e.view.items) {
+ if (tiles.length >= 4) break
+ if (!AppBskyEmbedGallery.isViewImage(item)) continue
+ if (peekable) {
+ const image: AppBskyEmbedImages.ViewImage = {
+ thumb: item.thumbnail,
+ fullsize: item.fullsize,
+ alt: item.alt,
+ aspectRatio: item.aspectRatio,
+ }
+ tiles.push()
+ } else {
+ tiles.push(
+ ,
+ )
+ }
+ }
+ return {tiles}
} else if (e.type === 'link') {
if (!e.view.external.thumb) return null
if (!isGifEmbed(e.view.external.uri)) return null
diff --git a/src/components/Post/Embed/ImageEmbed.tsx b/src/components/Post/Embed/ImageEmbed.tsx
index 2c6bb6c5de..0a620efde4 100644
--- a/src/components/Post/Embed/ImageEmbed.tsx
+++ b/src/components/Post/Embed/ImageEmbed.tsx
@@ -2,6 +2,7 @@ import {useRef} from 'react'
import {InteractionManager, View} from 'react-native'
import {type AnimatedRef} from 'react-native-reanimated'
import {Image} from 'expo-image'
+import {AppBskyEmbedGallery, type AppBskyEmbedImages} from '@atproto/api'
import {atoms as a, tokens} from '#/alf'
import {AutoSizedImage} from '#/components/images/AutoSizedImage'
@@ -15,16 +16,29 @@ import {useAnalytics} from '#/analytics'
import {type EmbedType} from '#/types/bsky/post'
import {type CommonProps} from './types'
+const MAX_GRID_IMAGES = 4
+
export function ImageEmbed({
embed,
...rest
}: CommonProps & {
- embed: EmbedType<'images'>
+ embed: EmbedType<'images'> | EmbedType<'gallery'>
}) {
const ax = useAnalytics()
const {openLightbox} = useLightboxControls()
- const {images} = embed.view
- const galleryEnabled = ax.features.enabled(ax.features.PostGalleryEmbedEnable)
+ const images: AppBskyEmbedImages.ViewImage[] =
+ embed.type === 'gallery'
+ ? embed.view.items.filter(AppBskyEmbedGallery.isViewImage).map(item => ({
+ thumb: item.thumbnail,
+ fullsize: item.fullsize,
+ alt: item.alt,
+ aspectRatio: item.aspectRatio,
+ }))
+ : embed.view.images
+ const useExpandedLayout =
+ embed.type === 'gallery'
+ ? images.length > MAX_GRID_IMAGES
+ : ax.features.enabled(ax.features.PostGalleryEmbedEnable)
// Captured from AutoSizedImage so the peek-commit handler can reuse the same
// ref + dims that a tap would — keeps the lightbox's return animation intact.
@@ -109,7 +123,7 @@ export function ImageEmbed({
)
}
- if (galleryEnabled) {
+ if (useExpandedLayout) {
return (
)
diff --git a/src/components/Post/Embed/index.tsx b/src/components/Post/Embed/index.tsx
index ab6f5dc439..28eed2aaa9 100644
--- a/src/components/Post/Embed/index.tsx
+++ b/src/components/Post/Embed/index.tsx
@@ -54,6 +54,7 @@ export function Embed({embed: rawEmbed, ...rest}: EmbedProps) {
switch (embed.type) {
case 'images':
+ case 'gallery':
case 'link':
case 'video': {
return
@@ -89,7 +90,8 @@ function MediaEmbed({
embed: TEmbed
}) {
switch (embed.type) {
- case 'images': {
+ case 'images':
+ case 'gallery': {
return (
(
post.record,
@@ -39,6 +37,13 @@ export function maybeApplyGalleryOffsetStyles(
return
}
+ // The gate only controls whether legacy image embeds opt into the new
+ // expanded gallery layout. Gallery embeds always render expanded by item
+ // count, so their offset must apply regardless of the gate.
+ const isPostGalleryEmbedEnabled = features.isOn(
+ Features.PostGalleryEmbedEnable,
+ )
+
/*
* First check if we even have images
*/
@@ -49,6 +54,12 @@ export function maybeApplyGalleryOffsetStyles(
embed,
AppBskyEmbedImages.isMain,
)
+ const isGalleryEmbed =
+ embed &&
+ bsky.dangerousIsType(
+ embed,
+ AppBskyEmbedGallery.isMain,
+ )
const isRecordWithMedia =
embed &&
bsky.dangerousIsType(
@@ -57,10 +68,16 @@ export function maybeApplyGalleryOffsetStyles(
)
let hasImages = false
if (isImageEmbed) {
+ if (!isPostGalleryEmbedEnabled) return
// one image, not a gallery
if (embed.images.length === 1) return
hasImages = true
}
+ if (isGalleryEmbed) {
+ // single (or empty) gallery - no offset needed
+ if (embed.items.length <= 1) return
+ hasImages = true
+ }
if (isRecordWithMedia) {
if (
bsky.dangerousIsType(
@@ -68,9 +85,19 @@ export function maybeApplyGalleryOffsetStyles(
AppBskyEmbedImages.isMain,
)
) {
+ if (!isPostGalleryEmbedEnabled) return
// one image, not a gallery
if (embed.media.images.length === 1) return
}
+ if (
+ bsky.dangerousIsType(
+ embed.media,
+ AppBskyEmbedGallery.isMain,
+ )
+ ) {
+ // single (or empty) gallery - no offset needed
+ if (embed.media.items.length <= 1) return
+ }
hasImages = true
}
if (!hasImages) return
diff --git a/src/components/images/ImageLayoutGrid.tsx b/src/components/images/ImageLayoutGrid.tsx
index 0017ddf9cf..5b4ba608b2 100644
--- a/src/components/images/ImageLayoutGrid.tsx
+++ b/src/components/images/ImageLayoutGrid.tsx
@@ -19,21 +19,28 @@ interface ImageLayoutGridProps {
onPressIn?: (index: number) => void
style?: StyleProp
viewContext?: PostEmbedViewContext
+ isWithinQuote?: boolean
}
-export function ImageLayoutGrid({style, ...props}: ImageLayoutGridProps) {
+export function ImageLayoutGrid({
+ style,
+ isWithinQuote: isWithinQuoteProp,
+ ...props
+}: ImageLayoutGridProps) {
const {gtMobile} = useBreakpoints()
- const gap =
+ const isWithinQuote =
+ isWithinQuoteProp ??
props.viewContext === PostEmbedViewContext.FeedEmbedRecordWithMedia
- ? gtMobile
- ? a.gap_xs
- : a.gap_2xs
- : a.gap_xs
+ const gap = isWithinQuote ? (gtMobile ? a.gap_xs : a.gap_2xs) : a.gap_xs
return (
-
+
)
@@ -49,6 +56,7 @@ interface ImageLayoutGridInnerProps {
onLongPress?: (index: number) => void
onPressIn?: (index: number) => void
viewContext?: PostEmbedViewContext
+ isWithinQuote?: boolean
gap: {gap: number}
}
diff --git a/src/components/images/ImageLayoutGridItem.tsx b/src/components/images/ImageLayoutGridItem.tsx
index d6cbc0aded..640ecd8ba2 100644
--- a/src/components/images/ImageLayoutGridItem.tsx
+++ b/src/components/images/ImageLayoutGridItem.tsx
@@ -29,6 +29,7 @@ interface Props {
onPressIn?: EventFunction
imageStyle?: StyleProp
viewContext?: PostEmbedViewContext
+ isWithinQuote?: boolean
insetBorderStyle?: StyleProp
containerRefs: AnimatedRef[]
thumbDimsRef: React.RefObject<(Dimensions | null)[]>
@@ -42,6 +43,7 @@ export function GalleryItem({
onPressIn,
onLongPress,
viewContext,
+ isWithinQuote,
insetBorderStyle,
containerRefs,
thumbDimsRef,
@@ -52,6 +54,7 @@ export function GalleryItem({
const image = images[index]
const hasAlt = !!image.alt
const hideBadges =
+ isWithinQuote ??
viewContext === PostEmbedViewContext.FeedEmbedRecordWithMedia
const aspect =
diff --git a/src/components/moderation/ReportDialog/utils/parseReportSubject.ts b/src/components/moderation/ReportDialog/utils/parseReportSubject.ts
index 405640c453..a7d4b94c32 100644
--- a/src/components/moderation/ReportDialog/utils/parseReportSubject.ts
+++ b/src/components/moderation/ReportDialog/utils/parseReportSubject.ts
@@ -87,7 +87,10 @@ export function parseReportSubject(
reply: !!record.reply,
image:
embed.type === 'images' ||
- (embed.type === 'post_with_media' && embed.media.type === 'images'),
+ embed.type === 'gallery' ||
+ (embed.type === 'post_with_media' &&
+ (embed.media.type === 'images' ||
+ embed.media.type === 'gallery')),
video:
embed.type === 'video' ||
(embed.type === 'post_with_media' && embed.media.type === 'video'),
diff --git a/src/lib/api/index.ts b/src/lib/api/index.ts
index 7de4e13e56..6f92e2a1dd 100644
--- a/src/lib/api/index.ts
+++ b/src/lib/api/index.ts
@@ -1,6 +1,7 @@
import {
type $Typed,
type AppBskyEmbedExternal,
+ type AppBskyEmbedGallery,
type AppBskyEmbedImages,
type AppBskyEmbedRecord,
type AppBskyEmbedRecordWithMedia,
@@ -254,6 +255,7 @@ async function resolveEmbed(
onStateChange: ((state: string) => void) | undefined,
): Promise<
| $Typed
+ | $Typed
| $Typed
| $Typed
| $Typed
@@ -313,6 +315,7 @@ async function resolveMedia(
): Promise<
| $Typed
| $Typed
+ | $Typed
| $Typed
| undefined
> {
@@ -343,6 +346,34 @@ async function resolveMedia(
images,
}
}
+ if (embedDraft.media?.type === 'gallery') {
+ const imagesDraft = embedDraft.media.images
+ logger.debug(`Uploading images`, {
+ count: imagesDraft.length,
+ })
+ onStateChange?.(t`Uploading images...`)
+ const items: $Typed[] = await Promise.all(
+ imagesDraft.map(async (image, i) => {
+ logger.debug(`Compressing image #${i}`)
+ const {path, width, height, mime} = await compressImage(
+ image,
+ IMAGE_SIZE_CONFIG_POSTS,
+ )
+ logger.debug(`Uploading image #${i}`)
+ const res = await uploadBlob(agent, path, mime)
+ return {
+ $type: 'app.bsky.embed.gallery#image' as const,
+ image: res.data.blob,
+ alt: image.alt,
+ aspectRatio: {width, height},
+ }
+ }),
+ )
+ return {
+ $type: 'app.bsky.embed.gallery',
+ items,
+ }
+ }
if (
embedDraft.media?.type === 'video' &&
embedDraft.media.video.status === 'done'
diff --git a/src/types/bsky/post.ts b/src/types/bsky/post.ts
index fada39da81..43621ef63b 100644
--- a/src/types/bsky/post.ts
+++ b/src/types/bsky/post.ts
@@ -1,6 +1,7 @@
import {
type $Typed,
AppBskyEmbedExternal,
+ AppBskyEmbedGallery,
AppBskyEmbedImages,
AppBskyEmbedRecord,
AppBskyEmbedRecordWithMedia,
@@ -47,6 +48,10 @@ export type Embed =
type: 'images'
view: $Typed
}
+ | {
+ type: 'gallery'
+ view: $Typed
+ }
| {
type: 'link'
view: $Typed
@@ -122,6 +127,11 @@ export function parseEmbed(embed: AppBskyFeedDefs.PostView['embed']): Embed {
type: 'images',
view: embed,
}
+ } else if (AppBskyEmbedGallery.isView(embed)) {
+ return {
+ type: 'gallery',
+ view: embed,
+ }
} else if (AppBskyEmbedExternal.isView(embed)) {
return {
type: 'link',
diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx
index 5c9f1a05fe..a2493557b7 100644
--- a/src/view/com/composer/Composer.tsx
+++ b/src/view/com/composer/Composer.tsx
@@ -159,7 +159,7 @@ import {
composerReducer,
createComposerState,
type EmbedDraft,
- MAX_IMAGES,
+ MAX_GALLERY_IMAGES,
type PostAction,
type PostDraft,
type ThreadDraft,
@@ -178,6 +178,65 @@ type CancelRef = {
onPressCancel: () => void
}
+function applyGalleryCap(
+ currentCount: number,
+ incoming: ComposerImage[],
+):
+ | {status: 'full'}
+ | {status: 'partial'; accepted: ComposerImage[]; dropped: number}
+ | {status: 'ok'; accepted: ComposerImage[]} {
+ const remaining = MAX_GALLERY_IMAGES - currentCount
+ if (remaining <= 0) {
+ return {status: 'full'}
+ }
+ if (incoming.length > remaining) {
+ return {
+ status: 'partial',
+ accepted: incoming.slice(0, remaining),
+ dropped: incoming.length - remaining,
+ }
+ }
+ return {status: 'ok', accepted: incoming}
+}
+
+function useAddImagesWithCap(
+ currentCount: number,
+ dispatchPostAction: (action: PostAction) => void,
+) {
+ const {t: l} = useLingui()
+ return useCallback(
+ (next: ComposerImage[]) => {
+ const result = applyGalleryCap(currentCount, next)
+ if (result.status === 'full') {
+ Toast.show(
+ l({
+ message: `You can only add up to ${MAX_GALLERY_IMAGES} images per post`,
+ comment:
+ 'Toast shown when the user tries to add more images but the post gallery is already at the cap',
+ }),
+ {type: 'warning'},
+ )
+ return
+ }
+ if (result.status === 'partial') {
+ Toast.show(
+ l({
+ message: `Only ${result.accepted.length} of ${next.length} ${plural(next.length, {one: 'image', other: 'images'})} added; limit is ${MAX_GALLERY_IMAGES}`,
+ comment:
+ 'Toast shown when adding images would exceed the post gallery cap; only the first N are kept',
+ }),
+ {type: 'warning'},
+ )
+ }
+ dispatchPostAction({
+ type: 'embed_add_images',
+ images: result.accepted,
+ })
+ },
+ [currentCount, dispatchPostAction, l],
+ )
+}
+
type Props = ComposerOpts
export const ComposePost = ({
replyTo,
@@ -611,7 +670,11 @@ export const ComposePost = ({
ax.metric('draft:save', {
isNewDraft,
hasText: posts.some(p => p.richtext.text.trim().length > 0),
- hasImages: posts.some(p => p.embed.media?.type === 'images'),
+ hasImages: posts.some(
+ p =>
+ p.embed.media?.type === 'images' ||
+ p.embed.media?.type === 'gallery',
+ ),
hasVideo: posts.some(p => p.embed.media?.type === 'video'),
hasGif: posts.some(p => p.embed.media?.type === 'gif'),
hasQuote: posts.some(p => !!p.embed.quote),
@@ -780,7 +843,10 @@ export const ComposePost = ({
for (let i = 0; i < thread.posts.length; i++) {
const media = thread.posts[i].embed.media
if (media) {
- if (media.type === 'images' && media.images.some(img => !img.alt)) {
+ if (
+ (media.type === 'images' || media.type === 'gallery') &&
+ media.images.some(img => !img.alt)
+ ) {
return l`One or more images is missing alt text.`
}
if (media.type === 'gif' && !media.alt) {
@@ -931,7 +997,9 @@ export const ComposePost = ({
logger.error(e, {
message: `Composer: create post failed`,
hasImages: filteredThread.posts.some(
- p => p.embed.media?.type === 'images',
+ p =>
+ p.embed.media?.type === 'images' ||
+ p.embed.media?.type === 'gallery',
),
})
@@ -953,7 +1021,8 @@ export const ComposePost = ({
for (let post of filteredThread.posts) {
ax.metric('post:create', {
imageCount:
- post.embed.media?.type === 'images'
+ post.embed.media?.type === 'images' ||
+ post.embed.media?.type === 'gallery'
? post.embed.media.images.length
: 0,
isReply: index > 0 || !!replyTo,
@@ -1395,15 +1464,11 @@ let ComposerPost = memo(function ComposerPost({
[dispatch, post.id],
)
- const onImageAdd = useCallback(
- (next: ComposerImage[]) => {
- dispatchPost({
- type: 'embed_add_images',
- images: next,
- })
- },
- [dispatchPost],
- )
+ const postImagesCount =
+ post.embed.media?.type === 'images' || post.embed.media?.type === 'gallery'
+ ? post.embed.media.images.length
+ : 0
+ const onImageAdd = useAddImagesWithCap(postImagesCount, dispatchPost)
const onNewLink = useCallback(
(uri: string) => {
@@ -1708,7 +1773,7 @@ function ComposerEmbeds({
const video = embed.media?.type === 'video' ? embed.media.video : null
return (
<>
- {embed.media?.type === 'images' && (
+ {(embed.media?.type === 'images' || embed.media?.type === 'gallery') && (
)}
@@ -1819,7 +1884,11 @@ function ComposerPills({
}) {
const t = useTheme()
const media = post.embed.media
- const hasMedia = media?.type === 'images' || media?.type === 'video'
+ const hasMedia =
+ media?.type === 'images' ||
+ media?.type === 'gallery' ||
+ media?.type === 'gif' ||
+ media?.type === 'video'
const hasLink = !!post.embed.link
// Don't render anything if no pills are going to be displayed
@@ -1908,15 +1977,16 @@ function ComposerFooter({
>(undefined)
const media = post.embed.media
- const images = media?.type === 'images' ? media.images : []
+ const images =
+ media?.type === 'images' || media?.type === 'gallery' ? media.images : []
const video = media?.type === 'video' ? media.video : null
- const isMaxImages = images.length >= MAX_IMAGES
+ const isMaxImages = images.length >= MAX_GALLERY_IMAGES
const isMaxVideos = !!video
let selectedAssetsCount = 0
let isMediaSelectionDisabled = false
- if (media?.type === 'images') {
+ if (media?.type === 'images' || media?.type === 'gallery') {
isMediaSelectionDisabled = isMaxImages
selectedAssetsCount = images.length
} else if (media?.type === 'video') {
@@ -1926,15 +1996,7 @@ function ComposerFooter({
isMediaSelectionDisabled = !!media
}
- const onImageAdd = useCallback(
- (next: ComposerImage[]) => {
- dispatch({
- type: 'embed_add_images',
- images: next,
- })
- },
- [dispatch],
- )
+ const onImageAdd = useAddImagesWithCap(images.length, dispatch)
const onSelectGif = useCallback(
(gif: Gif) => {
@@ -2017,7 +2079,11 @@ function ComposerFooter({
autoOpen={openGallery}
/>
diff --git a/src/view/com/composer/ComposerReplyTo.tsx b/src/view/com/composer/ComposerReplyTo.tsx
index bac3e74d31..235139ef86 100644
--- a/src/view/com/composer/ComposerReplyTo.tsx
+++ b/src/view/com/composer/ComposerReplyTo.tsx
@@ -2,6 +2,7 @@ import {useCallback, useMemo, useState} from 'react'
import {LayoutAnimation, Pressable, View} from 'react-native'
import {Image} from 'expo-image'
import {
+ AppBskyEmbedGallery,
AppBskyEmbedImages,
AppBskyEmbedRecord,
AppBskyEmbedRecordWithMedia,
@@ -61,11 +62,14 @@ export function ComposerReplyTo({replyTo}: {replyTo: ComposerOptsPostRef}) {
const images = useMemo(() => {
if (AppBskyEmbedImages.isView(embed)) {
return embed.images
- } else if (
- AppBskyEmbedRecordWithMedia.isView(embed) &&
- AppBskyEmbedImages.isView(embed.media)
- ) {
- return embed.media.images
+ } else if (AppBskyEmbedGallery.isView(embed)) {
+ return galleryItemsToImages(embed.items)
+ } else if (AppBskyEmbedRecordWithMedia.isView(embed)) {
+ if (AppBskyEmbedImages.isView(embed.media)) {
+ return embed.media.images
+ } else if (AppBskyEmbedGallery.isView(embed.media)) {
+ return galleryItemsToImages(embed.media.items)
+ }
}
}, [embed])
@@ -129,6 +133,22 @@ export function ComposerReplyTo({replyTo}: {replyTo: ComposerOptsPostRef}) {
)
}
+function galleryItemsToImages(
+ items: AppBskyEmbedGallery.View['items'],
+): AppBskyEmbedImages.ViewImage[] {
+ // The reply-to thumbnail only renders up to 4 tiles; slicing here keeps
+ // the existing layout switch valid for galleries up to 10 items.
+ return items
+ .filter(AppBskyEmbedGallery.isViewImage)
+ .slice(0, 4)
+ .map(item => ({
+ thumb: item.thumbnail,
+ fullsize: item.fullsize,
+ alt: item.alt,
+ aspectRatio: item.aspectRatio,
+ }))
+}
+
function ComposerReplyToImages({
images,
}: {
diff --git a/src/view/com/composer/SelectMediaButton.tsx b/src/view/com/composer/SelectMediaButton.tsx
index 2d70195488..1de39f5f54 100644
--- a/src/view/com/composer/SelectMediaButton.tsx
+++ b/src/view/com/composer/SelectMediaButton.tsx
@@ -16,7 +16,7 @@ import {
} from '#/lib/hooks/usePermissions'
import {openUnifiedPicker} from '#/lib/media/picker'
import {extractDataUriMime} from '#/lib/media/util'
-import {MAX_IMAGES} from '#/view/com/composer/state/composer'
+import {MAX_GALLERY_IMAGES} from '#/view/com/composer/state/composer'
import {atoms as a, useTheme} from '#/alf'
import {Button} from '#/components/Button'
import {useSheetWrapper} from '#/components/Dialog/sheet-wrapper'
@@ -393,7 +393,9 @@ export function SelectMediaButton({
const t = useTheme()
const hasAutoOpened = useRef(false)
- const selectionCountRemaining = MAX_IMAGES - selectedAssetsCount
+ // Picker uses the gallery cap; the reducer decides which embed variant
+ // to land in based on the final image count.
+ const selectionCountRemaining = MAX_GALLERY_IMAGES - selectedAssetsCount
const processSelectedAssets = useCallback(
async (rawAssets: ImagePickerAsset[]) => {
@@ -419,10 +421,10 @@ export function SelectMediaButton({
),
[SelectedAssetError.MaxImages]: _(
msg({
- message: `You can select up to ${plural(MAX_IMAGES, {
+ message: `You can select up to ${plural(MAX_GALLERY_IMAGES, {
other: '# images',
})} in total.`,
- comment: `Error message for maximum number of images that can be selected to add to a post, currently 4 but may change.`,
+ comment: `Error message for maximum number of images that can be selected to add to a post.`,
}),
),
[SelectedAssetError.MaxVideos]: _(
@@ -507,10 +509,11 @@ export function SelectMediaButton({
)}
accessibilityHint={_(
msg({
- message: `Opens device gallery to select up to ${plural(MAX_IMAGES, {
- other: '# images',
- })}, or a single video or GIF.`,
- comment: `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.`,
+ message: `Opens device gallery to select up to ${plural(
+ MAX_GALLERY_IMAGES,
+ {other: '# images'},
+ )}, or a single video or GIF.`,
+ comment: `Accessibility hint for button in composer to add images, a video, or a GIF to a post.`,
}),
)}
style={a.p_sm}
diff --git a/src/view/com/composer/drafts/state/api.ts b/src/view/com/composer/drafts/state/api.ts
index 8f178d5282..817820effb 100644
--- a/src/view/com/composer/drafts/state/api.ts
+++ b/src/view/com/composer/drafts/state/api.ts
@@ -1,7 +1,7 @@
/**
* Type converters for Draft API - convert between ComposerState and server Draft types.
*/
-import {type AppBskyDraftDefs, AtUri, RichText} from '@atproto/api'
+import {AppBskyDraftDefs, AtUri, RichText} from '@atproto/api'
import {nanoid} from 'nanoid/non-secure'
import {resolveLink} from '#/lib/api/resolve'
@@ -15,6 +15,7 @@ import {createPublicAgent} from '#/state/session/agent'
import {
type ComposerState,
type EmbedDraft,
+ LEGACY_IMAGES_EMBED_MAX,
type PostDraft,
} from '#/view/com/composer/state/composer'
import {type VideoState} from '#/view/com/composer/state/video'
@@ -115,6 +116,16 @@ async function postDraftToServerPost(
post.embed.media.images,
localRefPaths,
)
+ } else if (post.embed.media.type === 'gallery') {
+ draftPost.embedGallery = {
+ $type: 'app.bsky.draft.defs#draftEmbedGallery',
+ items: serializeImages(post.embed.media.images, localRefPaths).map(
+ img => ({
+ $type: 'app.bsky.draft.defs#draftEmbedImage' as const,
+ ...img,
+ }),
+ ),
+ }
} else if (post.embed.media.type === 'video') {
const video = await serializeVideo(post.embed.media.video, localRefPaths)
if (video) {
@@ -269,6 +280,59 @@ function serializeGif(gifMedia: {
}
}
+/**
+ * Restore an array of draft image refs back to ComposerImages. Shared by
+ * both the `embedImages` and `embedGallery` paths in draftToComposerPosts.
+ */
+async function restoreDraftImages(
+ draftImages: AppBskyDraftDefs.DraftEmbedImage[],
+ loadedMedia: Map,
+): Promise {
+ const imagePromises = draftImages.map(async img => {
+ const path = loadedMedia.get(img.localRef.path)
+ if (!path) {
+ return null
+ }
+
+ let width = 0
+ let height = 0
+ try {
+ const dims = await getImageDim(path)
+ width = dims.width
+ height = dims.height
+ } catch (e) {
+ logger.warn('Failed to get image dimensions', {
+ path,
+ error: e,
+ })
+ }
+
+ logger.debug('restoring image with localRefPath', {
+ localRefPath: img.localRef.path,
+ loadedPath: path,
+ width,
+ height,
+ })
+
+ return {
+ alt: img.alt || '',
+ // Preserve the original localRefPath for reuse when saving
+ localRefPath: img.localRef.path,
+ source: {
+ id: nanoid(),
+ path,
+ width,
+ height,
+ mime: 'image/jpeg',
+ },
+ } satisfies ComposerImage
+ })
+
+ return (await Promise.all(imagePromises)).filter(
+ (img): img is NonNullable => img !== null,
+ )
+}
+
/**
* Convert server DraftView to DraftSummary for list display.
* Also checks which media files exist locally.
@@ -314,6 +378,24 @@ export function draftViewToSummary({
}
}
+ // Process gallery
+ if (post.embedGallery) {
+ for (const item of post.embedGallery.items) {
+ if (!AppBskyDraftDefs.isDraftEmbedImage(item)) continue
+ meta.mediaCount++
+ meta.hasMedia = true
+ const exists = storage.mediaExists(item.localRef.path)
+ if (!exists) {
+ meta.hasMissingMedia = true
+ }
+ images.push({
+ localPath: item.localRef.path,
+ altText: item.alt || '',
+ exists,
+ })
+ }
+ }
+
// Process videos
if (post.embedVideos) {
for (const vid of post.embedVideos) {
@@ -431,54 +513,31 @@ export async function draftToComposerPosts(
media: undefined,
}
- // Restore images
+ // Restore images / gallery. Pick the variant from the restored count so
+ // we match the composer reducer's `imagesToMediaVariant` rule (<=4 stays
+ // legacy `images`, >4 promotes to `gallery`). This keeps restore robust
+ // to drafts whose server slot disagrees with their count - e.g. a draft
+ // saved in `embedImages` with 5 items would otherwise restore as a
+ // broken `images` variant the rest of the composer can't grow.
+ const restoredImages: ComposerImage[] = []
if (post.embedImages && post.embedImages.length > 0) {
- const imagePromises = post.embedImages.map(async img => {
- const path = loadedMedia.get(img.localRef.path)
- if (!path) {
- return null
- }
-
- let width = 0
- let height = 0
- try {
- const dims = await getImageDim(path)
- width = dims.width
- height = dims.height
- } catch (e) {
- logger.warn('Failed to get image dimensions', {
- path,
- error: e,
- })
- }
-
- logger.debug('restoring image with localRefPath', {
- localRefPath: img.localRef.path,
- loadedPath: path,
- width,
- height,
- })
-
- return {
- alt: img.alt || '',
- // Preserve the original localRefPath for reuse when saving
- localRefPath: img.localRef.path,
- source: {
- id: nanoid(),
- path,
- width,
- height,
- mime: 'image/jpeg',
- },
- } satisfies ComposerImage
- })
-
- const images = (await Promise.all(imagePromises)).filter(
- (img): img is NonNullable => img !== null,
+ restoredImages.push(
+ ...(await restoreDraftImages(post.embedImages, loadedMedia)),
)
- if (images.length > 0) {
- embed.media = {type: 'images', images}
- }
+ }
+ if (post.embedGallery && post.embedGallery.items.length > 0) {
+ const galleryImages = post.embedGallery.items.filter(
+ AppBskyDraftDefs.isDraftEmbedImage,
+ )
+ restoredImages.push(
+ ...(await restoreDraftImages(galleryImages, loadedMedia)),
+ )
+ }
+ if (restoredImages.length > 0) {
+ embed.media =
+ restoredImages.length <= LEGACY_IMAGES_EMBED_MAX
+ ? {type: 'images', images: restoredImages}
+ : {type: 'gallery', images: restoredImages}
}
// Restore GIF from external embed
@@ -630,6 +689,12 @@ export function extractLocalRefs(draft: AppBskyDraftDefs.Draft): Set {
refs.add(img.localRef.path)
}
}
+ if (post.embedGallery) {
+ for (const item of post.embedGallery.items) {
+ if (!AppBskyDraftDefs.isDraftEmbedImage(item)) continue
+ refs.add(item.localRef.path)
+ }
+ }
if (post.embedVideos) {
for (const vid of post.embedVideos) {
refs.add(vid.localRef.path)
diff --git a/src/view/com/composer/drafts/state/queries.ts b/src/view/com/composer/drafts/state/queries.ts
index e66c9d023b..07dd67dd88 100644
--- a/src/view/com/composer/drafts/state/queries.ts
+++ b/src/view/com/composer/drafts/state/queries.ts
@@ -1,4 +1,4 @@
-import {AppBskyDraftCreateDraft, type AppBskyDraftDefs} from '@atproto/api'
+import {AppBskyDraftCreateDraft, AppBskyDraftDefs} from '@atproto/api'
import {
useInfiniteQuery,
useMutation,
@@ -74,6 +74,21 @@ export async function loadDraftMedia(draft: AppBskyDraftDefs.Draft): Promise<{
}
}
}
+ // Load gallery
+ if (post.embedGallery) {
+ for (const item of post.embedGallery.items) {
+ if (!AppBskyDraftDefs.isDraftEmbedImage(item)) continue
+ try {
+ const url = await storage.loadMediaFromLocal(item.localRef.path)
+ loadedMedia.set(item.localRef.path, url)
+ } catch (e) {
+ logger.error('Failed to load draft gallery image', {
+ path: item.localRef.path,
+ safeMessage: e instanceof Error ? e.message : String(e),
+ })
+ }
+ }
+ }
// Load videos
if (post.embedVideos) {
for (const vid of post.embedVideos) {
@@ -226,6 +241,12 @@ export function useDeleteDraftMutation() {
await storage.deleteMediaFromLocal(img.localRef.path)
}
}
+ if (post.embedGallery) {
+ for (const item of post.embedGallery.items) {
+ if (!AppBskyDraftDefs.isDraftEmbedImage(item)) continue
+ await storage.deleteMediaFromLocal(item.localRef.path)
+ }
+ }
if (post.embedVideos) {
for (const vid of post.embedVideos) {
await storage.deleteMediaFromLocal(vid.localRef.path)
diff --git a/src/view/com/composer/photos/Gallery.tsx b/src/view/com/composer/photos/Gallery.tsx
index 2cc000019f..98bfac779d 100644
--- a/src/view/com/composer/photos/Gallery.tsx
+++ b/src/view/com/composer/photos/Gallery.tsx
@@ -70,11 +70,13 @@ const GalleryInner = ({images, containerInfo, dispatch}: GalleryInnerProps) => {
const {isMobile} = useWebMediaQueries()
const {altTextControlStyle, imageControlsStyle, imageStyle} = useMemo(() => {
+ // Cap columns at 4 so tiles stay tappable when MAX_GALLERY_IMAGES is high;
+ // n > 4 wraps to multiple rows via flexWrap on the gallery container.
+ const columns = Math.min(images.length, 4)
const side =
images.length === 1
? 250
- : (containerInfo.width - IMAGE_GAP * (images.length - 1)) /
- images.length
+ : (containerInfo.width - IMAGE_GAP * (columns - 1)) / columns
const isOverflow = isMobile && images.length > 2
@@ -273,6 +275,7 @@ const styles = StyleSheet.create({
gallery: {
flex: 1,
flexDirection: 'row',
+ flexWrap: 'wrap',
gap: IMAGE_GAP,
marginTop: 16,
},
diff --git a/src/view/com/composer/state/composer.ts b/src/view/com/composer/state/composer.ts
index d2b9af7b8e..35e1706007 100644
--- a/src/view/com/composer/state/composer.ts
+++ b/src/view/com/composer/state/composer.ts
@@ -16,6 +16,7 @@ import {
postUriToRelativePath,
toBskyAppUrl,
} from '#/lib/strings/url-helpers'
+import {logger} from '#/logger'
import {type ComposerImage, createInitialImages} from '#/state/gallery'
import {createPostgateRecord} from '#/state/queries/postgate/util'
import {threadgateRecordToAllowUISetting} from '#/state/queries/threadgate'
@@ -38,6 +39,11 @@ type ImagesMedia = {
images: ComposerImage[]
}
+type GalleryMedia = {
+ type: 'gallery'
+ images: ComposerImage[]
+}
+
type VideoMedia = {
type: 'video'
video: VideoState
@@ -59,7 +65,7 @@ type Link = {
export type EmbedDraft = {
// We'll always submit quote and actual media (images, video, gifs) chosen by the user.
quote: Link | undefined
- media: ImagesMedia | VideoMedia | GifMedia | undefined
+ media: ImagesMedia | GalleryMedia | VideoMedia | GifMedia | undefined
// This field may end up ignored if we have more important things to display than a link card:
link: Link | undefined
}
@@ -154,7 +160,31 @@ export type ComposerAction =
draftId: string
}
-export const MAX_IMAGES = 4
+/**
+ * Threshold for picking between embed variants. <= this count uses the
+ * legacy `app.bsky.embed.images` shape; > this count promotes to
+ * `app.bsky.embed.gallery`. Named to flag that if/when we deprecate the
+ * legacy images embed entirely, this constant (and the variant split it
+ * gates) should go away.
+ */
+export const LEGACY_IMAGES_EMBED_MAX = 4
+export const MAX_GALLERY_IMAGES = 10
+
+/**
+ * Picks the embed variant for a set of images. <=4 lands in the legacy
+ * `app.bsky.embed.images` shape; >4 promotes to `app.bsky.embed.gallery`.
+ * Anything beyond the gallery cap is dropped by the hard slice; callers
+ * should already have enforced the cap upstream (picker, paste, etc),
+ * and the reducer logs a warning when the cap is exceeded so the UI
+ * layer can surface a toast.
+ */
+function imagesToMediaVariant(
+ images: ComposerImage[],
+): ImagesMedia | GalleryMedia {
+ return images.length <= LEGACY_IMAGES_EMBED_MAX
+ ? {type: 'images', images: images.slice(0, LEGACY_IMAGES_EMBED_MAX)}
+ : {type: 'gallery', images: images.slice(0, MAX_GALLERY_IMAGES)}
+}
export function composerReducer(
state: ComposerState,
@@ -337,16 +367,28 @@ function postReducer(state: PostDraft, action: PostAction): PostDraft {
}
const prevMedia = state.embed.media
let nextMedia = prevMedia
+ const prevCount =
+ prevMedia?.type === 'images' || prevMedia?.type === 'gallery'
+ ? prevMedia.images.length
+ : 0
+ const incomingCount = prevCount + action.images.length
+ if (incomingCount > MAX_GALLERY_IMAGES) {
+ // Defense in depth: callers (applyGalleryCap in Composer) should have
+ // already trimmed and surfaced a toast. The hard slice in
+ // imagesToMediaVariant still drops the excess so the cap holds.
+ logger.warn('composer: image add exceeds MAX_GALLERY_IMAGES', {
+ prevCount,
+ incomingCount,
+ dropped: incomingCount - MAX_GALLERY_IMAGES,
+ })
+ }
if (!prevMedia) {
- nextMedia = {
- type: 'images',
- images: action.images.slice(0, MAX_IMAGES),
- }
- } else if (prevMedia.type === 'images') {
- nextMedia = {
- ...prevMedia,
- images: [...prevMedia.images, ...action.images].slice(0, MAX_IMAGES),
- }
+ nextMedia = imagesToMediaVariant(action.images)
+ } else if (prevMedia.type === 'images' || prevMedia.type === 'gallery') {
+ nextMedia = imagesToMediaVariant([
+ ...prevMedia.images,
+ ...action.images,
+ ])
}
return {
...state,
@@ -358,7 +400,7 @@ function postReducer(state: PostDraft, action: PostAction): PostDraft {
}
case 'embed_update_image': {
const prevMedia = state.embed.media
- if (prevMedia?.type === 'images') {
+ if (prevMedia?.type === 'images' || prevMedia?.type === 'gallery') {
const updatedImage = action.image
const nextMedia = {
...prevMedia,
@@ -382,19 +424,22 @@ function postReducer(state: PostDraft, action: PostAction): PostDraft {
case 'embed_remove_image': {
const prevMedia = state.embed.media
let nextLabels = state.labels
- if (prevMedia?.type === 'images') {
+ if (prevMedia?.type === 'images' || prevMedia?.type === 'gallery') {
const removedImage = action.image
- let nextMedia: ImagesMedia | undefined = {
- ...prevMedia,
- images: prevMedia.images.filter(img => {
- return img.source.id !== removedImage.source.id
- }),
- }
- if (nextMedia.images.length === 0) {
+ const remainingImages = prevMedia.images.filter(img => {
+ return img.source.id !== removedImage.source.id
+ })
+ let nextMedia: ImagesMedia | GalleryMedia | undefined
+ if (remainingImages.length === 0) {
nextMedia = undefined
if (!state.embed.link) {
nextLabels = []
}
+ } else {
+ // Re-pick the variant so a gallery that shrinks to <=4 demotes
+ // back to the legacy `app.bsky.embed.images` shape - keeps old
+ // clients rendering it when possible.
+ nextMedia = imagesToMediaVariant(remainingImages)
}
return {
...state,
@@ -581,12 +626,9 @@ export function createComposerState({
| AppBskyActorDefs.PostInteractionSettingsPref
| undefined
}): ComposerState {
- let media: ImagesMedia | undefined
+ let media: ImagesMedia | GalleryMedia | undefined
if (initImageUris?.length) {
- media = {
- type: 'images',
- images: createInitialImages(initImageUris),
- }
+ media = imagesToMediaVariant(createInitialImages(initImageUris))
}
let quote: Link | undefined
if (initQuoteUri) {
diff --git a/src/view/com/feeds/ComposerPrompt.tsx b/src/view/com/feeds/ComposerPrompt.tsx
index b35c1c1adf..592266871e 100644
--- a/src/view/com/feeds/ComposerPrompt.tsx
+++ b/src/view/com/feeds/ComposerPrompt.tsx
@@ -12,7 +12,7 @@ import {
} from '#/lib/hooks/usePermissions'
import {openCamera, openUnifiedPicker} from '#/lib/media/picker'
import {useCurrentAccountProfile} from '#/state/queries/useCurrentAccountProfile'
-import {MAX_IMAGES} from '#/view/com/composer/state/composer'
+import {MAX_GALLERY_IMAGES} from '#/view/com/composer/state/composer'
import {UserAvatar} from '#/view/com/util/UserAvatar'
import {atoms as a, native, useTheme, web} from '#/alf'
import {Button} from '#/components/Button'
@@ -64,7 +64,7 @@ export function ComposerPrompt() {
Keyboard.dismiss()
}
- const selectionCountRemaining = MAX_IMAGES
+ const selectionCountRemaining = MAX_GALLERY_IMAGES
const {assets, canceled} = await sheetWrapper(
openUnifiedPicker({selectionCountRemaining}),
)
@@ -76,7 +76,7 @@ export function ComposerPrompt() {
if (assets.length > 0) {
const imageUris = assets
.filter(asset => asset.mimeType?.startsWith('image/'))
- .slice(0, MAX_IMAGES)
+ .slice(0, MAX_GALLERY_IMAGES)
.map(asset => ({
uri: asset.uri,
width: asset.width,
From f84c85aac6811e76f58b12e8880e0897f4331d66 Mon Sep 17 00:00:00 2001
From: Samuel Newman
Date: Fri, 5 Jun 2026 00:37:42 +0300
Subject: [PATCH 017/165] Use Reanimated layout animations for Android composer
(#8546)
---
src/view/shell/Composer.ios.tsx | 23 ++++++++-------
src/view/shell/Composer.tsx | 52 ++++++++++++++-------------------
src/view/shell/Composer.web.tsx | 7 ++---
src/view/shell/index.tsx | 4 +--
src/view/shell/index.web.tsx | 2 +-
5 files changed, 38 insertions(+), 50 deletions(-)
diff --git a/src/view/shell/Composer.ios.tsx b/src/view/shell/Composer.ios.tsx
index 437e610b20..7a1f599374 100644
--- a/src/view/shell/Composer.ios.tsx
+++ b/src/view/shell/Composer.ios.tsx
@@ -1,29 +1,30 @@
-import {useEffect, useRef} from 'react'
+import {useEffect} from 'react'
import {Modal, View} from 'react-native'
+import {SystemBars} from 'react-native-edge-to-edge'
-import {useDialogStateControlContext} from '#/state/dialogs'
import {useComposerState} from '#/state/shell/composer'
import {ComposePost, useComposerCancelRef} from '#/view/com/composer/Composer'
import {atoms as a, useTheme} from '#/alf'
import {SheetCompatProvider as TooltipSheetCompatProvider} from '#/components/Tooltip'
+import {IS_LIQUID_GLASS} from '#/env'
-export function Composer({}: {winHeight: number}) {
- const {setFullyExpandedCount} = useDialogStateControlContext()
+export function Composer() {
const t = useTheme()
const state = useComposerState()
const ref = useComposerCancelRef()
const open = !!state
- const prevOpen = useRef(open)
useEffect(() => {
- if (open && !prevOpen.current) {
- setFullyExpandedCount(c => c + 1)
- } else if (!open && prevOpen.current) {
- setFullyExpandedCount(c => c - 1)
+ if (open && !IS_LIQUID_GLASS) {
+ const entry = SystemBars.pushStackEntry({
+ style: {
+ statusBar: 'light',
+ },
+ })
+ return () => SystemBars.popStackEntry(entry)
}
- prevOpen.current = open
- }, [open, setFullyExpandedCount])
+ }, [open])
return (
{
- if (state) {
- Animated.timing(initInterp, {
- toValue: 1,
- duration: 300,
- easing: Easing.out(Easing.exp),
- useNativeDriver: true,
- }).start()
- } else {
- initInterp.setValue(0)
+ if (open) {
+ const entry = SystemBars.pushStackEntry({
+ style: {
+ statusBar: t.name !== 'light' ? 'light' : 'dark',
+ },
+ })
+ return () => SystemBars.popStackEntry(entry)
}
- }, [initInterp, state])
- const wrapperAnimStyle = {
- transform: [
- {
- translateY: initInterp.interpolate({
- inputRange: [0, 1],
- outputRange: [winHeight, 0],
- }),
- },
- ],
- }
+ }, [open, t.name])
- // rendering
- // =
-
- if (!state) {
+ if (!open) {
return null
}
return (
-
-
+
diff --git a/src/view/shell/index.web.tsx b/src/view/shell/index.web.tsx
index bfce0729d2..62dec9bcf7 100644
--- a/src/view/shell/index.web.tsx
+++ b/src/view/shell/index.web.tsx
@@ -64,7 +64,7 @@ function ShellInner() {
-
+
From 2f61c0a7b4ab735bf7ace70aa85ffc09206388e1 Mon Sep 17 00:00:00 2001
From: Eric Bailey
Date: Thu, 4 Jun 2026 16:51:34 -0500
Subject: [PATCH 018/165] Gate StandardSite subscribe button custom theme on
AAA contrast (#10735)
Co-authored-by: Claude Opus 4.8
---
src/alf/index.tsx | 8 +-
src/alf/util/colorGeneration.test.ts | 38 ++++++++-
src/alf/util/colorGeneration.ts | 42 ++++++++++
.../Post/Embed/StandardSiteEmbed/index.tsx | 84 ++++++++++++-------
4 files changed, 141 insertions(+), 31 deletions(-)
diff --git a/src/alf/index.tsx b/src/alf/index.tsx
index 0cb5ceb3f7..a1a2d8adaa 100644
--- a/src/alf/index.tsx
+++ b/src/alf/index.tsx
@@ -9,7 +9,12 @@ import {
setFontScale as persistFontScale,
} from '#/alf/fonts'
import {themes} from '#/alf/themes'
-import {darken, lighten, rgbToHex} from '#/alf/util/colorGeneration'
+import {
+ contrastRatio,
+ darken,
+ lighten,
+ rgbToHex,
+} from '#/alf/util/colorGeneration'
import {type Device} from '#/storage'
export {type TextStyleProp, type Theme, type ViewStyleProp} from '@bsky.app/alf'
@@ -26,6 +31,7 @@ export const utils = {
rgbToHex,
lighten,
darken,
+ contrastRatio,
}
export type Alf = {
diff --git a/src/alf/util/colorGeneration.test.ts b/src/alf/util/colorGeneration.test.ts
index c4a2b0bbb5..8d330201e0 100644
--- a/src/alf/util/colorGeneration.test.ts
+++ b/src/alf/util/colorGeneration.test.ts
@@ -1,4 +1,10 @@
-import {darken, hexToRgb, lighten, rgbToHex} from './colorGeneration'
+import {
+ contrastRatio,
+ darken,
+ hexToRgb,
+ lighten,
+ rgbToHex,
+} from './colorGeneration'
describe('hexToRgb', () => {
it('parses 6-digit hex', () => {
@@ -92,3 +98,33 @@ describe('lighten / darken', () => {
expect(darken('#zzz', 10)).toBe('#zzz')
})
})
+
+describe('contrastRatio', () => {
+ it('returns 21 for black on white', () => {
+ expect(contrastRatio('#000000', '#ffffff')).toBeCloseTo(21, 5)
+ })
+
+ it('returns 1 for identical colors', () => {
+ expect(contrastRatio('#abcdef', '#abcdef')).toBeCloseTo(1, 5)
+ })
+
+ it('is symmetric regardless of argument order', () => {
+ expect(contrastRatio('#123456', '#fedcba')).toBeCloseTo(
+ contrastRatio('#fedcba', '#123456')!,
+ 5,
+ )
+ })
+
+ it('clears AAA large text (4.5:1) for a high-contrast pairing', () => {
+ expect(contrastRatio('#1d3a5f', '#ffffff')!).toBeGreaterThanOrEqual(4.5)
+ })
+
+ it('fails AAA large text (4.5:1) for a low-contrast pairing', () => {
+ expect(contrastRatio('#777777', '#888888')!).toBeLessThan(4.5)
+ })
+
+ it('returns null for invalid hex input', () => {
+ expect(contrastRatio('not-a-color', '#ffffff')).toBeNull()
+ expect(contrastRatio('#ffffff', '#zzz')).toBeNull()
+ })
+})
diff --git a/src/alf/util/colorGeneration.ts b/src/alf/util/colorGeneration.ts
index 85659af25f..f3be07d502 100644
--- a/src/alf/util/colorGeneration.ts
+++ b/src/alf/util/colorGeneration.ts
@@ -72,6 +72,48 @@ export function rgbToHex(r: number, g: number, b: number): string {
.slice(1)}`
}
+/**
+ * Computes the WCAG contrast ratio between two colors, ranging from 1 (no
+ * contrast) to 21 (maximum contrast, i.e. black on white). Returns null if
+ * either argument is not a valid hex color.
+ *
+ * @see https://www.w3.org/TR/WCAG21/#dfn-contrast-ratio
+ */
+export function contrastRatio(hexA: string, hexB: string): number | null {
+ const rgbA = hexToRgb(hexA)
+ const rgbB = hexToRgb(hexB)
+ if (!rgbA || !rgbB) return null
+ const luminanceA = relativeLuminance(rgbA)
+ const luminanceB = relativeLuminance(rgbB)
+ const lighter = Math.max(luminanceA, luminanceB)
+ const darker = Math.min(luminanceA, luminanceB)
+ return (lighter + 0.05) / (darker + 0.05)
+}
+
+/**
+ * Computes the WCAG relative luminance of an RGB color, ranging from 0 (black)
+ * to 1 (white).
+ *
+ * @see https://www.w3.org/TR/WCAG21/#dfn-relative-luminance
+ */
+function relativeLuminance({
+ r,
+ g,
+ b,
+}: {
+ r: number
+ g: number
+ b: number
+}): number {
+ const toLinear = (channel: number) => {
+ const normalized = channel / 255
+ return normalized <= 0.03928
+ ? normalized / 12.92
+ : ((normalized + 0.055) / 1.055) ** 2.4
+ }
+ return 0.2126 * toLinear(r) + 0.7152 * toLinear(g) + 0.0722 * toLinear(b)
+}
+
function rgbToHsl(
r: number,
g: number,
diff --git a/src/components/Post/Embed/StandardSiteEmbed/index.tsx b/src/components/Post/Embed/StandardSiteEmbed/index.tsx
index c7b8abf88c..2c38f3806f 100644
--- a/src/components/Post/Embed/StandardSiteEmbed/index.tsx
+++ b/src/components/Post/Embed/StandardSiteEmbed/index.tsx
@@ -427,6 +427,26 @@ export function SubscribeButton({
? l`Subscribe on ${highlightedPublisher.name}`
: l`View publication`
+ /*
+ * The custom site theme paints the button background with `accent` and the
+ * text with `accentForeground`. Only honor it when that pairing clears WCAG
+ * AAA (4.5:1) for large text, which the button's bold label qualifies as.
+ * Otherwise we fall through to the default `secondary_inverted` styling,
+ * which is guaranteed to be legible.
+ */
+ const {accentRGB, accentForegroundRGB} = view.source?.theme || {}
+ let useCustomTheme = false
+ if (accentRGB && accentForegroundRGB) {
+ const accent = utils.rgbToHex(accentRGB.r, accentRGB.g, accentRGB.b)
+ const accentForeground = utils.rgbToHex(
+ accentForegroundRGB.r,
+ accentForegroundRGB.g,
+ accentForegroundRGB.b,
+ )
+ const ratio = utils.contrastRatio(accent, accentForeground)
+ useCustomTheme = ratio !== null && ratio >= 4.5
+ }
+
if (!view.source) return null
const publicationTitle = view.source.title
@@ -468,36 +488,42 @@ export function SubscribeButton({
}
}
+ const button = (
+
+ {highlightedPublisher ? (
+ <>
+
+
+
+ {cta}
+ >
+ ) : (
+ <>
+ {cta}
+
+ >
+ )}
+
+ )
+
+ if (!useCustomTheme) {
+ return button
+ }
+
return (
-
-
- {highlightedPublisher ? (
- <>
-
-
-
- {cta}
- >
- ) : (
- <>
- {cta}
-
- >
- )}
-
-
+ {button}
)
}
From 68da7971806182cb99856c21954836b6facff0a9 Mon Sep 17 00:00:00 2001
From: Spence Pope
Date: Thu, 4 Jun 2026 22:19:35 -0400
Subject: [PATCH 019/165] Add OTA fallback for gallery embed (#10734)
Co-authored-by: Eric Bailey
---
.../Post/Embed/GalleryFallbackEmbed.tsx | 99 +++++++++++++++++++
.../screens/Storybook/GalleryFallback.tsx | 25 +++++
src/view/screens/Storybook/Storybook.tsx | 2 +
3 files changed, 126 insertions(+)
create mode 100644 src/components/Post/Embed/GalleryFallbackEmbed.tsx
create mode 100644 src/view/screens/Storybook/GalleryFallback.tsx
diff --git a/src/components/Post/Embed/GalleryFallbackEmbed.tsx b/src/components/Post/Embed/GalleryFallbackEmbed.tsx
new file mode 100644
index 0000000000..38d7e4d013
--- /dev/null
+++ b/src/components/Post/Embed/GalleryFallbackEmbed.tsx
@@ -0,0 +1,99 @@
+import {Linking, View} from 'react-native'
+import {plural} from '@lingui/core/macro'
+import {Trans, useLingui} from '@lingui/react/macro'
+
+import {BSKY_DOWNLOAD_URL} from '#/lib/constants'
+import {atoms as a, useTheme} from '#/alf'
+import {Button, ButtonText} from '#/components/Button'
+import {Sparkle_Stroke2_Corner0_Rounded as Sparkle} from '#/components/icons/Sparkle'
+import {Text} from '#/components/Typography'
+import {IS_NATIVE} from '#/env'
+
+/**
+ * OTA-able fallback that ships to native builds which don't yet know how to
+ * render the new gallery embed (>4 images, Photos v2). Final copy and visual
+ * treatment pending design from Darrin/Danielle/Alex.
+ *
+ * Native-only per APP-2308 - web builds receive the new gallery support in
+ * the same release that adds it.
+ */
+export function GalleryFallbackEmbed({count}: {count?: number}) {
+ const t = useTheme()
+ const {t: l} = useLingui()
+
+ const bodyStyle = [
+ a.text_sm,
+ a.text_center,
+ a.leading_snug,
+ t.atoms.text_contrast_high,
+ ]
+
+ return (
+
+
+
+ Something new is here
+
+ {count ? (
+
+
+ {plural(count, {
+ one: 'This post has # photo.',
+ other: 'This post has # photos.',
+ })}
+
+ {IS_NATIVE ? (
+
+ {plural(count, {
+ one: 'Update your app to see it.',
+ other: 'Update your app to see them all.',
+ })}
+
+ ) : (
+
+ {plural(count, {
+ one: 'Refresh the page to see it.',
+ other: 'Refresh the page to see them all.',
+ })}
+
+ )}
+
+ ) : IS_NATIVE ? (
+
+ Update your app to see it.
+
+ ) : (
+
+ Refresh the page to see it.
+
+ )}
+ {IS_NATIVE && (
+
+ )}
+
+ )
+}
diff --git a/src/view/screens/Storybook/GalleryFallback.tsx b/src/view/screens/Storybook/GalleryFallback.tsx
new file mode 100644
index 0000000000..7cca087dba
--- /dev/null
+++ b/src/view/screens/Storybook/GalleryFallback.tsx
@@ -0,0 +1,25 @@
+import {View} from 'react-native'
+
+import {atoms as a} from '#/alf'
+import {GalleryFallbackEmbed} from '#/components/Post/Embed/GalleryFallbackEmbed'
+import {H1, H3} from '#/components/Typography'
+
+export function GalleryFallback() {
+ return (
+
+ Gallery fallback (APP-2308)
+
+ No count
+
+
+ 1 photo
+
+
+ 5 photos
+
+
+ 10 photos
+
+
+ )
+}
diff --git a/src/view/screens/Storybook/Storybook.tsx b/src/view/screens/Storybook/Storybook.tsx
index 8fb85e8e0a..33c31a9ee6 100644
--- a/src/view/screens/Storybook/Storybook.tsx
+++ b/src/view/screens/Storybook/Storybook.tsx
@@ -16,6 +16,7 @@ import {Breakpoints} from './Breakpoints'
import {Buttons} from './Buttons'
import {Dialogs} from './Dialogs'
import {Forms} from './Forms'
+import {GalleryFallback} from './GalleryFallback'
import {Icons} from './Icons'
import {Links} from './Links'
import {Menus} from './Menus'
@@ -120,6 +121,7 @@ export default function Storybook() {
+
} label={l`Group chat invite link dialog`} style={web({maxWidth: 400})}> {content} ) } function joinLinkToKey(joinLink: ChatBskyGroupDefs.JoinLinkView): string { return `${joinLink.joinRule}${joinLink.requireApproval ? ':requireApproval' : ''}` } function keyToJoinLink( key: string, ): Pick { const [joinRule, requireApproval] = key.split(':') return { joinRule, requireApproval: requireApproval === 'requireApproval', } }
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Group chats can only have a maximum of {0}."
-msgstr "Group chats can only have a maximum of {0}."
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr "Group chats can only have a maximum of {0, plural, other {# people}}."
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
@@ -5586,7 +5632,7 @@ msgstr ""
msgid "Help"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr ""
@@ -5759,14 +5805,14 @@ msgstr ""
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Hold your horses! This feature isn't available to you yet. Please check back later."
#: src/Navigation.tsx:740
#: src/Navigation.tsx:761
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr ""
@@ -5824,7 +5870,7 @@ msgstr ""
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:242
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
@@ -5889,32 +5935,32 @@ msgid "If you're trying to change your handle or email, do so before you deactiv
msgstr ""
#. Ignore a request to join a chat
-#: src/screens/Messages/JoinRequests.tsx:485
+#: src/screens/Messages/JoinRequests.tsx:484
msgctxt "button"
msgid "Ignore"
msgstr "Ignore"
-#: src/screens/Messages/JoinRequests.tsx:479
+#: src/screens/Messages/JoinRequests.tsx:478
msgid "Ignore join request"
msgstr "Ignore join request"
-#: src/components/images/ImageLayoutGridItem.tsx:93
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:443
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "Image {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:257
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "Image {0} of {imageCount}"
@@ -5944,12 +5990,12 @@ msgid "Image is unavailable."
msgstr "Image is unavailable."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:261
-#: src/components/Lightbox/Lightbox.web.tsx:269
+#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Image options"
-#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -6075,7 +6121,7 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
-#: src/components/intents/GroupChatJoinDialog.tsx:126
+#: src/components/intents/GroupChatJoinDialog.tsx:127
msgid "Invalid group chat code."
msgstr "Invalid group chat code."
@@ -6097,7 +6143,7 @@ msgstr ""
msgid "Invalid report subject"
msgstr ""
-#: src/components/intents/GroupChatJoinDialog.tsx:157
+#: src/components/intents/GroupChatJoinDialog.tsx:158
msgid "Invalid rescind request."
msgstr "Invalid rescind request."
@@ -6130,10 +6176,10 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:309
-#: src/screens/Messages/components/InviteLinkDialog.tsx:315
-#: src/screens/Messages/components/InviteLinkDialog.tsx:482
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
@@ -6144,7 +6190,7 @@ msgid "Invite link created"
msgstr "Invite link created"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:309
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "Invite link disabled"
@@ -6194,7 +6240,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr ""
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2386
+#: src/view/com/composer/Composer.tsx:2452
msgid "Job ID: {0}"
msgstr ""
@@ -6203,7 +6249,8 @@ msgstr ""
msgid "Jobs"
msgstr ""
-#: src/components/intents/GroupChatJoinDialog.tsx:253
+#: src/components/dms/ChatInvite/Root.tsx:98
+#: src/components/intents/GroupChatJoinDialog.tsx:254
msgid "Join"
msgstr "Join"
@@ -6215,11 +6262,11 @@ msgid "Join Bluesky"
msgstr ""
#: src/components/intents/GroupChatJoinDialog.tsx:63
-#: src/components/intents/GroupChatJoinDialog.tsx:415
+#: src/components/intents/GroupChatJoinDialog.tsx:419
msgid "Join group chat"
msgstr "Join group chat"
-#: src/components/intents/GroupChatJoinDialog.tsx:146
+#: src/components/intents/GroupChatJoinDialog.tsx:147
msgid "Join request rescinded."
msgstr "Join request rescinded."
@@ -6228,16 +6275,12 @@ msgstr "Join request rescinded."
msgid "Join the conversation"
msgstr ""
-#: src/components/intents/GroupChatJoinDialog.tsx:420
-msgid "Join this group chat"
-msgstr "Join this group chat"
-
#: src/lib/interests.ts:63
msgid "Journalism"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1324
-#: src/view/com/composer/Composer.tsx:1334
+#: src/view/com/composer/Composer.tsx:1393
+#: src/view/com/composer/Composer.tsx:1403
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6538,7 +6581,7 @@ msgstr ""
msgid "Linear"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:296
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "Link copied to clipboard"
@@ -6632,7 +6675,7 @@ msgstr ""
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr ""
@@ -6900,7 +6943,7 @@ msgstr ""
msgid "Message {displayName}"
msgstr "Message {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:325
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr ""
@@ -6909,7 +6952,7 @@ msgctxt "toast"
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageItem.tsx:522
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Message failed to send."
@@ -6946,11 +6989,11 @@ msgstr ""
msgid "Messages"
msgstr ""
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr "Messages from this person are hidden while they are blocking you."
-#: src/components/dms/MessageItem.tsx:616
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr "Messages from this person are hidden while you are blocking them."
@@ -7344,7 +7387,7 @@ msgid "New post"
msgstr ""
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr ""
@@ -7479,7 +7522,7 @@ msgstr ""
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:311
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr ""
@@ -7680,8 +7723,8 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr ""
@@ -7724,7 +7767,7 @@ msgstr ""
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
#: src/components/dms/InitiateChatFlow.tsx:677
-#: src/components/dms/MessageItem.tsx:628
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7757,27 +7800,27 @@ msgstr "One of the selected recipients does not allow group chats."
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr "One of the selected recipients has blocked you and cannot be messaged."
-#: src/view/com/composer/Composer.tsx:787
+#: src/view/com/composer/Composer.tsx:853
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:784
+#: src/view/com/composer/Composer.tsx:850
msgid "One or more images is missing alt text."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:415
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:438
+#: src/view/com/composer/SelectMediaButton.tsx:440
msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
-#: src/view/com/composer/Composer.tsx:589
+#: src/view/com/composer/Composer.tsx:648
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:794
+#: src/view/com/composer/Composer.tsx:860
msgid "One or more videos is missing alt text."
msgstr ""
@@ -7786,6 +7829,14 @@ msgstr ""
msgid "Only {0} can reply."
msgstr ""
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:223
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+
#: src/screens/Messages/JoinRequests.tsx:196
msgid "Only admins can accept join requests."
msgstr "Only admins can accept join requests."
@@ -7794,7 +7845,7 @@ msgstr "Only admins can accept join requests."
msgid "Only admins can ignore join requests."
msgstr "Only admins can ignore join requests."
-#: src/components/intents/GroupChatJoinDialog.tsx:124
+#: src/components/intents/GroupChatJoinDialog.tsx:125
msgid "Only followers can join this group chat."
msgstr "Only followers can join this group chat."
@@ -7813,7 +7864,8 @@ msgstr ""
msgid "Only people {0} follows can join."
msgstr "Only people {0} follows can join."
-#: src/components/intents/GroupChatJoinDialog.tsx:268
+#: src/components/dms/ChatInvite/Root.tsx:113
+#: src/components/intents/GroupChatJoinDialog.tsx:269
msgid "Only people the chat owner follows can join"
msgstr "Only people the chat owner follows can join"
@@ -7834,7 +7886,7 @@ msgstr ""
msgid "Oops!"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr ""
@@ -7842,12 +7894,17 @@ msgstr ""
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:85
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr "Open chat"
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "Open chat member options for {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:486
-#: src/screens/Messages/components/ChatListItem.tsx:490
+#: src/screens/Messages/components/ChatListItem.tsx:491
+#: src/screens/Messages/components/ChatListItem.tsx:495
msgid "Open conversation options"
msgstr ""
@@ -7861,7 +7918,7 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2026
+#: src/view/com/composer/Composer.tsx:2092
msgid "Open emoji picker"
msgstr ""
@@ -7882,7 +7939,7 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/intents/GroupChatJoinDialog.tsx:399
+#: src/components/intents/GroupChatJoinDialog.tsx:401
msgid "Open group chat"
msgstr "Open group chat"
@@ -7943,7 +8000,7 @@ msgstr ""
msgid "Open system log"
msgstr ""
-#: src/components/intents/GroupChatJoinDialog.tsx:400
+#: src/components/intents/GroupChatJoinDialog.tsx:402
msgid "Open this group chat"
msgstr "Open this group chat"
@@ -7968,7 +8025,7 @@ msgstr ""
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr ""
@@ -7988,10 +8045,10 @@ msgstr ""
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:509
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
-msgstr ""
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
@@ -8005,7 +8062,7 @@ msgstr ""
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/components/images/Gallery/index.tsx:444
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Opens full image"
@@ -8022,7 +8079,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:600
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -8051,9 +8108,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:618
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr ""
@@ -8197,11 +8254,11 @@ msgstr ""
msgid "People"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "People {ownerName} follows can join instantly"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "People {ownerName} follows can request to join"
@@ -8220,11 +8277,11 @@ msgstr ""
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "People I follow can join instantly"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "People I follow can request to join"
@@ -8512,7 +8569,7 @@ msgstr ""
msgid "Porn"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1675
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post"
msgstr ""
@@ -8532,12 +8589,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1673
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Post All"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1333
+#: src/view/com/composer/Composer.tsx:1402
msgid "Post anyway"
msgstr "Post anyway"
@@ -8558,7 +8615,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr ""
-#: src/lib/api/index.ts:186
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
@@ -8593,8 +8650,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:371
-#: src/screens/Messages/components/InviteLinkDialog.tsx:383
+#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Post link"
@@ -8710,15 +8767,15 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2460
+#: src/view/com/composer/Composer.tsx:2526
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2462
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing video..."
msgstr ""
-#: src/lib/api/index.ts:60
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr ""
@@ -8726,8 +8783,8 @@ msgstr ""
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8759,22 +8816,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:1659
+#: src/view/com/composer/Composer.tsx:1724
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1654
+#: src/view/com/composer/Composer.tsx:1719
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1643
+#: src/view/com/composer/Composer.tsx:1708
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1648
+#: src/view/com/composer/Composer.tsx:1713
msgid "Publish reply"
msgstr ""
@@ -8853,11 +8910,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:401
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Re-enable invite link"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:408
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Re-enable link"
@@ -8961,6 +9018,10 @@ msgstr ""
msgid "Reconnect"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr "Refresh the page to see it."
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -9016,17 +9077,17 @@ msgstr ""
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:520
#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr ""
-#: src/view/com/util/UserBanner.tsx:190
#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr ""
@@ -9034,8 +9095,9 @@ msgstr ""
msgid "Remove caption file"
msgstr "Remove caption file"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr ""
@@ -9079,7 +9141,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr ""
@@ -9129,11 +9191,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr ""
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr ""
@@ -9223,7 +9285,7 @@ msgstr ""
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1671
+#: src/view/com/composer/Composer.tsx:1736
msgctxt "action"
msgid "Reply"
msgstr ""
@@ -9408,14 +9470,10 @@ msgstr ""
msgid "Reposts of your reposts"
msgstr ""
-#: src/components/intents/GroupChatJoinDialog.tsx:414
+#: src/components/intents/GroupChatJoinDialog.tsx:418
msgid "Request access to group chat"
msgstr "Request access to group chat"
-#: src/components/intents/GroupChatJoinDialog.tsx:419
-msgid "Request access to join this group chat"
-msgstr "Request access to join this group chat"
-
#: src/screens/Messages/JoinRequests.tsx:178
msgid "Request approved."
msgstr "Request approved."
@@ -9429,10 +9487,15 @@ msgstr ""
msgid "Request ignored."
msgstr "Request ignored."
-#: src/components/intents/GroupChatJoinDialog.tsx:252
+#: src/components/dms/ChatInvite/Root.tsx:98
+#: src/components/intents/GroupChatJoinDialog.tsx:253
msgid "Request to join"
msgstr "Request to join"
+#: src/components/dms/ChatInvite/Root.tsx:117
+msgid "Requested"
+msgstr "Requested"
+
#. Incoming message requests
#: src/screens/Messages/components/InboxRequests.tsx:24
msgid "Requests"
@@ -9440,7 +9503,7 @@ msgstr "Requests"
#: src/Navigation.tsx:495
#: src/screens/Messages/JoinRequests.tsx:58
-#: src/screens/Messages/JoinRequests.tsx:421
+#: src/screens/Messages/JoinRequests.tsx:420
msgid "Requests to join"
msgstr "Requests to join"
@@ -9461,7 +9524,7 @@ msgstr ""
msgid "Required in your region"
msgstr ""
-#: src/components/intents/GroupChatJoinDialog.tsx:272
+#: src/components/intents/GroupChatJoinDialog.tsx:273
msgid "Rescind request"
msgstr "Rescind request"
@@ -9617,28 +9680,28 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1314
+#: src/view/com/composer/Composer.tsx:1383
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1286
+#: src/view/com/composer/Composer.tsx:1355
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1314
+#: src/view/com/composer/Composer.tsx:1383
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1288
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
-#: src/components/MediaPreview.tsx:197
+#: src/components/MediaPreview.tsx:229
#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
@@ -9663,7 +9726,7 @@ msgstr ""
msgid "Save to my feeds"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9721,7 +9784,7 @@ msgstr ""
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr ""
@@ -10048,7 +10111,7 @@ msgstr ""
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:418
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -10079,7 +10142,7 @@ msgstr "Send error report"
msgid "Send feedback"
msgstr ""
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr ""
@@ -10157,7 +10220,7 @@ msgstr ""
#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr ""
@@ -10219,12 +10282,12 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
-#: src/components/MediaPreview.tsx:203
+#: src/components/MediaPreview.tsx:235
#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:387
-#: src/screens/Messages/components/InviteLinkDialog.tsx:394
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10240,8 +10303,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:277
-#: src/components/Lightbox/Lightbox.web.tsx:303
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Share image"
@@ -10446,10 +10509,10 @@ msgstr ""
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10500,9 +10563,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr ""
@@ -10511,7 +10574,7 @@ msgid "Sign Out"
msgstr ""
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr ""
@@ -10543,7 +10606,7 @@ msgstr ""
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1331
+#: src/view/com/composer/Composer.tsx:1400
msgid "Skip empty posts?"
msgstr "Skip empty posts?"
@@ -10557,7 +10620,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "slide"
@@ -10614,7 +10677,7 @@ msgid "Someone left the group"
msgstr "Someone left the group"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:270
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10639,11 +10702,15 @@ msgstr "Someone was removed"
msgid "Someone was removed from the group"
msgstr "Someone was removed from the group"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr "Something new is here"
+
#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
@@ -10848,13 +10915,13 @@ msgid "Subscribe"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:435
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:427
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
msgid "Subscribe on {0}"
msgstr "Subscribe on {0}"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:434
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "Subscribe to {publicationTitle} on {0}"
msgstr "Subscribe to {publicationTitle} on {0}"
@@ -10889,7 +10956,7 @@ msgstr ""
msgid "Success!"
msgstr ""
-#: src/components/intents/GroupChatJoinDialog.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:101
msgid "Successfully joined the group chat!"
msgstr "Successfully joined the group chat!"
@@ -10950,7 +11017,7 @@ msgstr "Suspended accounts cannot participate in chat."
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr ""
@@ -10959,7 +11026,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10985,7 +11052,7 @@ msgstr ""
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:567
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr "Tap for details"
@@ -11011,10 +11078,23 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:73
+msgid "Tap to copy this invite link"
+msgstr "Tap to copy this invite link"
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:126
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr "Tap to join this group chat immediately"
+
+#: src/components/dms/ChatInvite/Root.tsx:86
+msgid "Tap to open this group chat"
+msgstr "Tap to open this group chat"
+
#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Tap to remove"
@@ -11024,7 +11104,12 @@ msgstr "Tap to remove"
msgid "Tap to remove your {0} reaction"
msgstr "Tap to remove your {0} reaction"
-#: src/components/dms/MessageItem.tsx:532
+#: src/components/dms/ChatInvite/Root.tsx:125
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr "Tap to request access to join this group chat"
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Tap to retry"
@@ -11037,7 +11122,7 @@ msgstr "Tap to show {0} reactions"
msgid "Tap to show all reactions"
msgstr "Tap to show all reactions"
-#: src/components/dms/MessageItem.tsx:293
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Tap to view reactions"
@@ -11206,7 +11291,7 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
-#: src/components/intents/GroupChatJoinDialog.tsx:134
+#: src/components/intents/GroupChatJoinDialog.tsx:135
#: src/screens/Messages/JoinRequests.tsx:201
msgid "The member limit has been reached."
msgstr "The member limit has been reached."
@@ -11263,7 +11348,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/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "There is no invite link for this group chat."
@@ -11277,8 +11362,8 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "There was a problem loading GIFs. Check your connection and try again."
#: src/components/contacts/screens/GetContacts.tsx:147
-#: src/components/intents/GroupChatJoinDialog.tsx:118
-#: src/components/intents/GroupChatJoinDialog.tsx:152
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
@@ -11435,11 +11520,12 @@ msgstr ""
msgid "This chat has ended"
msgstr "This chat has ended"
-#: src/components/intents/GroupChatJoinDialog.tsx:263
+#: src/components/dms/ChatInvite/Root.tsx:108
+#: src/components/intents/GroupChatJoinDialog.tsx:264
msgid "This chat is full"
msgstr "This chat is full"
-#: src/screens/Messages/components/ChatListItem.tsx:375
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "This chat is locked"
@@ -11478,11 +11564,11 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/components/intents/GroupChatJoinDialog.tsx:120
+#: src/components/intents/GroupChatJoinDialog.tsx:121
msgid "This conversation is locked."
msgstr "This conversation is locked."
-#: src/screens/Messages/components/ChatListItem.tsx:155
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11532,7 +11618,7 @@ msgstr ""
msgid "This handle is reserved. Please try a different one."
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "This image could not be used. Try a different format like .jpg or .png."
@@ -11540,7 +11626,7 @@ msgstr "This image could not be used. Try a different format like .jpg or .png."
msgid "This information is private and not shared with other users."
msgstr ""
-#: src/components/intents/GroupChatJoinDialog.tsx:130
+#: src/components/intents/GroupChatJoinDialog.tsx:131
msgid "This invite link has been disabled."
msgstr "This invite link has been disabled."
@@ -11548,7 +11634,7 @@ msgstr "This invite link has been disabled."
msgid "This invite link has expired"
msgstr "This invite link has expired"
-#: src/components/intents/GroupChatJoinDialog.tsx:194
+#: src/components/intents/GroupChatJoinDialog.tsx:195
msgid "This invite link is invalid"
msgstr "This invite link is invalid"
@@ -11594,13 +11680,13 @@ msgstr ""
msgid "This list is empty."
msgstr ""
-#: src/components/dms/MessageItem.tsx:565
-#: src/components/dms/MessageItem.tsx:594
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr "This message is hidden because this user is blocking you."
-#: src/components/dms/MessageItem.tsx:564
-#: src/components/dms/MessageItem.tsx:590
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr "This message is hidden because you are blocking this user."
@@ -11638,7 +11724,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:945
+#: src/view/com/composer/Composer.tsx:1013
msgid "This post's author has disabled quote posts."
msgstr ""
@@ -11980,7 +12066,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:632
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -12219,11 +12305,11 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "Unsupported clipboard content"
-#: src/view/com/composer/Composer.tsx:1424
+#: src/view/com/composer/Composer.tsx:1489
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12236,6 +12322,10 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr "Update app"
+
#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
@@ -12243,9 +12333,9 @@ msgstr ""
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:217
-#: src/screens/Messages/components/InviteLinkDialog.tsx:255
-#: src/screens/Messages/components/InviteLinkDialog.tsx:283
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Update invite link"
@@ -12254,7 +12344,15 @@ msgstr "Update invite link"
msgid "Update to {domain}"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr "Update your app"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr "Update your app to see it."
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "Update your app to the latest version to join in!"
@@ -12279,7 +12377,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr ""
@@ -12287,39 +12385,40 @@ msgstr ""
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:491
#: src/view/com/util/UserAvatar.tsx:494
-#: src/view/com/util/UserBanner.tsx:161
+#: src/view/com/util/UserAvatar.tsx:497
#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:508
-#: src/view/com/util/UserBanner.tsx:178
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:502
-#: src/view/com/util/UserAvatar.tsx:506
-#: src/view/com/util/UserBanner.tsx:172
-#: src/view/com/util/UserBanner.tsx:176
+#: src/view/com/util/UserAvatar.tsx:505
+#: src/view/com/util/UserAvatar.tsx:509
+#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2453
+#: src/view/com/composer/Composer.tsx:2519
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:322
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr ""
-#: src/lib/api/index.ts:390
-#: src/lib/api/index.ts:414
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2455
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading video..."
msgstr ""
@@ -12608,7 +12707,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2539
msgid "Video uploaded"
msgstr ""
@@ -12621,18 +12720,18 @@ msgstr ""
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:432
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1037
+#: src/view/com/composer/Composer.tsx:1106
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:320
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:589
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:616
msgid "View {0}"
msgstr "View {0}"
@@ -12661,7 +12760,7 @@ msgstr "View {0}’s profile"
msgid "View {displayName}’s profile"
msgstr "View {displayName}’s profile"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:437
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:458
msgid "View {publicationTitle}"
msgstr "View {publicationTitle}"
@@ -12696,6 +12795,14 @@ msgstr ""
msgid "View incoming group chat requests"
msgstr "View incoming group chat requests"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr "View incoming requests"
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr "View incoming requests to join this group chat"
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr ""
@@ -12711,7 +12818,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1032
+#: src/view/com/composer/Composer.tsx:1101
msgid "View post"
msgstr ""
@@ -12729,9 +12836,9 @@ msgid "View profile banner"
msgstr "View profile banner"
#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:320
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:427
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:438
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:589
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:459
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:616
msgid "View publication"
msgstr "View publication"
@@ -12854,7 +12961,7 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr ""
@@ -13007,7 +13114,7 @@ msgstr "We’re sorry, but your search could not be completed. Please try again
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:943
+#: src/view/com/composer/Composer.tsx:1011
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
@@ -13058,7 +13165,7 @@ msgid "What do you want to call your starter pack?"
msgstr ""
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1384
+#: src/view/com/composer/Composer.tsx:1453
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr ""
@@ -13071,7 +13178,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:227
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "Who can join this group chat and how"
@@ -13144,7 +13251,7 @@ msgstr "Would you like to block this user and/or leave this conversation?"
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1302
+#: src/view/com/composer/Composer.tsx:1371
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -13153,12 +13260,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1484
+#: src/view/com/composer/Composer.tsx:1549
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1382
+#: src/view/com/composer/Composer.tsx:1451
msgid "Write your reply"
msgstr ""
@@ -13224,7 +13331,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:605
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr "You are blocking {0}"
@@ -13325,7 +13432,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1307
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES} images per post"
+msgstr "You can only add up to {MAX_GALLERY_IMAGES} images per post"
+
+#: src/view/com/composer/Composer.tsx:1376
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13333,11 +13445,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:435
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:429
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13349,10 +13461,10 @@ msgstr ""
msgid "You can read chat history but can’t send new messages."
msgstr "You can read chat history but can’t send new messages."
-#. 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:421
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
-msgstr ""
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13391,9 +13503,9 @@ msgstr ""
msgid "You got here first"
msgstr ""
-#: src/components/intents/GroupChatJoinDialog.tsx:136
-msgid "You have been removed from this group."
-msgstr "You have been removed from this group."
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr "You have been previously removed from this group and can’t join it using this link."
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
@@ -13464,7 +13576,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1297
+#: src/view/com/composer/Composer.tsx:1366
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13534,7 +13646,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:464
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13552,7 +13664,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:263
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13567,7 +13679,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr ""
@@ -13661,7 +13773,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr ""
-#: src/view/com/composer/Composer.tsx:576
+#: src/view/com/composer/Composer.tsx:635
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13817,7 +13929,7 @@ msgstr ""
msgid "Your muted words"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:189
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
@@ -13829,11 +13941,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1028
+#: src/view/com/composer/Composer.tsx:1097
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1025
+#: src/view/com/composer/Composer.tsx:1094
msgid "Your posts were sent"
msgstr ""
@@ -13854,7 +13966,7 @@ msgstr ""
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:1027
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your reply was sent"
msgstr ""
@@ -13867,7 +13979,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1401
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
From d3f073b3d29df83cc288ea6bb4ec0e24e22c87b3 Mon Sep 17 00:00:00 2001
From: Samuel Newman
Date: Fri, 5 Jun 2026 16:35:06 +0300
Subject: [PATCH 021/165] [Chat] Request screen tweaks (#10747)
---
src/screens/Messages/Inbox.tsx | 45 ++-----------------
.../Messages/components/ChatListItem.tsx | 18 ++++----
2 files changed, 12 insertions(+), 51 deletions(-)
diff --git a/src/screens/Messages/Inbox.tsx b/src/screens/Messages/Inbox.tsx
index 55d3b0f4d7..59ca05bdba 100644
--- a/src/screens/Messages/Inbox.tsx
+++ b/src/screens/Messages/Inbox.tsx
@@ -26,10 +26,9 @@ import {useLeftConvos} from '#/state/queries/messages/leave-conversation'
import {useListConvosQuery} from '#/state/queries/messages/list-conversations'
import {useUpdateAllRead} from '#/state/queries/messages/update-all-read'
import {EmptyState} from '#/view/com/util/EmptyState'
-import {FAB} from '#/view/com/util/fab/FAB'
import {List} from '#/view/com/util/List'
import {ChatListLoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder'
-import {atoms as a, useBreakpoints, useTheme, web} from '#/alf'
+import {atoms as a, useTheme, web} from '#/alf'
import {AgeRestrictedScreen} from '#/components/ageAssurance/AgeRestrictedScreen'
import {useAgeAssuranceCopy} from '#/components/ageAssurance/useAgeAssuranceCopy'
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
@@ -62,8 +61,6 @@ export function MessagesInboxScreen(props: Props) {
}
export function MessagesInboxScreenInner({}: Props) {
- const {gtTablet} = useBreakpoints()
-
const listConvosQuery = useListConvosQuery({status: 'request'})
const {data} = listConvosQuery
@@ -94,21 +91,16 @@ export function MessagesInboxScreenInner({}: Props) {
-
+
Chat requests
- {hasUnreadConvos && gtTablet ? (
-
- ) : (
-
- )}
+ {hasUnreadConvos ? : }
)
@@ -117,14 +109,12 @@ export function MessagesInboxScreenInner({}: Props) {
function RequestList({
listConvosQuery,
conversations,
- hasUnreadConvos,
}: {
listConvosQuery: UseInfiniteQueryResult<
InfiniteData,
Error
>
conversations: ChatBskyConvoDefs.ConvoView[]
- hasUnreadConvos: boolean
}) {
const {t: l} = useLingui()
const t = useTheme()
@@ -285,7 +275,6 @@ function RequestList({
desktopFixedHeight
sideBorders={false}
/>
- {hasUnreadConvos && }
>
)
}
@@ -298,34 +287,6 @@ function renderItem({item}: {item: ChatBskyConvoDefs.ConvoView}) {
return
}
-function MarkAllReadFAB() {
- const {t: l} = useLingui()
- const t = useTheme()
- const {mutate: markAllRead} = useUpdateAllRead('request', {
- onMutate: () => {
- Toast.show(l`Marked all as read`, {
- type: 'success',
- })
- },
- onError: () => {
- Toast.show(l`Failed to mark all requests as read`, {
- type: 'error',
- })
- },
- })
-
- return (
- markAllRead()}
- icon={}
- accessibilityRole="button"
- accessibilityLabel={l`Mark all as read`}
- accessibilityHint=""
- />
- )
-}
-
function MarkAsReadHeaderButton() {
const {t: l} = useLingui()
const {mutate: markAllRead} = useUpdateAllRead('request', {
diff --git a/src/screens/Messages/components/ChatListItem.tsx b/src/screens/Messages/components/ChatListItem.tsx
index e8c0b9cc68..142ca4a971 100644
--- a/src/screens/Messages/components/ChatListItem.tsx
+++ b/src/screens/Messages/components/ChatListItem.tsx
@@ -122,7 +122,7 @@ function DirectChatItem({
}) {
const {t: l} = useLingui()
const profile = useProfileShadow(convo.primaryMember)
- const {isWithinSplitView} = useIsWithinSplitView()
+ const {isWithinLeftPanel} = useIsWithinSplitView()
const moderation = useMemo(
() => moderateProfile(profile, moderationOpts),
@@ -140,7 +140,7 @@ function DirectChatItem({
avatar={
}
@@ -161,7 +161,7 @@ function DirectChatItem({
isBlockedAccount={moderation.blocked}
showProfileBadges
postAlerts={
- isWithinSplitView ? null : (
+ isWithinLeftPanel ? null : (
@@ -205,7 +205,7 @@ function GroupChatItem({
avatar={
}
@@ -278,7 +278,7 @@ function BaseChatItem({
const leaveConvoControl = useDialogControl()
const {mutate: markAsRead} = useMarkAsReadMutation()
const {gtMobile} = useBreakpoints()
- const {isWithinSplitView} = useIsWithinSplitView()
+ const {isWithinLeftPanel} = useIsWithinSplitView()
const playHaptic = useHaptics()
const queryClient = useQueryClient()
@@ -458,7 +458,7 @@ function BaseChatItem({
leftFirst: deleteAction,
}
- const avatarSize = isWithinSplitView ? 48 : 52
+ const avatarSize = isWithinLeftPanel ? 48 : 52
return (
@@ -469,7 +469,7 @@ function BaseChatItem({
// @ts-expect-error web only
onFocus={onFocus}
onBlur={onMouseLeave}
- style={[a.relative, t.atoms.bg, isWithinSplitView && a.mx_sm]}>
+ style={[a.relative, t.atoms.bg, isWithinLeftPanel && a.mx_sm]}>
Date: Fri, 5 Jun 2026 16:38:23 +0300
Subject: [PATCH 022/165] [Chat] Fix stale reactions dialog after removing a
reaction (#10743)
Co-authored-by: Claude Opus 4.8 (1M context)
---
src/components/dms/MessageOverlays.tsx | 20 ++++++++++++++++++--
1 file changed, 18 insertions(+), 2 deletions(-)
diff --git a/src/components/dms/MessageOverlays.tsx b/src/components/dms/MessageOverlays.tsx
index 41228f2899..2384aad88d 100644
--- a/src/components/dms/MessageOverlays.tsx
+++ b/src/components/dms/MessageOverlays.tsx
@@ -125,6 +125,22 @@ export function MessageOverlays({children}: {children: React.ReactNode}) {
[openDeleteMessage, openReportMessage, openReactions],
)
+ // `reactionsTarget` is a snapshot from when the dialog was opened. Read the
+ // live message out of the convo items so optimistic reaction changes (e.g.
+ // "Tap to remove") are reflected in the dialog without closing it first.
+ const reactionsMessage = useMemo(() => {
+ if (!reactionsTarget) return null
+ for (const item of convo.items) {
+ if (
+ (item.type === 'message' || item.type === 'pending-message') &&
+ item.message.id === reactionsTarget.id
+ ) {
+ return item.message
+ }
+ }
+ return reactionsTarget
+ }, [convo.items, reactionsTarget])
+
const reportSubject = reportTarget
? ({
view: 'message',
@@ -153,11 +169,11 @@ export function MessageOverlays({children}: {children: React.ReactNode}) {
onClose={() => setAfterReportTarget(null)}
/>
)}
- {reactionsTarget && (
+ {reactionsMessage && (
setReactionsTarget(null)}
/>
)}
From f81bb6f4942f6321837e5987d5c1dac51666eb35 Mon Sep 17 00:00:00 2001
From: Samuel Newman
Date: Fri, 5 Jun 2026 16:38:48 +0300
Subject: [PATCH 023/165] [Chat] Fix navigation stacking on messages links in
split view (#10741)
Co-authored-by: Claude Opus 4.8 (1M context)
---
src/screens/Messages/ChatList.tsx | 8 ++++++++
src/screens/Messages/components/ChatListItem.tsx | 3 +++
src/screens/Messages/components/InboxRequests.tsx | 4 ++++
3 files changed, 15 insertions(+)
diff --git a/src/screens/Messages/ChatList.tsx b/src/screens/Messages/ChatList.tsx
index 83c4b0c004..387fcd2bd1 100644
--- a/src/screens/Messages/ChatList.tsx
+++ b/src/screens/Messages/ChatList.tsx
@@ -451,6 +451,12 @@ export function Header({
const {gtMobile} = useBreakpoints()
const requireEmailVerification = useRequireEmailVerification()
const leftConvos = useLeftConvos()
+ const {isWithinSplitView} = useIsWithinSplitView()
+
+ // In split view, the left column (and this header) stays mounted while the
+ // right column shows the selected route. Pushing would stack duplicate routes
+ // on repeated clicks, so navigate instead to dedupe by route + params.
+ const action = isWithinSplitView ? 'navigate' : 'push'
const {data: unreadInboxData, hasNextPage: hasMoreRequests} =
useListConvosQuery({
@@ -494,9 +500,11 @@ export function Header({
count={inboxAllConvos.length}
more={hasMoreRequests}
variant="solid"
+ action={action}
/>
From 7d4d7642fdcfe684076dbb4d13f48e36ac470071 Mon Sep 17 00:00:00 2001
From: Samuel Newman
Date: Fri, 5 Jun 2026 16:39:23 +0300
Subject: [PATCH 024/165] [Chat] Sync single-convo cache on chat lock firehose
events (#10746)
Co-authored-by: Claude Opus 4.8 (1M context)
---
.../queries/messages/list-conversations.tsx | 63 +++++--------------
1 file changed, 15 insertions(+), 48 deletions(-)
diff --git a/src/state/queries/messages/list-conversations.tsx b/src/state/queries/messages/list-conversations.tsx
index f026e57d33..dadf30bcdf 100644
--- a/src/state/queries/messages/list-conversations.tsx
+++ b/src/state/queries/messages/list-conversations.tsx
@@ -418,67 +418,34 @@ export function ListConvosProviderInner({
})),
)
} else if (ChatBskyConvoDefs.isLogLockConvo(log)) {
- queryClient.setQueriesData(
- {queryKey: [RQKEY_ROOT]},
- (old?: ConvoListQueryData) =>
- optimisticUpdate(log.convoId, old, convo => {
- if (ChatBskyConvoDefs.isGroupConvo(convo.kind)) {
- return {
- ...convo,
- kind: {
- ...convo.kind,
- lockStatus: 'locked',
- },
- rev: log.rev,
- }
- }
- return {
+ mutateConvoView(log.convoId, convo =>
+ ChatBskyConvoDefs.isGroupConvo(convo.kind)
+ ? {
...convo,
+ kind: {...convo.kind, lockStatus: 'locked'},
rev: log.rev,
}
- }),
+ : {...convo, rev: log.rev},
)
} else if (ChatBskyConvoDefs.isLogUnlockConvo(log)) {
- queryClient.setQueriesData(
- {queryKey: [RQKEY_ROOT]},
- (old?: ConvoListQueryData) =>
- optimisticUpdate(log.convoId, old, convo => {
- if (ChatBskyConvoDefs.isGroupConvo(convo.kind)) {
- return {
- ...convo,
- kind: {
- ...convo.kind,
- lockStatus: 'unlocked',
- },
- rev: log.rev,
- }
- }
- return {
+ mutateConvoView(log.convoId, convo =>
+ ChatBskyConvoDefs.isGroupConvo(convo.kind)
+ ? {
...convo,
+ kind: {...convo.kind, lockStatus: 'unlocked'},
rev: log.rev,
}
- }),
+ : {...convo, rev: log.rev},
)
} else if (ChatBskyConvoDefs.isLogLockConvoPermanently(log)) {
- queryClient.setQueriesData(
- {queryKey: [RQKEY_ROOT]},
- (old?: ConvoListQueryData) =>
- optimisticUpdate(log.convoId, old, convo => {
- if (ChatBskyConvoDefs.isGroupConvo(convo.kind)) {
- return {
- ...convo,
- kind: {
- ...convo.kind,
- lockStatus: 'locked-permanently',
- },
- rev: log.rev,
- }
- }
- return {
+ mutateConvoView(log.convoId, convo =>
+ ChatBskyConvoDefs.isGroupConvo(convo.kind)
+ ? {
...convo,
+ kind: {...convo.kind, lockStatus: 'locked-permanently'},
rev: log.rev,
}
- }),
+ : {...convo, rev: log.rev},
)
} else if (
ChatBskyConvoDefs.isLogCreateJoinLink(log) ||
From 67ed59fbcd85809ac135ae32ec3fa970d6a829ee Mon Sep 17 00:00:00 2001
From: Samuel Newman
Date: Fri, 5 Jun 2026 18:10:14 +0300
Subject: [PATCH 025/165] Align group invite settings with eligibility logic
(#10748)
Co-authored-by: Claude Opus 4.8 (1M context)
---
src/components/dms/util.ts | 16 +++++++++++
src/screens/Messages/Settings.tsx | 6 ++---
.../Messages/components/ChatListItem.tsx | 2 +-
.../queries/messages/actor-declaration.ts | 27 +++++++++++++++----
4 files changed, 41 insertions(+), 10 deletions(-)
diff --git a/src/components/dms/util.ts b/src/components/dms/util.ts
index 89b9c5b01f..7fe5f91dc3 100644
--- a/src/components/dms/util.ts
+++ b/src/components/dms/util.ts
@@ -47,6 +47,22 @@ export function canBeAddedToGroup(profile: bsky.profile.AnyProfileView) {
}
}
+/**
+ * Resolves the effective `allowGroupInvites` value for a chat declaration.
+ * When unset, group invites follow the general DM preference
+ * (`allowIncoming`), which itself defaults to `following`. This mirrors the
+ * `undefined` fallthrough in canBeAddedToGroup, and is the single source of
+ * truth for both displaying and persisting the setting.
+ */
+export function resolveAllowGroupInvites(
+ chat: {allowIncoming?: string; allowGroupInvites?: string} | undefined,
+): 'all' | 'none' | 'following' {
+ return (chat?.allowGroupInvites ?? chat?.allowIncoming ?? 'following') as
+ | 'all'
+ | 'none'
+ | 'following'
+}
+
export function localDateString(date: Date) {
// can't use toISOString because it should be in local time
const mm = date.getMonth()
diff --git a/src/screens/Messages/Settings.tsx b/src/screens/Messages/Settings.tsx
index f49311b0da..91d9f879d5 100644
--- a/src/screens/Messages/Settings.tsx
+++ b/src/screens/Messages/Settings.tsx
@@ -13,6 +13,7 @@ import {AgeRestrictedScreen} from '#/components/ageAssurance/AgeRestrictedScreen
import {useAgeAssuranceCopy} from '#/components/ageAssurance/useAgeAssuranceCopy'
import * as Dialog from '#/components/Dialog'
import {Divider} from '#/components/Divider'
+import {resolveAllowGroupInvites} from '#/components/dms/util'
import * as Toggle from '#/components/forms/Toggle'
import {Bell_Stroke2_Corner0_Rounded as BellIcon} from '#/components/icons/Bell'
import {Car_Stroke2_Corner2_Rounded as CarIcon} from '#/components/icons/Car'
@@ -199,10 +200,7 @@ export function MessagesSettingsScreenInner({}: Props) {
{allowGroupInvitesFromOptions.map(option => (
diff --git a/src/screens/Messages/components/ChatListItem.tsx b/src/screens/Messages/components/ChatListItem.tsx
index 1f691290bf..b6d237f17d 100644
--- a/src/screens/Messages/components/ChatListItem.tsx
+++ b/src/screens/Messages/components/ChatListItem.tsx
@@ -483,7 +483,7 @@ function BaseChatItem({
to={`/messages/${convo.view.id}`}
// In split view, this list stays mounted alongside the open convo,
// so push would stack duplicate routes on repeated clicks.
- action={isWithinSplitView ? 'navigate' : 'push'}
+ action={isWithinLeftPanel ? 'navigate' : 'push'}
label={title}
accessibilityHint={accessibilityHint}
accessibilityActions={
diff --git a/src/state/queries/messages/actor-declaration.ts b/src/state/queries/messages/actor-declaration.ts
index 53b493ab6a..f6cd2d51d5 100644
--- a/src/state/queries/messages/actor-declaration.ts
+++ b/src/state/queries/messages/actor-declaration.ts
@@ -7,6 +7,7 @@ import {useMutation, useQueryClient} from '@tanstack/react-query'
import {logger} from '#/logger'
import {useAgent, useSession} from '#/state/session'
+import {resolveAllowGroupInvites} from '#/components/dms/util'
import {RQKEY as PROFILE_RKEY} from '../profile'
export function useUpdateActorDeclaration({
@@ -34,8 +35,12 @@ export function useUpdateActorDeclaration({
update.allowIncoming ??
current?.associated?.chat?.allowIncoming ??
'following'
- const allowGroupInvites =
- update.allowGroupInvites ?? current?.associated?.chat?.allowGroupInvites
+ const allowGroupInvites = resolveAllowGroupInvites({
+ allowIncoming,
+ allowGroupInvites:
+ update.allowGroupInvites ??
+ current?.associated?.chat?.allowGroupInvites,
+ })
const result = await agent.com.atproto.repo.putRecord({
repo: currentAccount.did,
collection: 'chat.bsky.actor.declaration',
@@ -43,7 +48,7 @@ export function useUpdateActorDeclaration({
record: {
$type: 'chat.bsky.actor.declaration',
allowIncoming,
- ...(allowGroupInvites && {allowGroupInvites}),
+ allowGroupInvites,
},
})
return result
@@ -54,14 +59,26 @@ export function useUpdateActorDeclaration({
PROFILE_RKEY(currentAccount?.did),
(old?: AppBskyActorDefs.ProfileViewDetailed) => {
if (!old) return old
+ const allowIncoming =
+ update.allowIncoming ??
+ old.associated?.chat?.allowIncoming ??
+ 'following'
+ // resolve the same concrete value the server will receive, so
+ // optimistic cache and persisted record stay aligned
+ const allowGroupInvites = resolveAllowGroupInvites({
+ allowIncoming,
+ allowGroupInvites:
+ update.allowGroupInvites ??
+ old.associated?.chat?.allowGroupInvites,
+ })
return {
...old,
associated: {
...old.associated,
chat: {
- allowIncoming: 'following',
...old.associated?.chat,
- ...update,
+ allowIncoming,
+ allowGroupInvites,
},
},
} satisfies AppBskyActorDefs.ProfileViewDetailed
From f8aae4a192eb81cbe551e0bf10e3f045e114eaee Mon Sep 17 00:00:00 2001
From: Samuel Newman
Date: Fri, 5 Jun 2026 18:18:27 +0300
Subject: [PATCH 026/165] [Chat] Disable font scaling on fixed-height chat
invite cards (#10744)
Co-authored-by: Claude Opus 4.8 (1M context)
---
src/components/Post/Embed/ChatInviteEmbed.tsx | 2 +-
.../Post/Embed/JoinRequestEmbed.tsx | 5 ++-
src/components/ProfileBadges.tsx | 12 ++++---
src/components/Typography.tsx | 4 ++-
src/components/dms/ChatInvite/Card.tsx | 32 ++++++++++++-------
src/components/dms/ChatInvite/Context.tsx | 2 ++
src/components/dms/ChatInvite/JoinButton.tsx | 4 +--
src/components/dms/ChatInvite/Root.tsx | 4 ++-
src/components/dms/MessageItemInviteEmbed.tsx | 3 +-
.../Messages/components/MessageInputEmbed.tsx | 2 +-
10 files changed, 46 insertions(+), 24 deletions(-)
diff --git a/src/components/Post/Embed/ChatInviteEmbed.tsx b/src/components/Post/Embed/ChatInviteEmbed.tsx
index f50085426f..387c3cfd9c 100644
--- a/src/components/Post/Embed/ChatInviteEmbed.tsx
+++ b/src/components/Post/Embed/ChatInviteEmbed.tsx
@@ -23,7 +23,7 @@ export function ChatInviteEmbed({
style?: StyleProp
}) {
return (
-
+
)
diff --git a/src/components/Post/Embed/JoinRequestEmbed.tsx b/src/components/Post/Embed/JoinRequestEmbed.tsx
index db7ec589bb..e020bb9333 100644
--- a/src/components/Post/Embed/JoinRequestEmbed.tsx
+++ b/src/components/Post/Embed/JoinRequestEmbed.tsx
@@ -31,7 +31,10 @@ export function JoinRequestEmbed({
if (!resolvedCode) return null
return (
-
+
)
diff --git a/src/components/ProfileBadges.tsx b/src/components/ProfileBadges.tsx
index 22c682bbba..cb257e78b6 100644
--- a/src/components/ProfileBadges.tsx
+++ b/src/components/ProfileBadges.tsx
@@ -31,10 +31,12 @@ export function ProfileBadges({
interactive = false,
size,
style,
+ allowFontScaling = true,
}: ViewStyleProp & {
profile: bsky.profile.AnyProfileView
interactive?: boolean
size: Size
+ allowFontScaling?: boolean
}) {
const shadowed = useProfileShadow(profile)
const verification = useSimpleVerificationState({profile})
@@ -48,10 +50,12 @@ export function ProfileBadges({
const isOnTheSmallSide = size === 'xs' || size === 'sm'
- const verificationIconWidth =
- verificationIconSizes[size] * nativeScaleMultiplier * alfScaleMultiplier
- const botIconWidth =
- botIconSizes[size] * nativeScaleMultiplier * alfScaleMultiplier
+ const scaleMultiplier = allowFontScaling
+ ? nativeScaleMultiplier * alfScaleMultiplier
+ : 1
+
+ const verificationIconWidth = verificationIconSizes[size] * scaleMultiplier
+ const botIconWidth = botIconSizes[size] * scaleMultiplier
return (
+ numberOfLines={1}
+ allowFontScaling={!hasFixedHeight}>
{preview.name}
+ numberOfLines={1}
+ allowFontScaling={!hasFixedHeight}>
Group chat
+ numberOfLines={1}
+ allowFontScaling={!hasFixedHeight}>
{preview.memberCount}/{preview.memberLimit}{' '}
+ numberOfLines={1}
+ allowFontScaling={!hasFixedHeight}>
- By {ownerDisplayName}
+ By{' '}
+
+ {ownerDisplayName}
+
-
+
+ numberOfLines={1}
+ allowFontScaling={!hasFixedHeight}>
{ownerHandle}
diff --git a/src/components/dms/ChatInvite/Context.tsx b/src/components/dms/ChatInvite/Context.tsx
index 53c7a6cc22..cedcfd8d88 100644
--- a/src/components/dms/ChatInvite/Context.tsx
+++ b/src/components/dms/ChatInvite/Context.tsx
@@ -32,6 +32,8 @@ export type ChatInviteContextValue = {
* preview to act on.
*/
action: ChatInviteAction | undefined
+ /** Whether the invite is rendered inside a fixed-height container; when true, text inside disables font scaling so the card doesn't overflow. */
+ hasFixedHeight: boolean
}
const ChatInviteContext = createContext(null)
diff --git a/src/components/dms/ChatInvite/JoinButton.tsx b/src/components/dms/ChatInvite/JoinButton.tsx
index 0036391b0e..6f3b8c654d 100644
--- a/src/components/dms/ChatInvite/JoinButton.tsx
+++ b/src/components/dms/ChatInvite/JoinButton.tsx
@@ -17,7 +17,7 @@ export function JoinButton({
onPress?: () => void
style?: StyleProp
}) {
- const {action} = useChatInvite()
+ const {action, hasFixedHeight} = useChatInvite()
if (!action) return null
@@ -35,7 +35,7 @@ export function JoinButton({
disabled={action.disabled}
style={[a.w_full, style]}>
{action.side === 'left' && }
- {action.label}
+ {action.label}
{action.side === 'right' && }
)
diff --git a/src/components/dms/ChatInvite/Root.tsx b/src/components/dms/ChatInvite/Root.tsx
index a9f2c54e3a..a2cfc558ea 100644
--- a/src/components/dms/ChatInvite/Root.tsx
+++ b/src/components/dms/ChatInvite/Root.tsx
@@ -30,6 +30,7 @@ export function Root({
code,
initialPreview,
currentConvoId,
+ hasFixedHeight,
children,
}: {
code: string
@@ -40,6 +41,7 @@ export function Root({
* open/join (you're already here).
*/
currentConvoId?: string
+ hasFixedHeight: boolean
children: React.ReactNode
}) {
const {hasSession} = useSession()
@@ -137,7 +139,7 @@ export function Root({
return (
+ value={{code, loading, error: !!error, preview, action, hasFixedHeight}}>
{children}
)
diff --git a/src/components/dms/MessageItemInviteEmbed.tsx b/src/components/dms/MessageItemInviteEmbed.tsx
index 43fd944822..d85e7fd08a 100644
--- a/src/components/dms/MessageItemInviteEmbed.tsx
+++ b/src/components/dms/MessageItemInviteEmbed.tsx
@@ -74,7 +74,8 @@ let MessageItemInviteEmbed = ({
+ currentConvoId={convo.convo.view.id}
+ hasFixedHeight={false}>
diff --git a/src/screens/Messages/components/MessageInputEmbed.tsx b/src/screens/Messages/components/MessageInputEmbed.tsx
index a73a6564fb..21503ce8fa 100644
--- a/src/screens/Messages/components/MessageInputEmbed.tsx
+++ b/src/screens/Messages/components/MessageInputEmbed.tsx
@@ -273,7 +273,7 @@ function MessageInputInviteEmbed({
const {t: l} = useLingui()
return (
-
+
Date: Fri, 5 Jun 2026 12:50:16 -0500
Subject: [PATCH 027/165] Fire embed:standardSite:view from feed viewability,
not embed mount (#10736)
Co-authored-by: Claude Opus 4.8
---
.../Post/Embed/StandardSiteEmbed/index.tsx | 7 -------
src/view/com/posts/PostFeed.tsx | 13 +++++++++++++
2 files changed, 13 insertions(+), 7 deletions(-)
diff --git a/src/components/Post/Embed/StandardSiteEmbed/index.tsx b/src/components/Post/Embed/StandardSiteEmbed/index.tsx
index 2c38f3806f..2bee7da91e 100644
--- a/src/components/Post/Embed/StandardSiteEmbed/index.tsx
+++ b/src/components/Post/Embed/StandardSiteEmbed/index.tsx
@@ -5,7 +5,6 @@ import {plural} from '@lingui/core/macro'
import {useLingui} from '@lingui/react/macro'
import {useHaptics} from '#/lib/haptics'
-import {useCallOnce} from '#/lib/once'
import {shareUrl} from '#/lib/sharing'
import {niceDate} from '#/lib/strings/time'
import {toNiceDomain} from '#/lib/strings/url-helpers'
@@ -104,12 +103,6 @@ export const StandardSiteEmbed = ({
}
}
- useCallOnce(() => {
- if (!preview) {
- ax.metric('embed:standardSite:view', {url: view.uri})
- }
- })()
-
if (isStandardPublication) {
return (
>(new Set())
const seenPostUrisRef = useRef>(new Set())
+ const seenStandardSiteUrisRef = useRef>(new Set())
// Helper to calculate position in feed (count only root posts, not interstitials or thread replies)
const getPostPosition = useNonReactiveCallback(
@@ -974,6 +977,16 @@ let PostFeed = ({
})
}
}
+
+ // Standard site embed view tracking
+ if (
+ AppBskyEmbedExternal.isView(post.embed) &&
+ isStandardSiteEmbed(post.embed.external) &&
+ !seenStandardSiteUrisRef.current.has(post.embed.external.uri)
+ ) {
+ seenStandardSiteUrisRef.current.add(post.embed.external.uri)
+ ax.metric('embed:standardSite:view', {url: post.embed.external.uri})
+ }
} else if (item.type === 'videoGridRow') {
// Track each video in the grid row
for (let i = 0; i < item.items.length; i++) {
From a5aa985b33c92c5b73505fda677a76e04f9186bf Mon Sep 17 00:00:00 2001
From: Samuel Newman
Date: Fri, 5 Jun 2026 22:48:34 +0300
Subject: [PATCH 028/165] Fix feed scroll reset on device rotation (#10737)
---
src/view/com/util/List.tsx | 3 ---
1 file changed, 3 deletions(-)
diff --git a/src/view/com/util/List.tsx b/src/view/com/util/List.tsx
index cde8d50c48..f8a537a657 100644
--- a/src/view/com/util/List.tsx
+++ b/src/view/com/util/List.tsx
@@ -147,12 +147,10 @@ let List = forwardRef(
)
}
- let contentOffset
if (headerOffset != null) {
style = addStyle(style, {
paddingTop: headerOffset,
})
- contentOffset = {x: 0, y: headerOffset * -1}
}
return (
@@ -170,7 +168,6 @@ let List = forwardRef(
...props.scrollIndicatorInsets,
}}
indicatorStyle={t.scheme === 'dark' ? 'white' : 'black'}
- contentOffset={contentOffset}
refreshControl={refreshControl}
onScroll={scrollHandler}
scrollsToTop={scrollsToTop}
From 6d468c8ca47d9bbace760526c5ed82bac41d511c Mon Sep 17 00:00:00 2001
From: Samuel Newman
Date: Fri, 5 Jun 2026 22:49:02 +0300
Subject: [PATCH 029/165] [CI] Remove `Wandalen/wretry.action`, call pnpm
install directly (#10745)
---
.github/workflows/golang-test-lint.yml | 2 ++
.github/workflows/lint.yml | 12 ++----------
.../workflows/nightly-update-source-languages.yaml | 6 +-----
.github/workflows/verify-pnpm-lock.yml | 8 ++------
4 files changed, 7 insertions(+), 21 deletions(-)
diff --git a/.github/workflows/golang-test-lint.yml b/.github/workflows/golang-test-lint.yml
index 6531694d5c..2e7388bbd5 100644
--- a/.github/workflows/golang-test-lint.yml
+++ b/.github/workflows/golang-test-lint.yml
@@ -20,6 +20,7 @@ jobs:
uses: actions/setup-go@v6
with:
go-version-file: bskyweb/go.mod
+ cache-dependency-path: bskyweb/go.sum
- name: Dummy Static Files
run: touch bskyweb/static/js/blah.js && touch bskyweb/static/css/blah.txt && touch bskyweb/static/media/blah.txt
- name: Check
@@ -37,6 +38,7 @@ jobs:
uses: actions/setup-go@v6
with:
go-version-file: bskyweb/go.mod
+ cache-dependency-path: bskyweb/go.sum
- name: Dummy Static Files
run: touch bskyweb/static/js/blah.js && touch bskyweb/static/css/blah.txt && touch bskyweb/static/media/blah.txt
- name: Lint
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index aa6c92765d..2fb464a92a 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -57,11 +57,7 @@ jobs:
node-version-file: package.json
cache: pnpm
- name: pnpm install
- uses: Wandalen/wretry.action@master
- with:
- command: pnpm install --frozen-lockfile
- attempt_limit: 3
- attempt_delay: 2000
+ run: pnpm install --frozen-lockfile
- name: Check & compile i18n
run: pnpm intl:build
- name: Lint checks
@@ -99,11 +95,7 @@ jobs:
node-version-file: package.json
cache: pnpm
- name: pnpm install
- uses: Wandalen/wretry.action@master
- with:
- command: pnpm install --frozen-lockfile
- attempt_limit: 3
- attempt_delay: 2000
+ run: pnpm install --frozen-lockfile
- name: Check & compile i18n
run: pnpm intl:build
- name: Run tests
diff --git a/.github/workflows/nightly-update-source-languages.yaml b/.github/workflows/nightly-update-source-languages.yaml
index 4b14c65c69..2a6ec26ac4 100644
--- a/.github/workflows/nightly-update-source-languages.yaml
+++ b/.github/workflows/nightly-update-source-languages.yaml
@@ -26,11 +26,7 @@ jobs:
node-version-file: package.json
cache: pnpm
- name: pnpm install
- uses: Wandalen/wretry.action@master
- with:
- command: pnpm install --frozen-lockfile
- attempt_limit: 3
- attempt_delay: 2000
+ run: pnpm install --frozen-lockfile
- name: Extract language strings
run: pnpm intl:extract
- name: Create commit
diff --git a/.github/workflows/verify-pnpm-lock.yml b/.github/workflows/verify-pnpm-lock.yml
index 2d10b11a23..f1b61e95e7 100644
--- a/.github/workflows/verify-pnpm-lock.yml
+++ b/.github/workflows/verify-pnpm-lock.yml
@@ -34,12 +34,8 @@ jobs:
run: git show "origin/$BASE_REF:pnpm-lock.yaml" > pnpm-lock.yaml
- name: pnpm install
- uses: Wandalen/wretry.action@master
- with:
- # Fine to skip scripts since we don't run any code
- command: pnpm clean && pnpm install --ignore-scripts --no-frozen-lockfile
- attempt_limit: 3
- attempt_delay: 2000
+ # Fine to skip scripts since we don't run any code
+ run: pnpm clean && pnpm install --ignore-scripts --no-frozen-lockfile
- name: Verify pnpm-lock.yaml
run: |
From 32c0c0ec838367b5ddd00df97b0102fc36ea6a29 Mon Sep 17 00:00:00 2001
From: Samuel Newman
Date: Fri, 5 Jun 2026 23:08:39 +0300
Subject: [PATCH 030/165] "Follows You" string dedupe (#10751)
---
src/components/Pills.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/Pills.tsx b/src/components/Pills.tsx
index 36bcb3370e..37e940d206 100644
--- a/src/components/Pills.tsx
+++ b/src/components/Pills.tsx
@@ -172,7 +172,7 @@ export function FollowsYou({size = 'sm'}: CommonProps) {
return (
- Follows You
+ Follows you
)
From 2e9bfd363c1f6cf6980361a93c1e4aec8dfa7234 Mon Sep 17 00:00:00 2001
From: Samuel Newman
Date: Fri, 5 Jun 2026 23:09:55 +0300
Subject: [PATCH 031/165] [Chat] Put `pointer_events_none` on chat bubbles in
ChatListItem (#10752)
---
src/screens/Messages/components/ChatListItem.tsx | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/screens/Messages/components/ChatListItem.tsx b/src/screens/Messages/components/ChatListItem.tsx
index b6d237f17d..70390606fc 100644
--- a/src/screens/Messages/components/ChatListItem.tsx
+++ b/src/screens/Messages/components/ChatListItem.tsx
@@ -475,6 +475,7 @@ function BaseChatItem({
a.z_10,
a.absolute,
{top: tokens.space.md, left: tokens.space.lg},
+ isGroupConvo && a.pointer_events_none,
]}>
{avatar}
From b236f274c3524a0e091a12741b6b3855ae9283ef Mon Sep 17 00:00:00 2001
From: Samuel Newman
Date: Fri, 5 Jun 2026 23:17:29 +0300
Subject: [PATCH 032/165] [Chat] Enforce limits for group size (#10753)
---
.../dialogs/SearchablePeopleList.tsx | 1 -
src/components/dms/AddMembersFlow.tsx | 11 ++++
src/components/dms/InitiateChatFlow.tsx | 34 ++++++++++-
.../dms/components/GroupChatProfileCard.tsx | 58 +++++++++++--------
src/lib/constants.ts | 2 +
.../Messages/ConversationSettings/prompts.tsx | 35 +++++++++--
6 files changed, 109 insertions(+), 32 deletions(-)
diff --git a/src/components/dialogs/SearchablePeopleList.tsx b/src/components/dialogs/SearchablePeopleList.tsx
index 614234c17f..cc07900bea 100644
--- a/src/components/dialogs/SearchablePeopleList.tsx
+++ b/src/components/dialogs/SearchablePeopleList.tsx
@@ -667,7 +667,6 @@ function SearchInput({
/>
-
+
+ {groupNameTooLong ? (
+
+
+ Group name is too long. The maximum number of characters
+ is {MAX_GROUP_NAME_GRAPHEME_LENGTH}.
+
+
+ ) : null}
) : (
-
-
-
-
-
- {enabled ? (
-
- ) : (
-
- {handle} can’t be added
-
- )}
+ {({disabled, selected}) => (
+ <>
+
+
+
+
+
+ {enabled ? (
+
+ ) : (
+
+ {handle} can’t be added
+
+ )}
+
+
-
-
- {enabled ? : null}
+ {enabled ? : null}
+ >
+ )}
)
}
diff --git a/src/lib/constants.ts b/src/lib/constants.ts
index 13ae162a85..91d1319c6b 100644
--- a/src/lib/constants.ts
+++ b/src/lib/constants.ts
@@ -67,6 +67,8 @@ export const MAX_DRAFT_GRAPHEME_LENGTH = 1000
export const MAX_DM_GRAPHEME_LENGTH = 1000
+export const MAX_GROUP_NAME_GRAPHEME_LENGTH = 50
+
// Recommended is 100 per: https://www.w3.org/WAI/GL/WCAG20/tests/test3.html
// but increasing limit per user feedback
export const MAX_ALT_TEXT = 2000
diff --git a/src/screens/Messages/ConversationSettings/prompts.tsx b/src/screens/Messages/ConversationSettings/prompts.tsx
index f5b980b990..e8b594c0bd 100644
--- a/src/screens/Messages/ConversationSettings/prompts.tsx
+++ b/src/screens/Messages/ConversationSettings/prompts.tsx
@@ -1,10 +1,13 @@
import {View} from 'react-native'
import {Trans, useLingui} from '@lingui/react/macro'
-import {atoms as a} from '#/alf'
+import {MAX_GROUP_NAME_GRAPHEME_LENGTH} from '#/lib/constants'
+import {isOverMaxGraphemeCount} from '#/lib/strings/helpers'
+import {atoms as a, useTheme} from '#/alf'
import type * as Dialog from '#/components/Dialog'
import * as TextField from '#/components/forms/TextField'
import * as Prompt from '#/components/Prompt'
+import {Text} from '#/components/Typography'
export function EditNamePrompt({
control,
@@ -17,8 +20,14 @@ export function EditNamePrompt({
onChangeText: (value: string) => void
onConfirm: () => void
}) {
+ const t = useTheme()
const {t: l} = useLingui()
+ const nameTooLong = isOverMaxGraphemeCount({
+ text: value,
+ maxCount: MAX_GROUP_NAME_GRAPHEME_LENGTH,
+ })
+
return (
<>
@@ -27,7 +36,7 @@ export function EditNamePrompt({
Edit group name
-
+
+ {nameTooLong ? (
+
+
+ Group name is too long. The maximum number of characters is{' '}
+ {MAX_GROUP_NAME_GRAPHEME_LENGTH}.
+
+
+ ) : null}
-
+
>
From fb8316fd85d2d596266e0e1e7c47fa07823e4f98 Mon Sep 17 00:00:00 2001
From: Samuel Newman
Date: Sat, 6 Jun 2026 00:04:21 +0300
Subject: [PATCH 033/165] Fix external card long press on web (#10739)
---
eslint-suppressions.json | 5 --
.../Post/Embed/ExternalEmbed/index.tsx | 20 +++---
.../Post/Embed/StandardSiteEmbed/index.tsx | 66 ++++++++++---------
3 files changed, 47 insertions(+), 44 deletions(-)
diff --git a/eslint-suppressions.json b/eslint-suppressions.json
index b8e65eb265..1c4c89f381 100644
--- a/eslint-suppressions.json
+++ b/eslint-suppressions.json
@@ -261,11 +261,6 @@
"count": 1
}
},
- "src/components/Post/Embed/StandardSiteEmbed/index.tsx": {
- "@typescript-eslint/no-floating-promises": {
- "count": 3
- }
- },
"src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx": {
"@typescript-eslint/no-floating-promises": {
"count": 2
diff --git a/src/components/Post/Embed/ExternalEmbed/index.tsx b/src/components/Post/Embed/ExternalEmbed/index.tsx
index 472c403060..9a4f7e56bc 100644
--- a/src/components/Post/Embed/ExternalEmbed/index.tsx
+++ b/src/components/Post/Embed/ExternalEmbed/index.tsx
@@ -1,4 +1,4 @@
-import {useCallback, useMemo} from 'react'
+import {useMemo} from 'react'
import {type StyleProp, View, type ViewStyle} from 'react-native'
import {Image} from 'expo-image'
import {type AppBskyEmbedExternal} from '@atproto/api'
@@ -51,17 +51,19 @@ export const ExternalEmbed = ({
}, [link.uri, externalEmbedPrefs])
const hasMedia = Boolean(imageUri || embedPlayerParams)
- const onPress = useCallback(() => {
+ const onPress = () => {
playHaptic('Light')
onOpen?.()
- }, [playHaptic, onOpen])
+ }
- const onShareExternal = useCallback(() => {
- if (link.uri && IS_NATIVE) {
- playHaptic('Heavy')
- void shareUrl(link.uri)
- }
- }, [link.uri, playHaptic])
+ const onShareExternal = IS_NATIVE
+ ? () => {
+ if (link.uri) {
+ playHaptic('Heavy')
+ void shareUrl(link.uri)
+ }
+ }
+ : undefined
if (
embedPlayerParams?.source === 'tenor' ||
diff --git a/src/components/Post/Embed/StandardSiteEmbed/index.tsx b/src/components/Post/Embed/StandardSiteEmbed/index.tsx
index 2bee7da91e..b328bc38ff 100644
--- a/src/components/Post/Embed/StandardSiteEmbed/index.tsx
+++ b/src/components/Post/Embed/StandardSiteEmbed/index.tsx
@@ -79,13 +79,15 @@ export const StandardSiteEmbed = ({
onEmbedInteractionCallback?.()
ax.metric('embed:standardSite:article:press', {url: view.uri})
}
- const onLongPress = () => {
- if (view.uri && IS_NATIVE) {
- playHaptic('Heavy')
- shareUrl(view.uri)
- ax.metric('embed:standardSite:article:longPress', {url: view.uri})
- }
- }
+ const onLongPress = IS_NATIVE
+ ? () => {
+ if (view.uri) {
+ playHaptic('Heavy')
+ void shareUrl(view.uri)
+ ax.metric('embed:standardSite:article:longPress', {url: view.uri})
+ }
+ }
+ : undefined
const onPressPublication = () => {
playHaptic('Light')
onEmbedInteractionCallback?.()
@@ -93,15 +95,17 @@ export const StandardSiteEmbed = ({
url: view.source?.uri || '',
})
}
- const onLongPressPublication = () => {
- if (view.source?.uri && IS_NATIVE) {
- playHaptic('Heavy')
- shareUrl(view.source.uri)
- ax.metric('embed:standardSite:publication:longPress', {
- url: view.source.uri,
- })
- }
- }
+ const onLongPressPublication = IS_NATIVE
+ ? () => {
+ if (view.source?.uri) {
+ playHaptic('Heavy')
+ void shareUrl(view.source.uri)
+ ax.metric('embed:standardSite:publication:longPress', {
+ url: view.source.uri,
+ })
+ }
+ }
+ : undefined
if (isStandardPublication) {
return (
@@ -465,21 +469,23 @@ export function SubscribeButton({
}
}
- const onLongPress = () => {
- if (view.source?.uri && IS_NATIVE) {
- playHaptic('Heavy')
- shareUrl(view.source.uri)
- if (highlightedPublisher) {
- ax.metric('embed:standardSite:subscribe:longPress', {
- url: view.source?.uri || '',
- })
- } else {
- ax.metric('embed:standardSite:publicationCta:longPress', {
- url: view.source?.uri || '',
- })
+ const onLongPress = IS_NATIVE
+ ? () => {
+ if (view.source?.uri) {
+ playHaptic('Heavy')
+ void shareUrl(view.source.uri)
+ if (highlightedPublisher) {
+ ax.metric('embed:standardSite:subscribe:longPress', {
+ url: view.source?.uri || '',
+ })
+ } else {
+ ax.metric('embed:standardSite:publicationCta:longPress', {
+ url: view.source?.uri || '',
+ })
+ }
+ }
}
- }
- }
+ : undefined
const button = (
Date: Sat, 6 Jun 2026 00:13:26 +0300
Subject: [PATCH 034/165] Let specified facets take priority in feed
descriptions (#10740)
---
eslint-suppressions.json | 3 -
.../Profile/components/ProfileFeedHeader.tsx | 74 ++++++++-----------
src/state/queries/feed.ts | 28 +++++--
3 files changed, 50 insertions(+), 55 deletions(-)
diff --git a/eslint-suppressions.json b/eslint-suppressions.json
index 1c4c89f381..5bd3357d19 100644
--- a/eslint-suppressions.json
+++ b/eslint-suppressions.json
@@ -1346,9 +1346,6 @@
}
},
"src/screens/Profile/components/ProfileFeedHeader.tsx": {
- "@typescript-eslint/no-floating-promises": {
- "count": 1
- },
"@typescript-eslint/no-misused-promises": {
"count": 5
}
diff --git a/src/screens/Profile/components/ProfileFeedHeader.tsx b/src/screens/Profile/components/ProfileFeedHeader.tsx
index 6966fa6fe2..c640c84f33 100644
--- a/src/screens/Profile/components/ProfileFeedHeader.tsx
+++ b/src/screens/Profile/components/ProfileFeedHeader.tsx
@@ -1,9 +1,7 @@
import {useCallback, useMemo, useState} from 'react'
import {View} from 'react-native'
import {AtUri} from '@atproto/api'
-import {msg} from '@lingui/core/macro'
-import {useLingui} from '@lingui/react'
-import {Plural, Trans} from '@lingui/react/macro'
+import {Plural, Trans, useLingui} from '@lingui/react/macro'
import {useHaptics} from '#/lib/haptics'
import {makeCustomFeedLink, makeProfileLink} from '#/lib/routes/links'
@@ -26,7 +24,6 @@ import {atoms as a, useBreakpoints, useTheme, web} from '#/alf'
import {Button, ButtonIcon, ButtonText} from '#/components/Button'
import * as Dialog from '#/components/Dialog'
import {Divider} from '#/components/Divider'
-import {useRichText} from '#/components/hooks/useRichText'
import {ArrowOutOfBoxModified_Stroke2_Corner2_Rounded as Share} from '#/components/icons/ArrowOutOfBox'
import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo'
import {DotGrid3x1_Stroke2_Corner0_Rounded as Ellipsis} from '#/components/icons/DotGrid'
@@ -86,7 +83,7 @@ export function ProfileFeedHeaderSkeleton() {
export function ProfileFeedHeader({info}: {info: FeedSourceFeedInfo}) {
const t = useTheme()
- const {_, i18n} = useLingui()
+ const {t: l, i18n} = useLingui()
const ax = useAnalytics()
const {hasSession} = useSession()
const {gtMobile} = useBreakpoints()
@@ -121,7 +118,7 @@ export function ProfileFeedHeader({info}: {info: FeedSourceFeedInfo}) {
if (savedFeedConfig) {
await removeFeed(savedFeedConfig)
- Toast.show(_(msg`Removed from your feeds`))
+ Toast.show(l`Removed from your feeds`)
ax.metric('feed:unsave', {feedUrl: info.uri})
} else {
await addSavedFeeds([
@@ -131,14 +128,12 @@ export function ProfileFeedHeader({info}: {info: FeedSourceFeedInfo}) {
pinned: false,
},
])
- Toast.show(_(msg`Saved to your feeds`))
+ Toast.show(l`Saved to your feeds`)
ax.metric('feed:save', {feedUrl: info.uri})
}
} catch (err) {
Toast.show(
- _(
- msg`There was an issue updating your feeds, please check your internet connection and try again.`,
- ),
+ l`There was an issue updating your feeds, please check your internet connection and try again.`,
{
type: 'error',
},
@@ -161,10 +156,10 @@ export function ProfileFeedHeader({info}: {info: FeedSourceFeedInfo}) {
])
if (pinned) {
- Toast.show(_(msg`Pinned ${info.displayName} to Home`))
+ Toast.show(l`Pinned ${info.displayName} to Home`)
ax.metric('feed:pin', {feedUrl: info.uri})
} else {
- Toast.show(_(msg`Unpinned ${info.displayName} from Home`))
+ Toast.show(l`Unpinned ${info.displayName} from Home`)
ax.metric('feed:unpin', {feedUrl: info.uri})
}
} else {
@@ -175,11 +170,11 @@ export function ProfileFeedHeader({info}: {info: FeedSourceFeedInfo}) {
pinned: true,
},
])
- Toast.show(_(msg`Pinned ${info.displayName} to Home`))
+ Toast.show(l`Pinned ${info.displayName} to Home`)
ax.metric('feed:pin', {feedUrl: info.uri})
}
} catch (e) {
- Toast.show(_(msg`There was an issue contacting the server`), {
+ Toast.show(l`There was an issue contacting the server`, {
type: 'error',
})
logger.error('Failed to toggle pinned feed', {message: e})
@@ -194,7 +189,7 @@ export function ProfileFeedHeader({info}: {info: FeedSourceFeedInfo}) {
{isPinned ? (
-
+
{({props}) => {
return (
- {_(msg`Unpin from home`)}
+ {l`Unpin from home`}
{isSaved
- ? _(msg`Remove from my feeds`)
- : _(msg`Save to my feeds`)}
+ ? l`Remove from my feeds`
+ : l`Save to my feeds`}
) : (
-
{
playHaptic()
const url = toShareUrl(info.route.href)
- shareUrl(url)
+ void shareUrl(url)
ax.metric('feed:share', {feedUrl: info.uri})
- }, [info, playHaptic])
+ }, [ax, info, playHaptic])
const onPressReport = useCallback(() => {
reportDialogControl.open()
@@ -462,7 +451,7 @@ function DialogInner({
By{' '}
-
-
-
+
{typeof likeCount === 'number' && (
control.close()}>
@@ -502,13 +489,12 @@ function DialogInner({
)}
-
{hasSession && (
<>
Date: Sat, 6 Jun 2026 00:17:05 +0300
Subject: [PATCH 035/165] Remove useWindowDimensions from ProfileBadges
(#10738)
---
src/alf/util/dimensions.ts | 19 +++++++++++++++++++
src/components/ProfileBadges.tsx | 5 +++--
2 files changed, 22 insertions(+), 2 deletions(-)
create mode 100644 src/alf/util/dimensions.ts
diff --git a/src/alf/util/dimensions.ts b/src/alf/util/dimensions.ts
new file mode 100644
index 0000000000..31af2ffa99
--- /dev/null
+++ b/src/alf/util/dimensions.ts
@@ -0,0 +1,19 @@
+import {useEffect, useState} from 'react'
+import {Dimensions} from 'react-native'
+
+/**
+ * Same as `useWindowDimensions().fontScale`, but avoids rerendering
+ * whenever the screen size changes
+ */
+export function useNativeFontScale() {
+ const [fontScale, setFontScale] = useState(Dimensions.get('window').fontScale)
+
+ useEffect(() => {
+ const sub = Dimensions.addEventListener('change', evt => {
+ setFontScale(evt.window.fontScale)
+ })
+ return () => sub.remove()
+ }, [])
+
+ return fontScale
+}
diff --git a/src/components/ProfileBadges.tsx b/src/components/ProfileBadges.tsx
index cb257e78b6..b4684cc2f2 100644
--- a/src/components/ProfileBadges.tsx
+++ b/src/components/ProfileBadges.tsx
@@ -1,7 +1,8 @@
-import {useWindowDimensions, View} from 'react-native'
+import {View} from 'react-native'
import {useProfileShadow} from '#/state/cache/profile-shadow'
import {atoms as a, useAlf, type ViewStyleProp} from '#/alf'
+import {useNativeFontScale} from '#/alf/util/dimensions'
import {BotBadge, BotBadgeButton, isBotAccount} from '#/components/BotBadge'
import {useSimpleVerificationState} from '#/components/verification'
import {VerificationCheck} from '#/components/verification/VerificationCheck'
@@ -40,7 +41,7 @@ export function ProfileBadges({
}) {
const shadowed = useProfileShadow(profile)
const verification = useSimpleVerificationState({profile})
- const {fontScale: nativeScaleMultiplier} = useWindowDimensions()
+ const nativeScaleMultiplier = useNativeFontScale()
const {
fonts: {scaleMultiplier: alfScaleMultiplier},
} = useAlf()
From 1d5fb89c80880c140738ed66a4a95cddc432b6ef Mon Sep 17 00:00:00 2001
From: DS Boyce <260543580+ds-boyce@users.noreply.github.com>
Date: Fri, 5 Jun 2026 14:19:48 -0700
Subject: [PATCH 036/165] Improve error messages for LeaveConvoPrompt (#10760)
---
src/components/dms/LeaveConvoPrompt.tsx | 20 +++++++++++++++-----
1 file changed, 15 insertions(+), 5 deletions(-)
diff --git a/src/components/dms/LeaveConvoPrompt.tsx b/src/components/dms/LeaveConvoPrompt.tsx
index f4e7ea843a..5e9943e53f 100644
--- a/src/components/dms/LeaveConvoPrompt.tsx
+++ b/src/components/dms/LeaveConvoPrompt.tsx
@@ -1,7 +1,9 @@
+import {ChatBskyConvoLeaveConvo} from '@atproto/api'
import {useLingui} from '@lingui/react/macro'
import {StackActions, useNavigation} from '@react-navigation/native'
import {type NavigationProp} from '#/lib/routes/types'
+import {isNetworkError} from '#/lib/strings/errors'
import {useLeaveConvo} from '#/state/queries/messages/leave-conversation'
import {type DialogOuterProps} from '#/components/Dialog'
import * as Prompt from '#/components/Prompt'
@@ -30,10 +32,18 @@ export function LeaveConvoPrompt({
)
}
},
- onError: () => {
- Toast.show(l`Could not leave chat`, {
- type: 'error',
- })
+ onError: error => {
+ let errorMessage = l`Could not leave chat`
+ if (isNetworkError(error)) {
+ errorMessage = l`A network error occurred. Please check your internet connection.`
+ } else if (error instanceof ChatBskyConvoLeaveConvo.InvalidConvoError) {
+ errorMessage = l`Conversation not found.`
+ } else if (
+ error instanceof ChatBskyConvoLeaveConvo.OwnerCannotLeaveError
+ ) {
+ errorMessage = l`Owner must lock the group before leaving.`
+ }
+ Toast.show(errorMessage, {type: 'error'})
},
})
@@ -43,7 +53,7 @@ export function LeaveConvoPrompt({
title={l`Leave conversation`}
description={
hasMessages
- ? l`Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant.`
+ ? l`Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants.`
: l`Are you sure you want to leave this conversation?`
}
confirmButtonCta={l`Leave`}
From a675cbacb6765fac5b6560a4d6cfb70e1a583ad5 Mon Sep 17 00:00:00 2001
From: DS Boyce <260543580+ds-boyce@users.noreply.github.com>
Date: Fri, 5 Jun 2026 14:26:30 -0700
Subject: [PATCH 037/165] Link to owner's profile from link embed (#10759)
---
src/components/dms/ChatInvite/Card.tsx | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/src/components/dms/ChatInvite/Card.tsx b/src/components/dms/ChatInvite/Card.tsx
index b559a9a4a3..bccf23446c 100644
--- a/src/components/dms/ChatInvite/Card.tsx
+++ b/src/components/dms/ChatInvite/Card.tsx
@@ -2,9 +2,11 @@ import {View} from 'react-native'
import {Plural, Trans} from '@lingui/react/macro'
import {createSanitizedDisplayName} from '#/lib/moderation/create-sanitized-display-name'
+import {makeProfileLink} from '#/lib/routes/links'
import {sanitizeHandle} from '#/lib/strings/handles'
import {atoms as a, useTheme} from '#/alf'
import {AvatarBubbles} from '#/components/AvatarBubbles'
+import {SimpleInlineLinkText} from '#/components/Link'
import {ProfileBadges} from '#/components/ProfileBadges'
import {Text} from '#/components/Typography'
import {useChatInvite} from './Context'
@@ -75,9 +77,12 @@ export function Card({size}: {size: 'large' | 'small'}) {
allowFontScaling={!hasFixedHeight}>
By{' '}
-
+
{ownerDisplayName}
-
+
Date: Sat, 6 Jun 2026 01:03:29 +0300
Subject: [PATCH 038/165] Fix Android crash when sharing unreadable media into
the app (#10674)
---
.../ExpoReceiveAndroidIntentsModule.kt | 58 +++++++++++++------
1 file changed, 39 insertions(+), 19 deletions(-)
diff --git a/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt b/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt
index d7b9e0e468..71400672be 100644
--- a/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt
+++ b/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt
@@ -119,17 +119,15 @@ class ExpoReceiveAndroidIntentsModule : Module() {
uris: List,
text: String?,
) {
- var allParams = ""
+ // Some URIs we receive may be unreadable (revoked permission, deleted file,
+ // a provider that rejects the read). Skip those rather than crashing the
+ // whole app, since this runs synchronously on the module init path.
+ val allParams =
+ uris
+ .mapNotNull { uri -> getImageInfo(uri) }
+ .joinToString(",") { info -> buildUriData(info) }
- uris.forEachIndexed { index, uri ->
- val info = getImageInfo(uri)
- val params = buildUriData(info)
- allParams = "${allParams}$params"
-
- if (index < uris.count() - 1) {
- allParams = "$allParams,"
- }
- }
+ if (allParams.isEmpty()) return
val encodedUris = URLEncoder.encode(allParams, "UTF-8")
val encodedText = text?.let { URLEncoder.encode(it, "UTF-8") }
@@ -158,9 +156,16 @@ class ExpoReceiveAndroidIntentsModule : Module() {
}
val file = createFile(extension)
- val out = FileOutputStream(file)
- appContext.currentActivity?.contentResolver?.openInputStream(uri)?.use {
- it.copyTo(out)
+ // The URI may be unreadable (revoked permission, deleted file, or a
+ // provider that rejects the read). Bail rather than crashing the whole
+ // app, since this runs synchronously on the module init path.
+ try {
+ FileOutputStream(file).use { out ->
+ val input = appContext.currentActivity?.contentResolver?.openInputStream(uri) ?: return
+ input.use { it.copyTo(out) }
+ }
+ } catch (e: Exception) {
+ return
}
val info = getVideoInfo(uri) ?: return
@@ -176,8 +181,15 @@ class ExpoReceiveAndroidIntentsModule : Module() {
}
}
- private fun getImageInfo(uri: Uri): Map {
- val bitmap = MediaStore.Images.Media.getBitmap(appContext.currentActivity?.contentResolver, uri)
+ private fun getImageInfo(uri: Uri): Map? {
+ val bitmap =
+ try {
+ MediaStore.Images.Media.getBitmap(appContext.currentActivity?.contentResolver, uri)
+ } catch (e: Exception) {
+ // The URI may be unreadable (revoked permission, deleted file, or a
+ // provider that rejects the read). Skip this image rather than crash.
+ return null
+ } ?: return null
// We have to save this so that we can access it later when uploading the image.
// createTempFile will automatically place a unique string between "img" and "temp.jpeg"
val file = createFile("jpeg")
@@ -195,10 +207,18 @@ class ExpoReceiveAndroidIntentsModule : Module() {
private fun getVideoInfo(uri: Uri): Map? {
val retriever = MediaMetadataRetriever()
- retriever.setDataSource(appContext.currentActivity, uri)
-
- val width = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_WIDTH)?.toIntOrNull()
- val height = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT)?.toIntOrNull()
+ val width: Int?
+ val height: Int?
+ try {
+ retriever.setDataSource(appContext.currentActivity, uri)
+ width = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_WIDTH)?.toIntOrNull()
+ height = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT)?.toIntOrNull()
+ } catch (e: Exception) {
+ // The URI may be unreadable or not a valid media source. Skip rather than crash.
+ return null
+ } finally {
+ retriever.release()
+ }
if (width == null || height == null) {
return null
From 0cc6d4938880d2821c4a9659c76b9058140689b6 Mon Sep 17 00:00:00 2001
From: Eric Bailey
Date: Fri, 5 Jun 2026 17:35:21 -0500
Subject: [PATCH 039/165] Android share intent: logging + temp file cleanup
(#10762)
Co-authored-by: Claude Opus 4.8
---
.../ExpoReceiveAndroidIntentsModule.kt | 34 +++++++++++++++----
1 file changed, 28 insertions(+), 6 deletions(-)
diff --git a/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt b/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt
index 71400672be..af7344216b 100644
--- a/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt
+++ b/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt
@@ -6,6 +6,7 @@ import android.media.MediaMetadataRetriever
import android.net.Uri
import android.os.Build
import android.provider.MediaStore
+import android.util.Log
import androidx.core.net.toUri
import expo.modules.kotlin.modules.Module
import expo.modules.kotlin.modules.ModuleDefinition
@@ -13,6 +14,8 @@ import java.io.File
import java.io.FileOutputStream
import java.net.URLEncoder
+private const val TAG = "ExpoReceiveAndroidIntents"
+
enum class AttachmentType {
IMAGE,
VIDEO,
@@ -161,14 +164,25 @@ class ExpoReceiveAndroidIntentsModule : Module() {
// app, since this runs synchronously on the module init path.
try {
FileOutputStream(file).use { out ->
- val input = appContext.currentActivity?.contentResolver?.openInputStream(uri) ?: return
+ val input =
+ appContext.currentActivity?.contentResolver?.openInputStream(uri)
+ ?: run {
+ file.delete()
+ return
+ }
input.use { it.copyTo(out) }
}
} catch (e: Exception) {
+ Log.w(TAG, "Failed to copy shared video to cache", e)
+ file.delete()
return
}
- val info = getVideoInfo(uri) ?: return
+ val info =
+ getVideoInfo(uri) ?: run {
+ file.delete()
+ return
+ }
val encodedText = text?.let { URLEncoder.encode(it, "UTF-8") }
@@ -188,15 +202,22 @@ class ExpoReceiveAndroidIntentsModule : Module() {
} catch (e: Exception) {
// The URI may be unreadable (revoked permission, deleted file, or a
// provider that rejects the read). Skip this image rather than crash.
+ Log.w(TAG, "Failed to read shared image", e)
return null
} ?: return null
// We have to save this so that we can access it later when uploading the image.
// createTempFile will automatically place a unique string between "img" and "temp.jpeg"
val file = createFile("jpeg")
- val out = FileOutputStream(file)
- bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out)
- out.flush()
- out.close()
+ try {
+ FileOutputStream(file).use { out ->
+ bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out)
+ out.flush()
+ }
+ } catch (e: Exception) {
+ Log.w(TAG, "Failed to write shared image to cache", e)
+ file.delete()
+ return null
+ }
return mapOf(
"width" to bitmap.width,
@@ -215,6 +236,7 @@ class ExpoReceiveAndroidIntentsModule : Module() {
height = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT)?.toIntOrNull()
} catch (e: Exception) {
// The URI may be unreadable or not a valid media source. Skip rather than crash.
+ Log.w(TAG, "Failed to read shared video metadata", e)
return null
} finally {
retriever.release()
From 11dd2597160c5b792125eb5fb22e3955146f4cdd Mon Sep 17 00:00:00 2001
From: Eric Bailey
Date: Fri, 5 Jun 2026 17:56:08 -0500
Subject: [PATCH 040/165] [Drafts] Always write embedGallery for image embeds
(#10761)
Co-authored-by: Claude Opus 4.8
---
src/view/com/composer/drafts/state/api.ts | 24 ++++++++++-------------
1 file changed, 10 insertions(+), 14 deletions(-)
diff --git a/src/view/com/composer/drafts/state/api.ts b/src/view/com/composer/drafts/state/api.ts
index 817820effb..12ed4acf5a 100644
--- a/src/view/com/composer/drafts/state/api.ts
+++ b/src/view/com/composer/drafts/state/api.ts
@@ -111,20 +111,16 @@ async function postDraftToServerPost(
// Add embeds
if (post.embed.media) {
- if (post.embed.media.type === 'images') {
- draftPost.embedImages = serializeImages(
- post.embed.media.images,
- localRefPaths,
- )
- } else if (post.embed.media.type === 'gallery') {
+ // We always write the `embedGallery` shape for images now, including the
+ // legacy `images` variant (<=4 photos). We still read `embedImages` from
+ // older drafts for backwards compat - see `draftToPostDrafts`.
+ if (
+ post.embed.media.type === 'images' ||
+ post.embed.media.type === 'gallery'
+ ) {
draftPost.embedGallery = {
$type: 'app.bsky.draft.defs#draftEmbedGallery',
- items: serializeImages(post.embed.media.images, localRefPaths).map(
- img => ({
- $type: 'app.bsky.draft.defs#draftEmbedImage' as const,
- ...img,
- }),
- ),
+ items: serializeImages(post.embed.media.images, localRefPaths),
}
} else if (post.embed.media.type === 'video') {
const video = await serializeVideo(post.embed.media.video, localRefPaths)
@@ -179,7 +175,7 @@ async function postDraftToServerPost(
function serializeImages(
images: ComposerImage[],
localRefPaths: Map,
-): AppBskyDraftDefs.DraftEmbedImage[] {
+): AppBskyDraftDefs.DraftEmbedGalleryItems {
return images.map(image => {
const sourcePath = image.transformed?.path || image.source.path
// Reuse existing localRefPath if present (editing draft), otherwise generate new
@@ -194,7 +190,7 @@ function serializeImages(
})
return {
- $type: 'app.bsky.draft.defs#draftEmbedImage',
+ $type: 'app.bsky.draft.defs#draftEmbedImage' as const,
localRef: {
$type: 'app.bsky.draft.defs#draftEmbedLocalRef',
path: localRefPath,
From a253e877fcf42344c295450eacf748a9e268dd15 Mon Sep 17 00:00:00 2001
From: surfdude29 <149612116+surfdude29@users.noreply.github.com>
Date: Fri, 5 Jun 2026 23:57:57 +0100
Subject: [PATCH 041/165] Add plural formatting for error toast (#10756)
---
src/view/com/composer/Composer.tsx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx
index a2493557b7..e130472c72 100644
--- a/src/view/com/composer/Composer.tsx
+++ b/src/view/com/composer/Composer.tsx
@@ -210,7 +210,9 @@ function useAddImagesWithCap(
if (result.status === 'full') {
Toast.show(
l({
- message: `You can only add up to ${MAX_GALLERY_IMAGES} images per post`,
+ message: `You can only add up to ${plural(MAX_GALLERY_IMAGES, {
+ other: '# images',
+ })} per post`,
comment:
'Toast shown when the user tries to add more images but the post gallery is already at the cap',
}),
From b9cd7e992a4efc364719136abe36c6f9d62ff21e Mon Sep 17 00:00:00 2001
From: estrattonbailey <4732330+estrattonbailey@users.noreply.github.com>
Date: Fri, 5 Jun 2026 22:59:53 +0000
Subject: [PATCH 042/165] Nightly source-language update
---
src/locale/locales/en/messages.po | 497 +++++++++++++++---------------
1 file changed, 251 insertions(+), 246 deletions(-)
diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po
index bf5b10d214..f0d299ff2a 100644
--- a/src/locale/locales/en/messages.po
+++ b/src/locale/locales/en/messages.po
@@ -117,7 +117,7 @@ msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:233
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr "{0, plural, one {#m} other {#m}}"
@@ -330,7 +330,7 @@ msgstr "{0}/{1}"
#. placeholder {0}: preview.memberCount
#. placeholder {1}: preview.memberLimit
#. placeholder {2}: preview.memberCount
-#: src/components/dms/ChatInvite/Card.tsx:53
+#: src/components/dms/ChatInvite/Card.tsx:56
msgid "{0}/{1} {2, plural, one {member} other {members}}"
msgstr "{0}/{1} {2, plural, one {member} other {members}}"
@@ -377,7 +377,7 @@ msgstr "{count, plural, one {# chat update} other {# chat updates}}"
msgid "{count, plural, one {# new join request} other {# new join requests}}"
msgstr "{count, plural, one {# new join request} other {# new join requests}}"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, one {# request} other {# requests}}"
@@ -403,12 +403,12 @@ msgid "{count, plural, other {#+ requests to join}}"
msgstr "{count, plural, other {#+ requests to join}}"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "{count}+"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "{count}+ requests"
@@ -585,8 +585,8 @@ msgstr ""
msgid "{following} following"
msgstr ""
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:889
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "{handle} can’t be added"
@@ -594,7 +594,7 @@ msgstr "{handle} can’t be added"
msgid "{handle} can't be messaged"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:850
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "{handle} can’t be messaged"
@@ -854,6 +854,7 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:155
#: src/components/dms/dialogs/NewChatDialog.tsx:52
#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
#: src/screens/Messages/JoinRequests.tsx:188
#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
@@ -1037,7 +1038,7 @@ msgstr ""
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr ""
@@ -1091,11 +1092,11 @@ msgstr ""
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1452
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2115
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1117,7 +1118,7 @@ msgstr "Add automation label to account"
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Add group chat members"
@@ -1352,13 +1353,13 @@ msgstr ""
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:139
-#: src/screens/Messages/Settings.tsx:154
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "Allow direct messages from"
-#: src/screens/Messages/Settings.tsx:185
-#: src/screens/Messages/Settings.tsx:200
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr "Allow group chat invites from"
@@ -1753,7 +1754,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageOverlays.tsx:167
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
@@ -1766,23 +1767,23 @@ msgstr ""
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "Are you sure you want to leave {groupName}?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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 ""
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1588
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1845,12 +1846,12 @@ msgstr ""
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:509
-#: src/components/dms/InitiateChatFlow.tsx:702
-#: src/components/dms/InitiateChatFlow.tsx:709
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1865,7 +1866,7 @@ msgstr ""
#: src/screens/Messages/components/ChatDisabled.tsx:166
#: src/screens/Messages/components/InviteLinkDialog.tsx:251
#: src/screens/Messages/components/InviteLinkDialog.tsx:279
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1876,7 +1877,7 @@ msgstr ""
msgid "Back"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1924,7 +1925,7 @@ msgstr ""
#: src/components/dms/MessageProfileButton.tsx:60
#: src/screens/Messages/ChatList.tsx:147
#: src/screens/Messages/ChatList.tsx:211
-#: src/screens/Messages/ChatList.tsx:476
+#: src/screens/Messages/ChatList.tsx:482
#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
@@ -1957,7 +1958,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1978,7 +1979,7 @@ msgstr "Block {displayName}"
msgid "Block account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Block account?"
@@ -2050,7 +2051,7 @@ msgid "Blocked Accounts"
msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -2230,12 +2231,12 @@ msgid "By {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
#. The group chat creator, in the format 'By {displayName}'.
-#: src/components/dms/ChatInvite/Card.tsx:75
+#: src/components/dms/ChatInvite/Card.tsx:78
msgid "By <0>{ownerDisplayName}0>"
msgstr "By <0>{ownerDisplayName}0>"
@@ -2301,8 +2302,8 @@ msgstr ""
#: src/screens/Deactivated.tsx:150
#: src/screens/Messages/components/InviteLinkDialog.tsx:463
#: src/screens/Messages/components/InviteLinkDialog.tsx:467
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2315,8 +2316,8 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1666
-#: src/view/com/composer/Composer.tsx:1676
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
#: src/view/shell/desktop/LeftNav.tsx:228
@@ -2448,10 +2449,10 @@ msgstr ""
msgid "Chat ended"
msgstr "Chat ended"
-#: src/components/dms/ChatInvite/Root.tsx:103
+#: src/components/dms/ChatInvite/Root.tsx:105
#: src/components/intents/GroupChatJoinDialog.tsx:228
#: src/components/intents/GroupChatJoinDialog.tsx:259
-#: src/components/Post/Embed/JoinRequestEmbed.tsx:91
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
msgid "Chat invite link no longer available"
msgstr "Chat invite link no longer available"
@@ -2480,8 +2481,8 @@ msgstr "Chat recipient is not followed by the sender."
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
@@ -2489,13 +2490,13 @@ msgstr ""
#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
#: src/screens/Messages/ChatList.tsx:87
-#: src/screens/Messages/ChatList.tsx:500
-#: src/screens/Messages/ChatList.tsx:535
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:130
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr ""
@@ -2518,8 +2519,8 @@ msgid "Chat unmuted"
msgstr ""
#: src/screens/Messages/ChatList.tsx:77
-#: src/screens/Messages/ChatList.tsx:488
-#: src/screens/Messages/ChatList.tsx:524
+#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2699,7 +2700,7 @@ msgstr ""
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
@@ -2709,7 +2710,7 @@ msgstr ""
#: src/components/dms/AfterReportDialog.tsx:212
#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:534
+#: src/components/dms/InitiateChatFlow.tsx:542
#: src/components/intents/GroupChatJoinDialog.tsx:205
#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
@@ -2804,7 +2805,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1674
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2854,7 +2855,7 @@ msgid "Compose new post"
msgstr ""
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1550
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2862,11 +2863,11 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2512
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2514
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr ""
@@ -3017,8 +3018,8 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:461
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Continue to group name"
@@ -3050,6 +3051,7 @@ msgctxt "toast"
msgid "Conversation left"
msgstr "Conversation left"
+#: src/components/dms/LeaveConvoPrompt.tsx:40
#: src/screens/Messages/JoinRequests.tsx:192
#: src/screens/Messages/JoinRequests.tsx:224
msgid "Conversation not found."
@@ -3059,7 +3061,7 @@ msgstr "Conversation not found."
msgid "Copied build version to clipboard"
msgstr ""
-#: src/components/dms/ChatInvite/Root.tsx:80
+#: src/components/dms/ChatInvite/Root.tsx:82
#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
@@ -3112,7 +3114,7 @@ msgstr ""
msgid "Copy host"
msgstr ""
-#: src/components/dms/ChatInvite/Root.tsx:72
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3202,7 +3204,7 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
#: src/components/dms/AfterReportDialog.tsx:139
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr ""
@@ -3259,7 +3261,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:470
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr ""
@@ -3327,7 +3329,7 @@ msgstr ""
msgid "Create another"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:469
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Create group chat"
@@ -3463,7 +3465,7 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageOverlays.tsx:168
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3521,7 +3523,7 @@ msgstr ""
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageOverlays.tsx:166
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr ""
@@ -3535,7 +3537,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1562
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr ""
@@ -3682,9 +3684,9 @@ msgstr ""
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1345
-#: src/view/com/composer/Composer.tsx:1389
-#: src/view/com/composer/Composer.tsx:1595
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3695,14 +3697,14 @@ msgstr ""
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1343
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1360
-#: src/view/com/composer/Composer.tsx:1587
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr ""
@@ -3739,7 +3741,7 @@ msgstr ""
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2433
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr ""
@@ -3971,8 +3973,8 @@ msgstr ""
msgid "Edit Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Edit group name"
@@ -4270,7 +4272,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2532
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr ""
@@ -4317,12 +4319,12 @@ msgstr ""
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:76
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Everyone"
-#: src/screens/Messages/Settings.tsx:61
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Everyone"
@@ -4416,8 +4418,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:255
-#: src/screens/Messages/Settings.tsx:265
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "Export my chat data"
@@ -4575,7 +4577,7 @@ msgid "Failed to leave group chat"
msgstr "Failed to leave group chat"
#: src/screens/Messages/ChatList.tsx:345
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4624,8 +4626,7 @@ msgstr ""
msgid "Failed to lock group chat"
msgstr "Failed to lock group chat"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
@@ -4677,7 +4678,7 @@ msgstr "Failed to rescind your request. Please try again."
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:637
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
@@ -4745,7 +4746,7 @@ msgstr ""
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:93
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr ""
@@ -4780,7 +4781,7 @@ msgstr ""
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr ""
@@ -4793,7 +4794,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr ""
@@ -5135,14 +5136,11 @@ msgstr ""
msgid "Following Feed Preferences"
msgstr ""
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr ""
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr ""
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr ""
@@ -5329,7 +5327,7 @@ msgstr ""
msgid "GIF"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2537
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
@@ -5478,7 +5476,7 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/components/dms/ChatInvite/Card.tsx:42
+#: src/components/dms/ChatInvite/Card.tsx:45
#: src/components/intents/GroupChatJoinDialog.tsx:298
#: src/screens/Messages/JoinRequest.tsx:116
msgid "Group chat"
@@ -5536,12 +5534,17 @@ msgstr "Group chats can only have a maximum of {0, plural, other {# people}}."
msgid "Group is locked"
msgstr "Group is locked"
-#: src/components/dms/InitiateChatFlow.tsx:237
-#: src/components/dms/InitiateChatFlow.tsx:569
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Group name"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -6072,7 +6075,7 @@ msgid "Inbox empty"
msgstr "Inbox empty"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -6240,7 +6243,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr ""
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2452
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr ""
@@ -6249,7 +6252,7 @@ msgstr ""
msgid "Jobs"
msgstr ""
-#: src/components/dms/ChatInvite/Root.tsx:98
+#: src/components/dms/ChatInvite/Root.tsx:100
#: src/components/intents/GroupChatJoinDialog.tsx:254
msgid "Join"
msgstr "Join"
@@ -6279,8 +6282,8 @@ msgstr ""
msgid "Journalism"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1393
-#: src/view/com/composer/Composer.tsx:1403
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6432,7 +6435,7 @@ msgstr ""
msgid "Learn more."
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:49
+#: src/components/dms/LeaveConvoPrompt.tsx:59
#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr ""
@@ -6456,7 +6459,7 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr ""
@@ -6466,7 +6469,7 @@ msgctxt "button"
msgid "Leave conversation"
msgstr "Leave conversation"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "Leave group chat"
@@ -6507,7 +6510,7 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Like"
msgstr ""
@@ -6526,7 +6529,7 @@ msgstr ""
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr ""
@@ -6553,7 +6556,7 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
@@ -6771,11 +6774,11 @@ msgstr ""
msgid "Lock"
msgstr "Lock"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "Lock group chat"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "Lock group chat?"
@@ -6859,9 +6862,8 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
@@ -6870,8 +6872,7 @@ msgstr ""
msgid "Mark as read"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
@@ -6903,7 +6904,7 @@ msgstr ""
msgid "Members"
msgstr "Members"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "Members can still read chat history but can’t send new messages."
@@ -7306,7 +7307,7 @@ msgstr ""
#: src/screens/Messages/ChatList.tsx:167
#: src/screens/Messages/ChatList.tsx:380
#: src/screens/Messages/ChatList.tsx:381
-#: src/screens/Messages/ChatList.tsx:509
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr ""
@@ -7344,19 +7345,19 @@ msgstr ""
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "New group chat"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:744
-#: src/components/dms/InitiateChatFlow.tsx:778
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr "New group chat"
-#: src/components/dms/InitiateChatFlow.tsx:273
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "New group chat with:"
@@ -7422,8 +7423,8 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:462
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7538,12 +7539,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr ""
-#: src/screens/Messages/Settings.tsx:87
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "No one"
-#: src/screens/Messages/Settings.tsx:69
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7595,8 +7596,8 @@ msgid "No result"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:347
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr ""
@@ -7711,8 +7712,8 @@ msgstr ""
msgid "Notification settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:232
-#: src/screens/Messages/Settings.tsx:245
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr ""
@@ -7766,7 +7767,7 @@ msgstr ""
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/InitiateChatFlow.tsx:677
+#: src/components/dms/InitiateChatFlow.tsx:707
#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
@@ -7800,11 +7801,11 @@ msgstr "One of the selected recipients does not allow group chats."
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr "One of the selected recipients has blocked you and cannot be messaged."
-#: src/view/com/composer/Composer.tsx:853
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:850
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr ""
@@ -7816,11 +7817,11 @@ msgstr ""
msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
-#: src/view/com/composer/Composer.tsx:648
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:860
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr ""
@@ -7833,7 +7834,7 @@ msgstr ""
#. placeholder {0}: result.accepted.length
#. placeholder {1}: next.length
#. placeholder {2}: next.length
-#: src/view/com/composer/Composer.tsx:223
+#: src/view/com/composer/Composer.tsx:225
msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
msgstr "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
@@ -7864,7 +7865,7 @@ msgstr ""
msgid "Only people {0} follows can join."
msgstr "Only people {0} follows can join."
-#: src/components/dms/ChatInvite/Root.tsx:113
+#: src/components/dms/ChatInvite/Root.tsx:115
#: src/components/intents/GroupChatJoinDialog.tsx:269
msgid "Only people the chat owner follows can join"
msgstr "Only people the chat owner follows can join"
@@ -7894,7 +7895,7 @@ msgstr ""
msgid "Open camera"
msgstr ""
-#: src/components/dms/ChatInvite/Root.tsx:85
+#: src/components/dms/ChatInvite/Root.tsx:87
#: src/components/intents/GroupChatJoinDialog.tsx:408
msgid "Open chat"
msgstr "Open chat"
@@ -7903,8 +7904,8 @@ msgstr "Open chat"
msgid "Open chat member options for {displayName}"
msgstr "Open chat member options for {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:491
#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr ""
@@ -7918,16 +7919,16 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2092
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr ""
@@ -7948,8 +7949,8 @@ msgstr "Open group chat"
msgid "Open group chat settings"
msgstr "Open group chat settings"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr ""
@@ -8199,6 +8200,10 @@ msgstr ""
msgid "Owner"
msgstr "Owner"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr "Owner must lock the group before leaving."
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
#: src/view/screens/NotFound.tsx:34
@@ -8327,8 +8332,8 @@ msgid "Pictures meant for adults."
msgstr ""
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr ""
@@ -8338,7 +8343,7 @@ msgstr ""
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr ""
@@ -8352,8 +8357,8 @@ msgid "Pinned"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr ""
@@ -8569,7 +8574,7 @@ msgstr ""
msgid "Porn"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1740
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr ""
@@ -8589,12 +8594,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1738
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Post anyway"
@@ -8767,11 +8772,11 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2526
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2528
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr ""
@@ -8816,22 +8821,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:1724
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1719
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1708
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1713
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
@@ -9032,7 +9037,7 @@ msgid "Reject chat request"
msgstr ""
#: src/screens/Messages/ChatList.tsx:349
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr ""
@@ -9115,8 +9120,8 @@ msgstr ""
msgid "Remove from chat"
msgstr "Remove from chat"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -9217,7 +9222,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9285,7 +9290,7 @@ msgstr ""
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1736
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr ""
@@ -9346,8 +9351,8 @@ msgstr ""
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr ""
@@ -9487,17 +9492,17 @@ msgstr ""
msgid "Request ignored."
msgstr "Request ignored."
-#: src/components/dms/ChatInvite/Root.tsx:98
+#: src/components/dms/ChatInvite/Root.tsx:100
#: src/components/intents/GroupChatJoinDialog.tsx:253
msgid "Request to join"
msgstr "Request to join"
-#: src/components/dms/ChatInvite/Root.tsx:117
+#: src/components/dms/ChatInvite/Root.tsx:119
msgid "Requested"
msgstr "Requested"
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "Requests"
@@ -9601,7 +9606,7 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:335
#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
@@ -9655,7 +9660,7 @@ msgstr "Sad GIFs"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9680,22 +9685,22 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1383
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1355
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1383
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1357
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
@@ -9721,8 +9726,8 @@ msgstr ""
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr ""
@@ -9743,7 +9748,7 @@ msgstr ""
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr ""
@@ -9779,7 +9784,7 @@ msgstr ""
msgid "Scroll to top"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
@@ -9870,7 +9875,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9880,7 +9885,7 @@ msgstr ""
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
@@ -10031,7 +10036,7 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:669
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "Select group chat members"
@@ -10329,7 +10334,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10606,7 +10611,7 @@ msgstr ""
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Skip empty posts?"
@@ -10741,7 +10746,7 @@ msgstr ""
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr ""
@@ -10802,12 +10807,12 @@ msgstr ""
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:670
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Start chat"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:818
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr ""
@@ -10915,13 +10920,13 @@ msgid "Subscribe"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:427
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr "Subscribe on {0}"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr "Subscribe to {publicationTitle} on {0}"
@@ -10964,8 +10969,8 @@ msgstr "Successfully joined the group chat!"
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:326
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Suggested"
@@ -11078,7 +11083,7 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
-#: src/components/dms/ChatInvite/Root.tsx:73
+#: src/components/dms/ChatInvite/Root.tsx:75
msgid "Tap to copy this invite link"
msgstr "Tap to copy this invite link"
@@ -11086,12 +11091,12 @@ msgstr "Tap to copy this invite link"
msgid "Tap to dismiss"
msgstr ""
-#: src/components/dms/ChatInvite/Root.tsx:126
+#: src/components/dms/ChatInvite/Root.tsx:128
#: src/components/intents/GroupChatJoinDialog.tsx:424
msgid "Tap to join this group chat immediately"
msgstr "Tap to join this group chat immediately"
-#: src/components/dms/ChatInvite/Root.tsx:86
+#: src/components/dms/ChatInvite/Root.tsx:88
msgid "Tap to open this group chat"
msgstr "Tap to open this group chat"
@@ -11104,7 +11109,7 @@ msgstr "Tap to remove"
msgid "Tap to remove your {0} reaction"
msgstr "Tap to remove your {0} reaction"
-#: src/components/dms/ChatInvite/Root.tsx:125
+#: src/components/dms/ChatInvite/Root.tsx:127
#: src/components/intents/GroupChatJoinDialog.tsx:423
msgid "Tap to request access to join this group chat"
msgstr "Tap to request access to join this group chat"
@@ -11367,7 +11372,7 @@ msgstr "There was a problem loading GIFs. Check your connection and try again."
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11375,7 +11380,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -11385,7 +11390,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -11410,7 +11415,7 @@ msgstr ""
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11520,7 +11525,7 @@ msgstr ""
msgid "This chat has ended"
msgstr "This chat has ended"
-#: src/components/dms/ChatInvite/Root.tsx:108
+#: src/components/dms/ChatInvite/Root.tsx:110
#: src/components/intents/GroupChatJoinDialog.tsx:264
msgid "This chat is full"
msgstr "This chat is full"
@@ -11724,7 +11729,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1013
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr ""
@@ -12179,7 +12184,7 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr ""
@@ -12249,14 +12254,14 @@ msgid "Unpin"
msgstr ""
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr ""
@@ -12271,7 +12276,7 @@ msgid "Unpin moderation list"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr ""
@@ -12309,7 +12314,7 @@ msgstr ""
msgid "Unsupported clipboard content"
msgstr "Unsupported clipboard content"
-#: src/view/com/composer/Composer.tsx:1489
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12404,7 +12409,7 @@ msgstr ""
msgid "Upload from Library"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2519
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
@@ -12418,7 +12423,7 @@ msgstr ""
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2521
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr ""
@@ -12499,7 +12504,7 @@ msgid "User list by {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12543,12 +12548,12 @@ msgstr ""
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:80
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "Users I follow"
-#: src/screens/Messages/Settings.tsx:65
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Users I follow"
@@ -12707,7 +12712,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2539
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr ""
@@ -12724,14 +12729,14 @@ msgstr ""
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1106
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:320
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:616
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr "View {0}"
@@ -12743,7 +12748,7 @@ msgstr ""
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12760,7 +12765,7 @@ msgstr "View {0}’s profile"
msgid "View {displayName}’s profile"
msgstr "View {displayName}’s profile"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:458
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr "View {publicationTitle}"
@@ -12818,7 +12823,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1101
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12835,10 +12840,10 @@ msgstr ""
msgid "View profile banner"
msgstr "View profile banner"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:320
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:459
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:616
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr "View publication"
@@ -12859,7 +12864,7 @@ msgstr ""
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr ""
@@ -13079,8 +13084,8 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:262
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "We’re having network issues, try again"
@@ -13114,7 +13119,7 @@ msgstr "We’re sorry, but your search could not be completed. Please try again
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1011
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
@@ -13165,7 +13170,7 @@ msgid "What do you want to call your starter pack?"
msgstr ""
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1453
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr ""
@@ -13193,7 +13198,7 @@ msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr ""
@@ -13251,7 +13256,7 @@ msgstr "Would you like to block this user and/or leave this conversation?"
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1371
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -13260,12 +13265,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1549
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1451
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr ""
@@ -13418,8 +13423,8 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:148
-#: src/screens/Messages/Settings.tsx:194
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr ""
@@ -13434,10 +13439,10 @@ msgstr ""
#. Toast shown when the user tries to add more images but the post gallery is already at the cap
#: src/view/com/composer/Composer.tsx:212
-msgid "You can only add up to {MAX_GALLERY_IMAGES} images per post"
-msgstr "You can only add up to {MAX_GALLERY_IMAGES} images per post"
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
-#: src/view/com/composer/Composer.tsx:1376
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13576,7 +13581,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1366
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13700,7 +13705,7 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "You won’t be able to rejoin unless you’re invited."
@@ -13773,7 +13778,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr ""
-#: src/view/com/composer/Composer.tsx:635
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13813,11 +13818,11 @@ msgstr ""
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:675
+#: src/components/dms/InitiateChatFlow.tsx:705
msgid "Your account is too new"
msgstr "Your account is too new"
-#: src/components/dms/InitiateChatFlow.tsx:676
+#: src/components/dms/InitiateChatFlow.tsx:706
msgid "Your account must be at least 7 days old to create a new group chat."
msgstr "Your account must be at least 7 days old to create a new group chat."
@@ -13941,11 +13946,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1097
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1094
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13966,7 +13971,7 @@ msgstr ""
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:1096
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
@@ -13979,7 +13984,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
From 7577933378c14529213effa9e07b621a5ff425c6 Mon Sep 17 00:00:00 2001
From: Eric Bailey
Date: Sat, 6 Jun 2026 09:55:39 -0500
Subject: [PATCH 043/165] Fix draft image pres with 4+ images (#10765)
---
src/components/MediaPreview.tsx | 6 ++++--
src/view/com/composer/drafts/DraftItem.tsx | 12 +++++++++---
2 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/src/components/MediaPreview.tsx b/src/components/MediaPreview.tsx
index 034094556c..9ab631dc36 100644
--- a/src/components/MediaPreview.tsx
+++ b/src/components/MediaPreview.tsx
@@ -127,10 +127,12 @@ export function ImageItem({
thumbnail,
alt,
children,
+ maxWidth = 100,
}: {
thumbnail?: string
alt?: string
children?: React.ReactNode
+ maxWidth?: number
}) {
const t = useTheme()
@@ -141,7 +143,7 @@ export function ImageItem({
{backgroundColor: 'black'},
a.flex_1,
a.aspect_square,
- {maxWidth: 100},
+ {maxWidth},
a.rounded_xs,
]}
accessibilityLabel={alt}
@@ -152,7 +154,7 @@ export function ImageItem({
}
return (
-
+
+
{loadedImages.map((image, i) => (
-
+
+
+
))}
{post.gif && (
@@ -339,6 +345,6 @@ function DraftMediaPreview({post}: {post: DraftPostDisplay}) {
alt={post.video.altText}
/>
)}
-
+
)
}
From 0ce2ada9b0356a514dc97a03996281c135afec2e Mon Sep 17 00:00:00 2001
From: Eric Bailey
Date: Sat, 6 Jun 2026 10:26:44 -0500
Subject: [PATCH 044/165] Release 1.123.0 (#10766)
---
src/locale/locales/an/messages.po | 2386 +++--
src/locale/locales/ar/messages.po | 2523 +++--
src/locale/locales/ast/messages.po | 2382 +++--
src/locale/locales/az/messages.po | 2523 +++--
src/locale/locales/bn/messages.po | 2523 +++--
src/locale/locales/br/messages.po | 2523 +++--
src/locale/locales/ca/messages.po | 2416 +++--
src/locale/locales/cs/messages.po | 13999 +++++++++++++++++++++++++
src/locale/locales/cy/messages.po | 2422 +++--
src/locale/locales/da/messages.po | 2546 +++--
src/locale/locales/de/messages.po | 2446 +++--
src/locale/locales/el/messages.po | 2386 +++--
src/locale/locales/en-GB/messages.po | 2458 +++--
src/locale/locales/en/messages.po | 6 +-
src/locale/locales/eo/messages.po | 2448 +++--
src/locale/locales/es/messages.po | 2394 +++--
src/locale/locales/eu/messages.po | 2456 +++--
src/locale/locales/fi/messages.po | 2384 +++--
src/locale/locales/fr/messages.po | 2444 +++--
src/locale/locales/fy/messages.po | 2404 +++--
src/locale/locales/ga/messages.po | 2386 +++--
src/locale/locales/gd/messages.po | 2410 +++--
src/locale/locales/gl/messages.po | 2386 +++--
src/locale/locales/haw/messages.po | 2523 +++--
src/locale/locales/hi/messages.po | 2386 +++--
src/locale/locales/hu/messages.po | 2520 +++--
src/locale/locales/ia/messages.po | 2404 +++--
src/locale/locales/id/messages.po | 2404 +++--
src/locale/locales/it/messages.po | 2478 +++--
src/locale/locales/ja/messages.po | 2444 +++--
src/locale/locales/kab/messages.po | 2523 +++--
src/locale/locales/km/messages.po | 2384 +++--
src/locale/locales/ko/messages.po | 2454 +++--
src/locale/locales/lt/messages.po | 2523 +++--
src/locale/locales/ne/messages.po | 2384 +++--
src/locale/locales/nl/messages.po | 2386 +++--
src/locale/locales/pl/messages.po | 2386 +++--
src/locale/locales/pt-BR/messages.po | 2632 +++--
src/locale/locales/pt-PT/messages.po | 2484 +++--
src/locale/locales/ro/messages.po | 2450 +++--
src/locale/locales/ru/messages.po | 2398 +++--
src/locale/locales/sv/messages.po | 2456 +++--
src/locale/locales/th/messages.po | 2384 +++--
src/locale/locales/tr/messages.po | 2458 +++--
src/locale/locales/uk/messages.po | 2384 +++--
src/locale/locales/vi/messages.po | 2386 +++--
src/locale/locales/zh-CN/messages.po | 2514 +++--
src/locale/locales/zh-HK/messages.po | 2412 +++--
src/locale/locales/zh-TW/messages.po | 2514 +++--
49 files changed, 79480 insertions(+), 49442 deletions(-)
create mode 100644 src/locale/locales/cs/messages.po
diff --git a/src/locale/locales/an/messages.po b/src/locale/locales/an/messages.po
index e97b4004c5..1f4f6a9b0b 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Aragonese\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minuto} other {# minutos}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# mes} other {# meses}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# segundo} other {# segundos}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# elemento no leyiu} other {# elementos no leyius}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr "{0} de 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "avatar de {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# elemento no leyiu} other {# elementos no leyius}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr "{following} seguindo"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "No se puede ninviar mensaches a {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# elemento no leyiu} other {# elementos no leyius}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -860,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Accesibilidat"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Achustes d'accesibilidat"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Cuenta no silenciada"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Anyadir"
@@ -999,8 +1079,8 @@ msgstr "Anyadir cuenta"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Anyadir texto alternativo (opcional)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Anyadir una atra cuenta"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Anyadir una atra publicación"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr "Anyadir una atra clau"
msgid "Add App Password"
msgstr "Anyadir clau d'app"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Anyadir mas detalles (opcional)"
@@ -1080,8 +1160,8 @@ msgstr "Anyadir parola muda con a configuración triada"
msgid "Add muted words and tags"
msgstr "Anyadir parolas silenciadas y etiquetas"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Detalles adicionals (limite 300 carácters)"
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Toz"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Permite l'acceso a los tuyos mensaches directos"
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Sesión ya iniciada como @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Texto alternativo"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Lo texto alternativo describe imáchens a usuarios ciegos u con baixa visión, y aduya a dar mas contexto a toz."
@@ -1387,7 +1467,7 @@ msgstr "I ha habiu una error"
msgid "An error occurred"
msgstr "I ha habiu una error"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "I ha habiu una error en comprimir lo video."
@@ -1432,11 +1512,11 @@ msgstr "I ha habiu una error en alzar lo codigo QR!"
msgid "An error occurred while trying to follow all"
msgstr "I ha habiu una error mientres intentaba seguir a toz"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Un problema no incluyiu en estas opcions"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "I ha habiu un problema mientres intentaba ubrir lo chat."
msgid "An issue occurred, please try again."
msgstr "I ha habiu un problema. Intenta de nuevo."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Las claus d'aplicación han de tener a lo menos 4 carácters"
msgid "App passwords"
msgstr "Claus d'aplicación"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Claus de l'app"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Apelación ninviada"
@@ -1632,14 +1716,14 @@ msgstr "Revisión d'a suspensión"
msgid "Appeal Suspension"
msgstr "Revisón d'a suspensión"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Apelar esta decisión"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Yes seguro de querer borrar la clau d'aplicación \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Seguro que quiers eliminar esta publicación?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Autorreproducir videos y GIFs"
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr "Dezaga"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1840,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1877,7 +1963,7 @@ msgstr "Aniversario"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Blocar cuenta"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "Blocar la cuenta?"
msgid "Block accounts"
msgstr "Blocar cuentas"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Blocar estas cuentas?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Blocar usuario"
@@ -1946,9 +2032,9 @@ msgstr "Blocar usuario"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Blocar usuario"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Blocau"
@@ -1964,13 +2050,13 @@ msgstr "Blocau"
msgid "Blocked accounts"
msgstr "Cuentas blocadas"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Cuentas blocadas"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Las cuentas blocadas no podrán responder en os tuyos filos, mencionar-te ni interactuar con tu de garra traza."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky ye millor con amigos!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky triará un conchunto de cuentas recomendadas de personas en o su
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 "Bluesky no amostrará lo tuyo perfil u publicacions a usuarios que no haigan iniciau sesión. Ye posible que atras apps no respecten esta solicitut. Esto no fa que la tuya cuenta sía privada."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2137,23 +2223,30 @@ msgstr "Negocios"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Per {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Per <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "En crear una cuenta, acceptas los <0>Termins de Servicio0>."
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Camera"
@@ -2192,8 +2285,8 @@ msgstr "Camera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Camera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Camera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Cancelar"
@@ -2248,9 +2341,9 @@ msgstr "Cancelar la reactivación y zarrar la sesión"
msgid "Cancel search"
msgstr "Cancelar busqueda"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "No se puede interactuar con un usuario blocau"
@@ -2264,7 +2357,7 @@ msgstr "Subtítols (.vtt)"
msgid "Captions & alt text"
msgstr "Subtítols y texto alternativo"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr "Cambiar identificador"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Cambiar servicio de moderación"
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Cambiar la razón d'o reporte"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Conversa"
@@ -2361,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Chat silenciau"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Achustes de chat"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Configuración de chat"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Chat no silenciau"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "Tría esta color como lo tuyo avatar"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr "fe clic aquí"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2567,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Fe clic pa reintentar mensache fallido"
@@ -2594,28 +2694,30 @@ msgstr "Fe clic pa reintentar mensache fallido"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Fe clic pa reintentar mensache fallido"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Zarrar dialogo activo"
msgid "Close alert"
msgstr "Zarrar l'alerta"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Zarrar lo calaixo inferior"
@@ -2657,8 +2763,9 @@ msgstr "Zarrar lo calaixo inferior"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Zarrar finestra"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Zarrar la imachen"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Zarrar este dialogo"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Zarra l'alerta d'actualización de clau"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Historietas"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Directrices d'a comunidat"
@@ -2740,12 +2855,12 @@ msgstr "Completa lo desafío"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Redactar una nueva publicación"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2753,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr "Redactar la respuesta"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Comprimindo video..."
@@ -2780,7 +2895,7 @@ msgstr "Configurau en <0>achustes de moderación0>."
msgid "Confirm"
msgstr "Confirmar"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Conteniu y multimedia"
msgid "Content and media"
msgstr "Conteniu y multimedia"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Conteniu y multimedia"
@@ -2889,7 +3004,7 @@ msgstr "Fondo d'o menú contextual, faga clic pa zarrar lo menú."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "Continar filo..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Contina con o siguient paso"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Conversa eliminada"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversa eliminada"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Versión de compilación copiada a lo portafuellas"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Copiar DID"
msgid "Copy host"
msgstr "Copiar host"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Copiar texto d'o mensache"
@@ -3052,7 +3175,7 @@ msgstr "Copiar valor de rechistro TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Politica de dreitos d'autor"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "No s'ha puesto salir d'este chat "
@@ -3094,6 +3217,10 @@ msgstr "No s'ha puesto salir d'este chat "
msgid "Could not load feed"
msgstr "No s'ha puesto cargar esta canal"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Crear"
@@ -3159,7 +3286,7 @@ msgstr "Crear un codigo QR pa pack d'inicio"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Crea un paquet d'inicio"
@@ -3174,13 +3301,14 @@ msgstr "Crea un paquet d'inicio pa yo"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Crea una cuenta"
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Crea un avatar"
@@ -3206,7 +3334,7 @@ msgstr "Crea un avatar"
msgid "Create another"
msgstr "Crea-ne unatro"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Crear una cuenta nueva"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Crea un reporte de {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Creau {0}"
@@ -3341,7 +3470,7 @@ msgstr "Per Defecto"
msgid "Default icons"
msgstr "Iconos per defecto"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Borrar lo rechistro de declaracion de conversa"
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Borrar conversa"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Borrar pa yo"
@@ -3399,11 +3528,11 @@ msgstr "Borrar pa yo"
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Borrar mensache"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Borrar mensache pa yo"
@@ -3413,7 +3542,7 @@ msgstr "Borrar la mía cuenta"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Borrar una publicación"
@@ -3434,12 +3563,12 @@ msgstr "Borrar esta lista?"
msgid "Delete this post?"
msgstr "Borrar esta publicación?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Eliminau"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Cuenta borrada"
@@ -3507,13 +3636,13 @@ msgstr "Achustar quí puede interactuar con esta publicación"
msgid "Dim"
msgstr "Tenue"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3521,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3534,8 +3663,8 @@ msgstr "Desactivar Correu 2FA"
msgid "Disable haptic feedback"
msgstr "Desactivar la retroalimentación haptica"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Desactivau"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Descartar"
msgid "Discard changes?"
msgstr "Descartar cambios?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Descartar borrador?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Descartar la publicación?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Descubrir nuevas canals"
msgid "Dismiss"
msgstr "Descartar"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Descartar error"
@@ -3673,7 +3802,7 @@ msgstr "No incluye desnudez."
msgid "Domain verified!"
msgstr "Dominio verificau!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3681,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Listo"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3741,15 +3873,6 @@ msgstr "Toca dos vegadas pa indicar que te fa goyo"
msgid "Download Bluesky"
msgstr "Descargar Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Descargar fichero CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Descargar fichero CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Editar"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Editar avatar"
@@ -3847,14 +3978,14 @@ msgstr "Editar avatar"
msgid "Edit Feeds"
msgstr "Editar canals"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Editar la imachen"
@@ -3868,7 +3999,16 @@ msgstr "Editar achustes d'interacción"
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Editar las mías noticias"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Editar Personas"
@@ -3925,7 +4060,7 @@ msgstr "Editar lo perfil"
msgid "Edit starter pack"
msgstr "Editar paquet d'inicio"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "Editar quí puede responder"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Edita lo tuyo paquet d'inicio"
@@ -3971,7 +4106,7 @@ msgstr "Adreza de correu electronico"
msgid "Email Resent"
msgstr "Correu electronico reninviau"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -4006,8 +4141,8 @@ msgstr "Incrusta esta publicación en o tuyo puesto web. Simplament copia lo sig
msgid "Embedded video player"
msgstr "Reproductor de video incrustau"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Activar"
@@ -4025,7 +4160,7 @@ msgstr "Activar conteniu adulto"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4038,13 +4173,12 @@ msgstr "Activar fichers multimedia externos"
msgid "Enable media players for"
msgstr "Reproducir multimedia de"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr "Escribe una clau"
msgid "Enter a word or tag"
msgstr "Escribe una parola u etiqueta"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4143,7 +4277,7 @@ msgstr "Cambia a pantalla completa"
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Error"
@@ -4185,23 +4319,23 @@ msgstr "Toz pueden responder"
msgid "Everybody can reply to this post."
msgstr "Toz pueden responder a esta publicación."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Toz"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Toz"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Toz"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "Excluye a los usuarios que sigues"
msgid "Exit fullscreen"
msgstr "Salir de pantalla completa"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Expandir lo texto alt"
@@ -4226,7 +4360,7 @@ msgstr "Expandir lo texto alt"
msgid "Expand list of users"
msgstr "Expandir lista d'usuarios"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Expandir u comprimir la publicación completa a la cual yes respondendo"
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr "Ixampla u reduce lo texto d'a publicación"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Uri esperada pa resolver un rechistro"
@@ -4277,9 +4411,9 @@ msgstr "Fichers multimedia explicitos u potencialment perturbadors."
msgid "Explicit sexual images."
msgstr "Imáchens sexuals explicitas."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4289,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,7 @@ msgstr "Fichers multimedia externos"
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 "Ye posible que fichers multimedia externos permitan que atros puestos recopilen datos sobre tu y lo tuyo dispositivo. No se ninvia u solicita garra tipo d'información dica que pretes lo botón de \"reproducir\"."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Fichers multimedia externos"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "No s'ha puesto cambiar l'identificador. Torna-lo a intentar."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "No s'ha puesto crear una clau d'aplicación. Torna-lo a intentar."
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Error en eliminar lo mensache"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "Error en cargar las preferencias de canals"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "Error en cargar las canals sucheridas"
msgid "Failed to load suggested follows"
msgstr "Error en cargar las sucherencias de seguimiento"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Error en clavar la publicación."
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Error en ninviar l'apelación, per favor intenta de nuevo."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Error en cambiar lo estau de silencio d'o filo, per favor intenta de nuevo"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4614,7 +4751,7 @@ msgstr "Error en actualizar las canals"
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Error en actualizar los achustes"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Canal"
@@ -4649,7 +4786,7 @@ msgstr "Canal"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Canal de {0}"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Menú d'a canal"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Canals"
@@ -4739,7 +4876,7 @@ msgstr "Filtrar la busqueda per idioma (actualment: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "Finalizando"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Buscar cuentas pa seguir"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr "Trobar chent a qui seguir"
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "Seguiu per <0>{0}0> y <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Seguiu per <0>{0}0>, <1>{1}1>, y {2, plural, one {# other} other {# others}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Seguidors de @{0} que conoixes"
@@ -4995,19 +5136,16 @@ msgstr "Seguindo {handle}"
msgid "Following feed preferences"
msgstr "Preferencias d'a canal de seguimiento"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Preferencias d'a canal de Seguimiento"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Te sigue"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Te sigue"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Fuent"
@@ -5069,7 +5207,7 @@ msgstr "La has olbidada?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr "De <0/>"
msgid "Generate a starter pack"
msgstr "Chenera un paquet d'inicio"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "Obtiene aduya"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Da-le una cara a lo tuyo perfil"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Tornar"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Tornar"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Tornar ta lo paso anterior"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Ir ta l'inicio"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Ir ta l'inicio"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Ir ta l'inicio"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Ir ta la conversiación con {0}"
@@ -5299,12 +5440,12 @@ msgstr "Ir ta lo siguient"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Ir ta lo perfil"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Identificador masiau largo. Intenta-lo con uno mas curto."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Etiqueta"
@@ -5458,8 +5615,8 @@ msgstr "Etiqueta {tag}"
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Aduya"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Aduya a que las personas sepan que no yes un bot puyando una foto u creando un avatar."
@@ -5652,18 +5809,18 @@ msgstr "Tenemos problemas pa cargar estes datos. Debaixo trobarás mas detalles.
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Pareixe que somos tenendo problemas pa cargar estes datos. Mira debaixo pa mas detalles. Si este problema sigue, per favor contacta-nos."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Aguarte! Somos dando acceso a videos gradualment, y encara yes en a lista d'espera. Torna a consultar luego!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Inicio"
@@ -5721,7 +5878,7 @@ msgstr "L'entiendo"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
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"
@@ -5757,7 +5914,7 @@ msgstr "Si eliminas esta lista, no podrás recuperar-la."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Si tiens lo tuyo propio dominio, puez fer-lo servir como identificador. Ixo te permite autoverificar la tuya identidat – <0>mas información0>."
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5765,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr "Si eliminas esta publicación, no podrás recuperar-la."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5773,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Si deseyas cambiar la tuya clau, te ninviaremos un codigo pa verificar que esta ye la tuya cuenta."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr "Si yes un desenrollador/a, puez alochar lo tuyo propio servidor."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Imachen"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Codigo de confirmación 2FA no ye valido."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Identificador no valido. Intenta-lo con un atro."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Obchecto de reporte invalido"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Codigo de Verificación no valido"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Nomás yes tu per agora! Anyade mas personas a lo tuyo paquet d'inicio buscando alto."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID de fayena: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID de fayena: {0}"
msgid "Jobs"
msgstr "Fayenas"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Fayenas"
msgid "Join Bluesky"
msgstr "Une-te a Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Une-te a la conversa"
msgid "Journalism"
msgstr "Periodismo"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "Etiquetas en a tuya cuenta"
msgid "Labels on your content"
msgstr "Etiquetas en o tuyo conteniu"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Achustes d'Idiomas"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Zaguero"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Aprender mas sobre esta advertencia"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Mas información sobre lo que ye publico en Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "Aprender-ne mas."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Deixar"
@@ -6276,7 +6464,7 @@ msgstr "Deixar chat"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Deixar conversa"
@@ -6284,13 +6472,13 @@ msgstr "Deixar conversa"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Deixar conversa"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Liuchero"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Me fa goyo ({0, plural, one {# me-fa-goyo} other {# me-fa-goyos}})"
@@ -6346,11 +6534,7 @@ msgstr "Da-le «me fa goyo» a 10 publicacions"
msgid "Like 10 posts to train the Discover feed"
msgstr "Da-le «me fa goyo» a 10 publicacions pa entrenar la canal de descubrimiento"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Dar «me fa goyo» a esta noticia"
@@ -6358,8 +6542,8 @@ msgstr "Dar «me fa goyo» a esta noticia"
msgid "Like this labeler"
msgstr "Como este etiquetador"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Le ha feito goyo a"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Le fa goyo a {0, plural, one {# usuario} other {# usuarios}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Le fa goyo a {likeCount, plural, one {# usuario} other {# usuarios}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Me fa goyo"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Me fa goyo en esta publicación"
@@ -6409,11 +6589,11 @@ msgstr "Me fa goyo en esta publicación"
msgid "Linear"
msgstr "Linial"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Lista"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "La lista ya no ye silenciada"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listas"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Cargando..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Rechistro"
@@ -6662,7 +6842,7 @@ msgstr "Pareixe que te falta una canal de seguimiento. <0>Fe clic aquí pa anyad
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr "Chestiona las tuyas parolas y etiquetas silenciadas"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
@@ -6698,13 +6877,12 @@ msgstr ""
msgid "Mark as read"
msgstr "Marcar como leyiu"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Fichers multipedia que pueden estar perturbadors u no adecuaus pa ciertas audiencias."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "usuarios mencionaus"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Mencions"
@@ -6775,22 +6949,22 @@ msgstr "Mensache {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Mensache eliminau"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Mensache eliminau"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6813,19 +6987,19 @@ msgstr "Lo mensache ye masiau largo"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Mensaches"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderación"
@@ -6894,7 +7064,7 @@ msgstr "Lista de moderación actualizada"
msgid "Moderation lists"
msgstr "Listas de moderación"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Listas de moderación"
@@ -6903,7 +7073,7 @@ msgstr "Listas de moderación"
msgid "moderation settings"
msgstr "achustes de moderación"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Estaus de moderación"
@@ -6949,7 +7119,7 @@ msgstr "Cintas"
msgid "Music"
msgstr "Mosica"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Silenciar"
@@ -6994,7 +7164,7 @@ msgstr "Silenciar la lista"
msgid "Mute these accounts?"
msgstr "Silenciar estas cuentas?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Silenciar filo"
msgid "Mute words & tags"
msgstr "Silenciar parolas y etiquetas"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Cuentas silenciadas"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Cuentas silenciadas"
@@ -7108,8 +7278,8 @@ msgstr "Navega a la siguient pantalla"
msgid "Navigates to your profile"
msgstr "Navega a lo tuyo perfil"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Nuevo chat"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7174,29 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Nueva publicación"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Nueva publicación"
@@ -7262,8 +7428,8 @@ msgstr "Noticias"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "Ya no sigues a {0}"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "No i hai mensaches encara"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "Encara no i hai notificacions!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Sin resultau"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Sin resultaus"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Desnudez no sexual"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "No trobau"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Achustes de notificación"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Sons de notificación"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Notificacions"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "agora"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Amortar"
@@ -7623,7 +7772,8 @@ msgstr "D'acuerdo"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "en<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Reiniciando"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Falta lo texto alternativo d'uno u mas videos."
@@ -7685,6 +7835,26 @@ msgstr "Falta lo texto alternativo d'uno u mas videos."
msgid "Only {0} can reply."
msgstr "Nomás {0} puede responder."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr "Nomás s'admite fichers d'imachen"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Nomás s'admiten fichers WebVTT (.vtt)"
@@ -7712,7 +7892,7 @@ msgstr "Ups, bella cosa ha saliu mal!"
msgid "Oops!"
msgstr "Ui!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Ubrir lo creyador de avatares"
@@ -7720,12 +7900,17 @@ msgstr "Ubrir lo creyador de avatares"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Ubrir opcions de conversación"
@@ -7739,16 +7924,16 @@ msgstr "Ubrir lo menú lateral"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Ubrir selector d'emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Ubrir la pantalla d'información d'a canal"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Ubrir menú d'opcions d'a canal"
@@ -7760,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Ubrir vinclo a {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr "Ubrir menú d'opcions d'a publicación"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr "Ubrir pachina d'historico"
msgid "Open system log"
msgstr "Ubrir rechistro d'o sistema"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Ubre detalles adicionals pa una dentrada de depuración"
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Ubrir camera d'o dispositivo"
@@ -7858,22 +8051,24 @@ msgstr "Ubrir compositor"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Ubre lo fluxo pa crear una nueva cuenta de Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
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"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Ubre este perfil"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "L'equipo de moderación ha recibiu la denuncia."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Los nuestros moderadors han revisau denuncias y han decidiu desactivar lo tuyo acceso a los chats en Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Los nuestros moderadors han revisau denuncias y han decidiu desactivar l
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Pachina no trobada"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Pachina no trobada"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Pausar video"
msgid "People"
msgstr "Personas"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Personas seguidas per @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Personas seguindo a @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Imáchens destinadas a adultos."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Clavar la canal"
@@ -8152,7 +8348,7 @@ msgstr "Clavar la canal"
msgid "Pin to home"
msgstr "Clavar en inicio"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Clavar en inicio"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Clavau"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} clavau en Inicio"
@@ -8236,7 +8432,7 @@ msgstr "Per favor, tría lo tuyo identificador."
msgid "Please choose your password."
msgstr "Per favor, tría la tuya clau."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "Per favor, completa la verificación CAPTCHA."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr "Escribe una clau. Ha de tener a lo menos 8 carácters."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Escribe un nombre unico pa esta clau d'aplicación u fe servir una chenerada aleatoriament."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "Escribe lo tuyo correu electronico."
msgid "Please enter your invite code."
msgstr "Escribe lo tuyo codigo d'invitación."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr "Escribe la tuya clau"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Per favor explica per qué creyes que esta etiqueta ye estada aplicada incorrectament per {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Per favor explica per qué creyes que los tuyos chats son estaus deshabilitaus incorrectament"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "Politica"
msgid "Porn"
msgstr "Pornografía"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Publicar"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Publicar-lo tot"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Publicación per {0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Publicación eliminada"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "No s'ha puesto cargar la publicación. Compreba la connexión a internet y torna-lo a intentar."
@@ -8454,7 +8650,7 @@ msgstr "Publicación amagada per tu"
msgid "Post interaction settings"
msgstr "Achustes d'interacción d'a publicación"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Configuración d'interacción d'a publicación"
@@ -8464,8 +8660,8 @@ msgstr "Configuración d'interacción d'a publicación"
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Publicación desclavada"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Las publicacions pueden estar silenciadas seguntes lo suyo texto, las su
msgid "Posts hidden"
msgstr "Publicacions amagadas"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "Presiona pa reintentar la connexión"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Presiona pa reintentar"
@@ -8536,7 +8728,7 @@ msgstr "Presiona pa reintentar"
msgid "Press to view followers of this account that you also follow"
msgstr "Preta pa veyer los seguidors d'esta cuenta que tamién sigues"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "Privacidat"
msgid "Privacy and security"
msgstr "Privacidat y seguranza"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privacidat y seguranza"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Politica de privacidat"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Procesando video..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Procesando..."
@@ -8602,8 +8793,8 @@ msgstr "Procesando..."
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "Lo codigo QR ha estau descargau!"
msgid "QR code saved to your camera roll!"
msgstr "Codigo QR alzau en o tuyo carret de fotos!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Citas deshabilitadas"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Citas"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Readchuntar cita"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr "Motivo d'o recurso"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr "Recomendacions"
msgid "Reconnect"
msgstr "Reconnectar"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Recargar conversacions"
@@ -8896,17 +9087,17 @@ msgstr "Borrar la cuenta"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Eliminar l'adchunto"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Eliminar l'avatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Eliminar lo banner"
@@ -8914,8 +9105,9 @@ msgstr "Eliminar lo banner"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Eliminar la incrustación"
@@ -8933,8 +9125,8 @@ msgstr "Eliminar la canal?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr "Sacar d'as tuyas canals?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Eliminar la imachen"
@@ -9009,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Eliminau per autor"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Eliminau per tu"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Respuestas"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Responder"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Responder ({0, plural, one {# respuesta} other {# respuestas}})"
@@ -9125,10 +9316,6 @@ msgstr "Respuesta amagada per l'autor d'o filo"
msgid "Reply Hidden by You"
msgstr "Respuesta amagada per tu"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "La configuración de respuestas ye triada per l'autor d'o filo"
@@ -9146,9 +9333,9 @@ msgstr "Visibilidat d'a respuesta actualizada"
msgid "Reply was successfully hidden"
msgstr "La respuesta s'ha amagau correctament"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Denunciar"
@@ -9164,13 +9351,13 @@ msgstr "Denunciar cuenta"
msgid "Report conversation"
msgstr "Denunciar conversación"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Finestra de denuncia"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Denunciar canal"
@@ -9179,7 +9366,7 @@ msgstr "Denunciar canal"
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Denunciar mensache"
@@ -9199,8 +9386,8 @@ msgstr "Denunciar paquet d'inicio"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Denuncia ninviada"
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Denunciar esta canal"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Denunciar esta lista"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Republicar"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Republicar ({0, plural, one {# republicación} other {# republicacions}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Tornau a publicar per tu"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "Republicacions d'esta publicación"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Requerir texto alternativo antes de publicar"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Demanda una adreza de correu pa dentrar con la tuya cuenta."
@@ -9328,7 +9534,11 @@ msgstr "Requeriu pa este furnidor"
msgid "Required in your region"
msgstr "Requeriu en a tuya rechión"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9393,15 +9603,16 @@ msgstr "Reintenta la zaguera acción, que presentó una error"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Reintenta la zaguera acción, que presentó una error"
msgid "Retry"
msgstr "Reintentar"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Torna a intentar cargar las opcions de denuncia"
@@ -9426,14 +9637,14 @@ msgstr "Torna a intentar cargar las opcions de denuncia"
msgid "Return to previous page"
msgstr "Tornar ta la pachina anterior"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Tornar ta la pachina d'inicio"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Tornar ta la pachina anterior"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Alzar cambios"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Alzar codigo QR"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Alzar en as mías canals"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "Canals alzadas"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Alzau en as tuyas canals"
@@ -9551,8 +9764,8 @@ msgstr "Alzau en as tuyas canals"
msgid "Say hello!"
msgstr "Di ola!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "Desplazar enta alto"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Buscar"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Mirar en as publicacions de @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Mirar en as mías publicacions"
msgid "Search posts"
msgstr "Mirar en publicacions"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Buscar perfils"
msgid "Search..."
msgstr "Mirar..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Mira perfils"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "Tría una color"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "Triar GIF"
msgid "Select GIF \"{0}\""
msgstr "Triar GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Triar idioma..."
msgid "Select languages"
msgstr "Triar idiomas"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Triar un servicio de moderación"
@@ -9904,11 +10117,11 @@ msgstr "Tría los tuyos intereses d'as opcions contino"
msgid "Select your preferred language for translations in your feed."
msgstr "Tría en qué idioma deseyas traducir las publicacions d'a tuya canal."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Ninviar correu"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Ninviar comentarios"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Ninviar mensache"
@@ -9952,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr "Ninviar publicación a..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Ninviar denuncia a {title}"
@@ -9960,7 +10173,7 @@ msgstr "Ninviar denuncia a {title}"
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Ninviar vía mensache directo"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Estableix lo correu electronico pa restablir la clau"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Achustes"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "Actividat sexual u desnudez erotica."
msgid "Sexually Suggestive"
msgstr "Sexualment suchestivo"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr "Compartir codigo QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Comparte esta canal"
@@ -10151,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Prebador de Preferencias Compartidas"
@@ -10167,16 +10382,16 @@ msgstr "Veyer texto alternativo"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Veyer de totas trazas"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Amostrar advertencia y filtrar d'as canals"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr "Amuestra lo conteniu"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr "Inicia sesión u crea una cuenta pa unir-te a la conversación!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Entrar con una cuenta que no ye en a lista"
@@ -10337,6 +10558,10 @@ msgstr "Entrar con una cuenta que no ye en a lista"
msgid "Sign in to Bluesky or create a new account"
msgstr "Inicia sesión en Bluesky u crea una nueva cuenta"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Zarrar sesión"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Zarrar sesión"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Salir?"
@@ -10391,7 +10616,7 @@ msgstr "Blincar"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Mas chicot"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Bella cosa no yera bien en os datos que yes mirando de denunciar. Contacta con o soporte."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "I ha habiu una error"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "I ha habiu una error!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "I ha habiu una error. Intenta-lo atra vegada."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Bella cosa va mal? Fe-nos-lo saber."
@@ -10568,7 +10798,7 @@ msgstr "Esportes"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Iniciar un nuevo chat"
@@ -10582,17 +10812,17 @@ msgstr "Empecipia a anyadir chent"
msgid "Start adding people!"
msgstr "Empecipia a anyadir chent!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Iniciar chat con {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Paquet d'inicio"
@@ -10654,12 +10884,12 @@ msgstr "Almagacenamiento limpio, te fa falta reiniciar l'aplicación agora."
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Libro de cuentos"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Ninviar"
@@ -10684,9 +10914,9 @@ msgstr "Ninviar recurso"
msgid "Submit Appeal"
msgstr "Ninviar recurso"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Ninviar denuncia"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Subscribir-se"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Exito!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Soporte"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Cambiar cuentas"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Cambiar cuentas"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Cambiar a {0}"
@@ -10828,7 +11062,7 @@ msgstr "Nomás etiquetas"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Toca pa descartar"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Condicions"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Texto y etiquetas"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Campo d'introducción de texto"
@@ -11049,6 +11301,11 @@ msgstr "Los achustes siguients serán usaus por defecto cuan se creyen nuevas pu
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "La Politica de privacidat s'ha tresladau a <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "I ha habiu un problema en contactar con o servidor"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "I ha habiu un problema en contactar con o servidor, compreba la tuya connexión y torna-lo a intentar."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "I ha habiu un problema en obtener las notificacions. Toca aquí pa intentar de nuevo."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "I ha habiu un problema en obtener las publicacions. Toca aquí pa intentar de nuevo."
@@ -11161,7 +11420,7 @@ msgstr "I ha habiu un problema trayendo la tuya información de servicio"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "I ha habiu un problema eliminando esta canal. Compreba la tuya connexión y torna-lo a intentar."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Esta apelación será ninviada a <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Esta apelación será ninviada a lo servicio de moderación de Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Esta apelación será ninviada a lo servicio de moderación de Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Este conteniu no ye disponible perque un d'os usuarios involucraus ha bl
msgid "This content is not viewable without a Bluesky account."
msgstr "Este conteniu no se puede veyer sin una cuenta de Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Esta conversa ye con una cuenta eliminada u desactivada. Preta pa veyer
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr "Esta canal ya no ye en linia. Somos amostrando <0>Descubrir0> en cuent
msgid "This handle is reserved. Please try a different one."
msgstr "Este identificador ye reservau. Intenta-lo con una diferent."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr "Esta lista – creada per tu – contiene posibles violacions d'as direc
msgid "This list is empty."
msgstr "Esta lista ye vueda."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "L'autor d'esta publicación ha deshabilitau las citas de publicacions."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Esta respuesta será clasificada en una sección amagada a la fin d'o tuyo filo y silenciará las notificacions pa respuestas posteriors, tanto pa tu como pa atros."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr "Este usuario no tiene seguidors."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Este usuario t'ha blocau. No puez veyer lo suyo conteniu."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Preferencias de filos"
msgid "Threaded"
msgstr "En filos"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Preferencias de filos"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Pa desactivar lo metodo de 2FA per correu electronico, verifica per favor lo tuyo acceso a l'adreza de correu electronico."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11646,12 +11927,12 @@ msgstr "Alto"
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Tema"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Vídeos populars"
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11763,11 +12044,15 @@ msgstr "No se puede contactar con o tuyo furnidor. Compreba la tuya connexión a
msgid "Unable to delete"
msgstr "No se puede eliminar"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr "Deixar de seguir esta cuenta"
msgid "Unfollows the user"
msgstr "Deixa de seguir a l'usuario"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Garra d'os tuyos etiquetadors subscritos soporta este tipo de denuncia."
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Ya no me fa goyo ({0, plural, one {# me-fa-goyo} other {# me-fa-goyos}})"
@@ -11918,7 +12203,7 @@ msgstr "Ya no me fa goyo ({0, plural, one {# me-fa-goyo} other {# me-fa-goyos}})
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Deixar de silenciar conversación"
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Desclavar"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Desclavar la canal"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Desclavar d'inicio"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Desclavar lista de moderación"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} ye desclavau d'Inicio"
@@ -12030,11 +12315,11 @@ msgstr "Dar-se de baixa d'este etiquetador"
msgid "Unsubscribed from list"
msgstr "Dau de baixa d'a lista"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "Actualizar <0>{displayName}0> en Listas"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "Actualizar a {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Ha fallau l'actualización d'a visibilidat d'a respuesta"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Puya una foto en cuenta"
@@ -12098,39 +12395,40 @@ msgstr "Puya una foto en cuenta"
msgid "Upload a text file to:"
msgstr "Carga un fichero de texto en:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Puyar dende la camera"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Puyar dende los tuyos fichers"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Puyar dende la biblioteca"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Cargando imáchens..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Cargando thumbnail d'o vinclo..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Cargando video..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Usuario blocau"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Lista d'usuarios per {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "usuarios seguius per <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "usuarios que siguen a <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Verificar rechistro DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12349,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr "Video"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Lo video no s'ha puesto procesar"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Canal de video"
@@ -12419,7 +12717,7 @@ msgstr "Video no trobau."
msgid "Video settings"
msgstr "Configuración d'o video"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Video cargau"
@@ -12432,18 +12730,18 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videos"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Veyer l'avatar de {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Veyer lo perfil de {0}"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Veyer detalles"
msgid "View full thread"
msgstr "Veyer filo completo"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Veyer información sobre estas etiquetas"
@@ -12522,7 +12828,7 @@ msgstr "Veyer mas"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "Veyer perfil"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Veyer l'avatar"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "Veyer lo servicio de etiquetau proporcionau per @{0}"
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Veyer usuarios a qui les fa goyo esta canal"
@@ -12596,8 +12902,8 @@ msgstr "Veyer las tuyas cuentas silenciadas"
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Veyer la imachen completa"
@@ -12640,8 +12946,8 @@ msgstr "Advertir de conteniu"
msgid "Warn content and filter from feeds"
msgstr "Advertir de conteniu y filtrar d'as canals"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr "No hemos puesto trobar resultaus pa este tema."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "No hemos puesto cargar esta conversación"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "No hemos puesto determinar si tiens permiso pa puyar videos. Per favor, torna a intentar-lo. xxxxxxxxxxxxxxxxxxxxxxxxxx"
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "Somos tenendo problemas de ret, intenta de nuevo"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Vai! No trobamos la pachina que buscabas."
@@ -12865,12 +13175,12 @@ 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.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Qué fas?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12878,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr "Quí puede interactuar con esta publicación?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Quí puede responder"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Vai!"
@@ -12939,7 +13249,7 @@ msgstr "Per qué creyes que este paquet d'inicio ha d'estar revisau?"
msgid "Why should this user be reviewed?"
msgstr "Per qué creyes que este usuario ha d'estar revisau?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Redacta una publicación"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Redacta una respuesta"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Lo servidor ha tornau un DID incorrecto. Recibiu: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr ""
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "No tiens permiso pa puyar videos."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Puez continar las conversacions en curso independientment d'a configuración que tríes."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "Puez reactivar la tuya cuenta pa continar iniciando sesión. Lo tuyo per
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr "Puez actualizar-lo mas enta debant dende la tuya configuración."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "No tiens garra canal alzada."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "Has de seguir a lo menos a siet personas mas pa chenerar un paquet d'ini
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Saldrás de totas las tuyas cuentas."
@@ -13390,7 +13710,7 @@ msgstr "Agora recibirás notificacions d'este filo"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Ninviamos un codigo de reinicio a lo tuyo correu. Escribe ixe codigo aquí y dimpués escribe la tuya nueva clau."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Has harribau a la fin d'a tuya canal! Troba mas cuentas pa seguir."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Has alcanzau lo tuyo limite diario de carga de videos (masiaus bytes)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr "La tuya cuenta ye estada suspendida"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "La tuya cuenta encara no tiene prou antiguidat como pa puyar videos. Torna a intentar-lo mas enta debant."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Lo tuyo repositorio de cuenta, que contiene toz los rechistros de datos publicos, puede estar descargau como un fichero \"CAR\". Este fichero no incluye fichers multimedia incrustaus, como imáchens, ni los tuyos datos privaus, que han d'estar obtenius per separau."
@@ -13519,7 +13847,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Los tuyos chats son estau deshabilitaus"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "Lo tuyo correu electronico pareixe no estar valido."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13582,7 +13910,7 @@ msgstr "La tuya canal de Seguindo ye vueda! Sigue a mas usuarios pa veyer las su
msgid "Your full handle will be <0>@{0}0>"
msgstr "Lo tuyo identificador completo será <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "Las tuyas parolas silenciadas"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "La tuya denuncia se ninviará a <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "La tuya denuncia se ninviará a <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/ar/messages.po b/src/locale/locales/ar/messages.po
index 0761cba3cb..78ebb184f0 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\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"
@@ -86,9 +86,14 @@ msgstr ""
msgid "{0, plural, one {# month} other {# months}}"
msgstr ""
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr ""
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:203
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:639
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr ""
msgid "{0}s"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr ""
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:850
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:811
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,8 +643,8 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:33
-msgid "{memberCount}/{MEMBER_LIMIT}"
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
+msgid "{memberCount}/{memberLimit}"
msgstr ""
#: src/features/liveNow/utils.ts:10
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:52
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:47
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,6 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -802,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -825,7 +892,11 @@ msgstr ""
msgid "A screenshot of 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:547
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
+msgid "A selected recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -841,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -854,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr ""
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr ""
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -939,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr ""
@@ -993,8 +1079,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1006,16 +1092,16 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1029,7 +1115,7 @@ msgstr ""
msgid "Add App Password"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1037,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1046,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1056,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
+#: src/components/moderation/ReportDialog/index.tsx:528
#: src/components/moderation/ReportDialog/index.tsx:532
-#: src/components/moderation/ReportDialog/index.tsx:536
msgid "Add more details (optional)"
msgstr ""
@@ -1074,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1159,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:550
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1222,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1235,7 +1321,7 @@ msgstr ""
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1272,13 +1358,13 @@ msgstr ""
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1332,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr ""
@@ -1356,7 +1442,7 @@ msgid "Alt Text"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr ""
@@ -1381,7 +1467,7 @@ msgstr ""
msgid "An error occurred"
msgstr ""
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr ""
@@ -1426,11 +1512,11 @@ msgstr ""
msgid "An error occurred while trying to follow all"
msgstr ""
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1455,20 +1541,20 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:56
-msgid "An issue occurred creating the group chat, please try again"
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
+msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:42
-msgid "An issue occurred starting the chat, please try again"
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
+msgid "An issue occurred starting the chat, please try again."
msgstr ""
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
@@ -1484,7 +1570,7 @@ msgstr ""
msgid "An issue occurred, please try again."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1533,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1549,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1591,7 +1681,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr ""
@@ -1612,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr ""
@@ -1626,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr ""
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1669,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1682,23 +1772,23 @@ msgstr ""
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1746,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1761,12 +1851,12 @@ msgstr ""
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1777,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1790,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1834,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:94
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1871,7 +1963,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1881,8 +1973,8 @@ msgstr ""
msgid "Block {displayName}"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:277
-#: src/components/dms/ConvoMenu.tsx:281
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749
#: src/screens/Messages/components/RequestButtons.tsx:149
@@ -1892,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1906,8 +1998,14 @@ msgstr ""
msgid "Block accounts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:147
-msgid "Block and Delete"
+#: src/components/dms/AfterReportDialog.tsx:148
+msgid "Block and delete"
+msgstr ""
+
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:167
+msgctxt "button"
+msgid "Block and leave"
msgstr ""
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
@@ -1922,20 +2020,29 @@ msgstr ""
msgid "Block these accounts?"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:188
-#: src/components/dms/AfterReportDialog.tsx:191
+#: src/components/dms/AfterReportConversationDialog.tsx:221
+#: src/components/dms/AfterReportConversationDialog.tsx:224
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:153
-msgid "Block User"
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:182
+msgctxt "button"
+msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:184
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:196
+#: src/components/dms/AfterReportConversationDialog.tsx:217
+msgid "Block user and/or leave this conversation"
+msgstr ""
+
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr ""
@@ -1943,13 +2050,13 @@ msgstr ""
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -2008,7 +2115,7 @@ msgstr ""
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2032,7 +2139,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:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2116,23 +2223,30 @@ msgstr ""
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:853
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:74
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2160,7 +2274,7 @@ msgstr ""
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr ""
@@ -2171,8 +2285,8 @@ msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2191,10 +2305,10 @@ msgstr ""
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2207,11 +2321,11 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr ""
@@ -2227,9 +2341,9 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -2243,7 +2357,7 @@ msgstr ""
msgid "Captions & alt text"
msgstr ""
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2276,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:449
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2289,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:394
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2323,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr ""
@@ -2340,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2352,31 +2473,35 @@ msgstr ""
msgid "Chat messages - sound"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:199
+#: src/components/dms/ConvoMenu.tsx:216
msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/Navigation.tsx:588
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
+msgid "Chat recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:82
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/components/dms/ConvoMenu.tsx:84
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr ""
@@ -2393,14 +2518,14 @@ msgstr ""
msgid "Chat unlocked"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:201
+#: src/components/dms/ConvoMenu.tsx:218
msgctxt "toast"
msgid "Chat unmuted"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2454,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2508,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2516,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2533,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2542,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2555,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr ""
@@ -2569,24 +2694,30 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
-#: src/components/dms/AfterReportDialog.tsx:93
-#: src/components/dms/AfterReportDialog.tsx:98
+#: src/components/dms/AddMembersFlow.tsx:377
+#: src/components/dms/AfterReportConversationDialog.tsx:91
+#: src/components/dms/AfterReportConversationDialog.tsx:96
+#: src/components/dms/AfterReportConversationDialog.tsx:247
+#: src/components/dms/AfterReportConversationDialog.tsx:252
+#: src/components/dms/AfterReportDialog.tsx:94
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2594,14 +2725,14 @@ msgstr ""
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2618,6 +2749,10 @@ msgstr ""
msgid "Close alert"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr ""
@@ -2628,8 +2763,9 @@ msgstr ""
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr ""
@@ -2643,7 +2779,7 @@ msgid "Close image"
msgstr ""
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2654,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr ""
@@ -2666,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2696,7 +2840,7 @@ msgid "Comics"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr ""
@@ -2711,12 +2855,12 @@ msgstr ""
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr ""
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2724,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr ""
@@ -2751,7 +2895,7 @@ msgstr ""
msgid "Confirm"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2813,7 +2957,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr ""
@@ -2860,7 +3004,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2879,38 +3023,51 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:148
-#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr ""
+#: src/components/dms/AfterReportConversationDialog.tsx:172
+#: src/components/dms/AfterReportConversationDialog.tsx:179
+msgctxt "toast"
+msgid "Conversation left"
+msgstr ""
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2962,6 +3119,7 @@ msgstr ""
msgid "Copy host"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -2992,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr ""
@@ -3017,7 +3175,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr ""
@@ -3030,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3049,8 +3207,9 @@ msgstr ""
msgid "Could not follow all matches. {0}"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:138
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportConversationDialog.tsx:158
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr ""
@@ -3058,13 +3217,17 @@ msgstr ""
msgid "Could not load feed"
msgstr ""
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
msgid "Could not load list"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:205
+#: src/components/dms/ConvoMenu.tsx:222
msgid "Could not mute chat"
msgstr ""
@@ -3103,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr ""
@@ -3123,7 +3286,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr ""
@@ -3138,13 +3301,14 @@ msgstr ""
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3162,7 +3326,7 @@ msgstr ""
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr ""
@@ -3170,7 +3334,7 @@ msgstr ""
msgid "Create another"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3192,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:713
-#: src/components/moderation/ReportDialog/index.tsx:759
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr ""
@@ -3220,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:461
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr ""
@@ -3305,7 +3470,7 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3346,18 +3511,15 @@ msgstr ""
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:194
-#: src/components/dms/AfterReportDialog.tsx:197
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:150
-msgid "Delete Conversation"
-msgstr ""
-
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr ""
@@ -3366,11 +3528,11 @@ msgstr ""
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr ""
@@ -3380,7 +3542,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr ""
@@ -3401,12 +3563,12 @@ msgstr ""
msgid "Delete this post?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:189
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr ""
@@ -3474,13 +3636,13 @@ msgstr ""
msgid "Dim"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3488,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3501,8 +3663,8 @@ msgstr ""
msgid "Disable haptic feedback"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3514,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3527,9 +3689,9 @@ msgstr ""
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3540,19 +3702,19 @@ msgstr ""
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3580,11 +3742,11 @@ msgstr ""
msgid "Dismiss"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr ""
@@ -3640,7 +3802,7 @@ msgstr ""
msgid "Domain verified!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3648,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3667,15 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
-#: src/components/dms/AfterReportDialog.tsx:144
+#: src/components/dms/AfterReportConversationDialog.tsx:164
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3691,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr ""
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3707,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr ""
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr ""
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr ""
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3725,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3789,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3804,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr ""
@@ -3813,14 +3978,14 @@ msgstr ""
msgid "Edit Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr ""
@@ -3834,7 +3999,16 @@ msgstr ""
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3852,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:495
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr ""
@@ -3891,7 +4060,7 @@ msgstr ""
msgid "Edit starter pack"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:494
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3903,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr ""
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr ""
@@ -3937,7 +4106,7 @@ msgstr ""
msgid "Email Resent"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -3972,8 +4141,8 @@ msgstr ""
msgid "Embedded video player"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr ""
@@ -3991,7 +4160,7 @@ msgstr ""
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4004,13 +4173,12 @@ msgstr ""
msgid "Enable media players for"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4057,8 +4225,8 @@ msgstr ""
msgid "Enter a word or tag"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4109,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr ""
@@ -4151,23 +4319,23 @@ msgstr ""
msgid "Everybody can reply to this post."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4183,8 +4351,8 @@ msgstr ""
msgid "Exit fullscreen"
msgstr ""
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr ""
@@ -4192,7 +4360,7 @@ msgstr ""
msgid "Expand list of users"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr ""
@@ -4204,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -4243,9 +4411,9 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4255,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4288,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr ""
@@ -4302,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4320,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4333,7 +4502,7 @@ msgstr ""
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4348,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr ""
@@ -4360,24 +4529,24 @@ msgstr ""
msgid "Failed to delete starter pack"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:343
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4393,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:370
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4422,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4459,16 +4627,15 @@ msgstr ""
msgid "Failed to load suggested follows"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:391
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:357
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4477,7 +4644,7 @@ msgid "Failed to pin post"
msgstr ""
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4491,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4508,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4535,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4546,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr ""
@@ -4555,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:394
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4563,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4580,7 +4751,7 @@ msgstr ""
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr ""
@@ -4607,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr ""
@@ -4615,7 +4786,7 @@ msgstr ""
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr ""
@@ -4628,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr ""
@@ -4652,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr ""
@@ -4705,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4713,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4734,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr ""
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4765,7 +4936,7 @@ msgstr ""
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4910,8 +5081,12 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr ""
@@ -4961,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr ""
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr ""
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr ""
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr ""
@@ -5035,7 +5207,7 @@ msgstr ""
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5052,35 +5224,35 @@ msgstr ""
msgid "Generate a starter pack"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5088,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr ""
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5140,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:180
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr ""
@@ -5179,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr ""
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr ""
@@ -5203,7 +5380,9 @@ msgid "Go back to previous step"
msgstr ""
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr ""
@@ -5213,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr ""
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr ""
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5250,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr ""
@@ -5262,19 +5437,19 @@ msgstr ""
msgid "Go to next"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:255
+#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:251
+#: src/components/dms/ConvoMenu.tsx:268
msgid "Go to user's profile"
msgstr ""
@@ -5286,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5306,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:383
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:350
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:338
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
-#: src/screens/Messages/ConversationSettings/index.tsx:89
+#: src/Navigation.tsx:490
+#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5387,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr ""
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5412,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr ""
@@ -5424,8 +5615,8 @@ msgstr ""
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5449,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr ""
@@ -5618,18 +5809,18 @@ msgstr ""
msgid "Hmmmm, we couldn't load that moderation service."
msgstr ""
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr ""
@@ -5679,7 +5870,6 @@ msgid "I have my own domain"
msgstr ""
#: src/components/dms/BlockedByListDialog.tsx:55
-#: src/components/dms/ReportConversationPrompt.tsx:21
msgid "I understand"
msgstr ""
@@ -5688,7 +5878,7 @@ msgstr ""
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
@@ -5724,7 +5914,7 @@ msgstr ""
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5732,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5740,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5753,23 +5942,33 @@ msgstr ""
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr ""
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5784,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5829,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5848,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5930,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr ""
@@ -5948,6 +6151,10 @@ msgstr ""
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr ""
@@ -5977,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:508
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -5991,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6041,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr ""
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr ""
@@ -6050,6 +6257,11 @@ msgstr ""
msgid "Jobs"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6057,6 +6269,15 @@ msgstr ""
msgid "Join Bluesky"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6066,8 +6287,8 @@ msgstr ""
msgid "Journalism"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6110,7 +6331,7 @@ msgstr ""
msgid "Labels on your content"
msgstr ""
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr ""
@@ -6141,7 +6362,7 @@ msgid "Latest"
msgstr ""
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6196,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr ""
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6206,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6219,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:542
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr ""
@@ -6237,19 +6458,27 @@ msgstr ""
msgid "Leave chat"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:229
-#: src/components/dms/ConvoMenu.tsx:233
-#: src/components/dms/ConvoMenu.tsx:299
-#: src/components/dms/ConvoMenu.tsx:303
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/AfterReportConversationDialog.tsx:229
+#: src/components/dms/AfterReportConversationDialog.tsx:233
+#: src/components/dms/ConvoMenu.tsx:246
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/dms/ConvoMenu.tsx:316
+#: src/components/dms/ConvoMenu.tsx:320
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:174
+msgctxt "button"
+msgid "Leave conversation"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:541
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6286,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -6305,11 +6534,7 @@ msgstr ""
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr ""
@@ -6317,8 +6542,8 @@ msgstr ""
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr ""
@@ -6336,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr ""
@@ -6368,11 +6589,11 @@ msgstr ""
msgid "Linear"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr ""
@@ -6458,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr ""
@@ -6504,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6554,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:522
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:520
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:522
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr ""
@@ -6621,7 +6842,7 @@ msgstr ""
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6646,24 +6867,22 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:241
-#: src/components/dms/ConvoMenu.tsx:245
+#: src/components/dms/ConvoMenu.tsx:258
+#: src/components/dms/ConvoMenu.tsx:262
msgid "Mark as read"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6686,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:28
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr ""
@@ -6734,22 +6949,22 @@ msgstr ""
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6772,19 +6987,19 @@ msgstr ""
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr ""
-#: src/components/dms/MessageItem.tsx:651
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:646
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6797,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6809,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr ""
@@ -6853,7 +7064,7 @@ msgstr ""
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr ""
@@ -6862,7 +7073,7 @@ msgstr ""
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr ""
@@ -6908,7 +7119,7 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:487
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr ""
@@ -6936,8 +7147,8 @@ msgstr ""
msgid "Mute accounts"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:260
-#: src/components/dms/ConvoMenu.tsx:267
+#: src/components/dms/ConvoMenu.tsx:277
+#: src/components/dms/ConvoMenu.tsx:284
msgid "Mute conversation"
msgstr ""
@@ -6953,7 +7164,7 @@ msgstr ""
msgid "Mute these accounts?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:485
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -6991,7 +7202,7 @@ msgstr ""
msgid "Mute words & tags"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:487
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -6999,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr ""
@@ -7067,8 +7278,8 @@ msgstr ""
msgid "Navigates to your profile"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:345
-#: src/components/moderation/ReportDialog/index.tsx:362
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7095,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:107
-#: src/components/dms/dialogs/NewChatDialog.tsx:117
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7133,23 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
-#: src/components/dms/InitiateChatFlow.tsx:715
-#: src/components/dms/InitiateChatFlow.tsx:743
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#. Button used to create a new group chat.
+#. Button used to create a new group chat.
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
+msgctxt "action"
+msgid "New group chat"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7180,7 +7393,7 @@ msgid "New post"
msgstr ""
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr ""
@@ -7215,8 +7428,8 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7288,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7315,7 +7528,7 @@ msgstr ""
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr ""
@@ -7331,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr ""
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7388,8 +7601,8 @@ msgid "No result"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr ""
@@ -7462,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7475,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7501,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr ""
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr ""
@@ -7554,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr ""
@@ -7576,7 +7772,8 @@ msgstr ""
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:658
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7601,27 +7798,35 @@ msgstr ""
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
+msgid "One of the selected recipients does not allow group chats."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
+msgid "One of the selected recipients has blocked you and cannot be messaged."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr ""
@@ -7630,6 +7835,26 @@ msgstr ""
msgid "Only {0} can reply."
msgstr ""
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7640,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr ""
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr ""
@@ -7657,7 +7892,7 @@ msgstr ""
msgid "Oops!"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr ""
@@ -7665,12 +7900,17 @@ msgstr ""
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr ""
@@ -7684,16 +7924,16 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr ""
@@ -7705,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:120
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr ""
@@ -7735,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7762,6 +8006,10 @@ msgstr ""
msgid "Open system log"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7783,7 +8031,7 @@ msgstr ""
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr ""
@@ -7803,22 +8051,24 @@ msgstr ""
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7835,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7864,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr ""
@@ -7940,12 +8190,14 @@ msgstr ""
msgid "Our blog post"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:88
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportConversationDialog.tsx:86
+#: src/components/dms/AfterReportConversationDialog.tsx:213
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
@@ -7953,14 +8205,15 @@ msgstr ""
msgid "Owner"
msgstr ""
-#: src/components/Lists.tsx:205
-#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
-msgid "Page not found"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
msgstr ""
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
+#: src/components/Lists.tsx:205
+#: src/components/Lists.tsx:220
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
+msgid "Page not found"
msgstr ""
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
@@ -8011,34 +8264,34 @@ msgstr ""
msgid "People"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8084,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr ""
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr ""
@@ -8095,7 +8348,7 @@ msgstr ""
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr ""
@@ -8109,8 +8362,8 @@ msgid "Pinned"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr ""
@@ -8179,7 +8432,7 @@ msgstr ""
msgid "Please choose your password."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8187,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr ""
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8208,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8228,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8236,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8249,7 +8502,7 @@ msgstr ""
msgid "Please enter your invite code."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8266,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr ""
@@ -8309,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8326,7 +8579,7 @@ msgstr ""
msgid "Porn"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr ""
@@ -8346,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8360,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr ""
@@ -8372,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr ""
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
@@ -8397,7 +8650,7 @@ msgstr ""
msgid "Post interaction settings"
msgstr ""
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8407,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8434,7 +8687,6 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8448,10 +8700,6 @@ msgstr ""
msgid "Posts hidden"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8471,6 +8719,7 @@ msgstr ""
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr ""
@@ -8479,7 +8728,7 @@ msgstr ""
msgid "Press to view followers of this account that you also follow"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8502,21 +8751,20 @@ msgstr ""
msgid "Privacy and security"
msgstr ""
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8529,15 +8777,15 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr ""
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr ""
@@ -8545,8 +8793,8 @@ msgstr ""
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8578,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8625,10 +8873,6 @@ msgstr ""
msgid "QR code saved to your camera roll!"
msgstr ""
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8654,8 +8898,8 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr ""
@@ -8676,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8688,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8707,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8755,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8784,6 +9028,10 @@ msgstr ""
msgid "Reconnect"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8793,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr ""
@@ -8839,17 +9087,17 @@ msgstr ""
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr ""
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr ""
@@ -8857,8 +9105,9 @@ msgstr ""
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr ""
@@ -8876,8 +9125,8 @@ msgstr ""
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8902,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr ""
@@ -8952,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:224
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr ""
-#: src/components/Post/Embed/index.tsx:222
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr ""
@@ -8978,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9032,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr ""
@@ -9047,14 +9295,14 @@ msgstr ""
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9068,10 +9316,6 @@ msgstr ""
msgid "Reply Hidden by You"
msgstr ""
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
@@ -9089,9 +9333,9 @@ msgstr ""
msgid "Reply was successfully hidden"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:533
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr ""
@@ -9100,21 +9344,20 @@ msgstr ""
msgid "Report account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:287
-#: src/components/dms/ConvoMenu.tsx:291
-#: src/components/dms/ReportConversationPrompt.tsx:17
+#: src/components/dms/ConvoMenu.tsx:304
+#: src/components/dms/ConvoMenu.tsx:308
#: src/screens/Messages/components/RequestButtons.tsx:160
#: src/screens/Messages/components/RequestButtons.tsx:163
msgid "Report conversation"
msgstr ""
#: src/components/moderation/ReportDialog/index.tsx:98
-#: src/components/moderation/ReportDialog/index.tsx:265
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr ""
@@ -9123,7 +9366,7 @@ msgstr ""
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr ""
@@ -9141,12 +9384,15 @@ msgstr ""
msgid "Report starter pack"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:85
-#: src/components/dms/AfterReportDialog.tsx:177
+#: src/components/dms/AfterReportConversationDialog.tsx:83
+#: src/components/dms/AfterReportConversationDialog.tsx:210
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:51
+#: src/components/moderation/ReportDialog/copy.ts:65
msgid "Report this conversation"
msgstr ""
@@ -9154,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:532
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9163,7 +9409,7 @@ msgid "Report this list"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9197,10 +9443,6 @@ msgstr ""
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9223,8 +9465,8 @@ msgid "Reposted by you"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9233,13 +9475,17 @@ msgid "Reposts of this post"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9247,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9269,7 +9534,11 @@ msgstr ""
msgid "Required in your region"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9334,15 +9603,16 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9356,7 +9626,7 @@ msgstr ""
msgid "Retry"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:296
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9367,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr ""
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr ""
@@ -9395,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9420,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:229
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9459,12 +9731,12 @@ msgstr ""
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9475,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr ""
@@ -9492,8 +9764,8 @@ msgstr ""
msgid "Say hello!"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9517,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr ""
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9608,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9618,13 +9890,13 @@ msgstr ""
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9700,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9769,7 +10041,7 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9791,7 +10063,7 @@ msgstr ""
msgid "Select languages"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:434
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9845,11 +10117,11 @@ msgstr ""
msgid "Select your preferred language for translations in your feed."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9862,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr ""
@@ -9880,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr ""
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr ""
@@ -9893,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:824
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9901,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9915,7 +10187,7 @@ msgid "Send via direct message"
msgstr ""
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -9956,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -9971,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10020,10 +10292,12 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
+#: src/components/MediaPreview.tsx:235
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10039,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10065,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10092,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr ""
@@ -10108,16 +10382,16 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10211,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr ""
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10238,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10270,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr ""
@@ -10278,6 +10558,10 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10289,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr ""
@@ -10300,7 +10584,7 @@ msgid "Sign Out"
msgstr ""
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr ""
@@ -10332,7 +10616,7 @@ msgstr ""
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10346,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10354,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10403,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10428,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
-#: src/screens/Messages/ConversationSettings/index.tsx:110
+#: src/screens/Messages/Conversation.tsx:137
+#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:291
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10458,11 +10747,11 @@ msgstr ""
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:239
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr ""
@@ -10509,7 +10798,7 @@ msgstr ""
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:123
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr ""
@@ -10523,17 +10812,17 @@ msgstr ""
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:779
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr ""
@@ -10595,12 +10884,12 @@ msgstr ""
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10612,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr ""
@@ -10625,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:512
-#: src/components/moderation/ReportDialog/index.tsx:573
-#: src/components/moderation/ReportDialog/index.tsx:580
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10636,13 +10925,13 @@ msgid "Subscribe"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:377
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:386
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:385
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10673,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10711,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10721,12 +11014,20 @@ msgstr ""
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
+msgid "Suspended accounts cannot participate in a group chat."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
+msgid "Suspended accounts cannot participate in chat."
+msgstr ""
+
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr ""
@@ -10735,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10761,7 +11062,7 @@ msgstr ""
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10787,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10857,7 +11176,7 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10872,7 +11191,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr ""
@@ -10982,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -10990,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr ""
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11034,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11048,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11059,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -11069,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -11094,7 +11420,7 @@ msgstr ""
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11187,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr ""
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr ""
@@ -11196,7 +11522,7 @@ msgstr ""
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11204,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11243,7 +11574,11 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11251,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11293,7 +11628,7 @@ msgstr ""
msgid "This handle is reserved. Please try a different one."
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11301,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11310,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11343,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr ""
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:624
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:620
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11387,7 +11734,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr ""
@@ -11399,7 +11746,8 @@ msgstr ""
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 ""
-#: src/screens/Messages/ConversationSettings/index.tsx:130
+#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11407,7 +11755,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/features/liveNow/index.tsx:200
+#: src/features/liveNow/index.tsx:203
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -11427,11 +11775,19 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
+msgid "This user has blocked you and cannot be messaged."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
+msgid "This user has disabled chat and cannot be messaged."
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
msgstr ""
@@ -11499,7 +11855,7 @@ msgstr ""
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr ""
@@ -11525,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr ""
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11534,10 +11890,6 @@ msgstr ""
msgid "To log out, <0>click here0>. Or if you’d prefer, you can <1>delete your account1>."
msgstr ""
-#: src/components/dms/ReportConversationPrompt.tsx:19
-msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
-msgstr ""
-
#: src/components/dms/DateDivider.tsx:27
msgid "Today"
msgstr ""
@@ -11575,12 +11927,12 @@ msgstr ""
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11631,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11692,6 +12044,18 @@ msgstr ""
msgid "Unable to delete"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
+msgid "Unable to find the selected recipient."
+msgstr ""
+
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
msgstr ""
@@ -11712,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:662
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11734,8 +12098,8 @@ msgstr ""
msgid "Unblock {displayName}"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:277
-#: src/components/dms/ConvoMenu.tsx:281
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
#: src/view/com/profile/ProfileMenu.tsx:468
#: src/view/com/profile/ProfileMenu.tsx:474
msgid "Unblock account"
@@ -11758,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11793,7 +12157,7 @@ msgstr ""
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:496
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11825,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11839,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:519
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11867,7 +12231,7 @@ msgstr ""
msgid "Unmute account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:265
+#: src/components/dms/ConvoMenu.tsx:282
msgid "Unmute conversation"
msgstr ""
@@ -11876,7 +12240,7 @@ msgstr ""
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:484
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11895,14 +12259,14 @@ msgid "Unpin"
msgstr ""
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr ""
@@ -11917,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr ""
@@ -11951,11 +12315,11 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -11968,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -11986,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12011,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr ""
@@ -12019,39 +12395,40 @@ msgstr ""
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr ""
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr ""
@@ -12094,7 +12471,8 @@ msgstr ""
msgid "user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportConversationDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12131,7 +12509,7 @@ msgid "User list by {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12175,12 +12553,12 @@ msgstr ""
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12197,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12224,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12236,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr ""
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12269,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12300,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr ""
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr ""
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12339,7 +12717,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr ""
@@ -12352,18 +12730,18 @@ msgstr ""
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12375,7 +12753,7 @@ msgstr ""
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12387,17 +12765,17 @@ msgstr ""
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:388
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12423,10 +12801,18 @@ msgstr ""
msgid "View full thread"
msgstr ""
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:42
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr ""
@@ -12442,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12459,10 +12845,10 @@ msgstr ""
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:378
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:389
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12470,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:506
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12483,7 +12869,7 @@ msgstr ""
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr ""
@@ -12516,8 +12902,8 @@ msgstr ""
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12560,8 +12946,8 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12585,11 +12971,15 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:111
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12635,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr ""
@@ -12669,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12699,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12734,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
@@ -12785,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr ""
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12798,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12807,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr ""
@@ -12827,6 +13217,7 @@ msgid "Why are you appealing?"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:52
+#: src/components/moderation/ReportDialog/copy.ts:66
msgid "Why should this conversation be reviewed?"
msgstr ""
@@ -12858,15 +13249,19 @@ msgstr ""
msgid "Why should this user be reviewed?"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:49
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/components/dms/AfterReportConversationDialog.tsx:47
+msgid "Would you like to block this user and/or leave this conversation?"
+msgstr ""
+
#: src/view/com/composer/drafts/DraftsButton.tsx:110
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12875,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr ""
@@ -12893,7 +13288,8 @@ msgstr ""
msgid "Wrong DID returned from server. Received: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:129
+#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -12945,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:635
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -12979,11 +13375,11 @@ msgstr ""
msgid "You are Live"
msgstr ""
-#: src/features/liveNow/index.tsx:368
+#: src/features/liveNow/index.tsx:371
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr ""
@@ -12991,7 +13387,7 @@ msgstr ""
msgid "You are not following anyone yet"
msgstr ""
-#: src/features/liveNow/index.tsx:312
+#: src/features/liveNow/index.tsx:315
msgid "You are now live!"
msgstr ""
@@ -13032,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13046,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13054,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13070,9 +13471,9 @@ msgstr ""
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13081,6 +13482,10 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
+msgid "You cannot create a group chat yet."
+msgstr ""
+
#: src/lib/hooks/useCleanError.ts:54
#: 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."
@@ -13108,6 +13513,10 @@ msgstr ""
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13177,7 +13586,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13247,7 +13656,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13265,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13280,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr ""
@@ -13301,7 +13710,7 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13374,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13386,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr ""
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
@@ -13410,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 ""
@@ -13430,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr ""
@@ -13472,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13493,7 +13910,7 @@ msgstr ""
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13522,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13534,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13546,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13559,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:523
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13572,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/ast/messages.po b/src/locale/locales/ast/messages.po
index 19484e6287..6e0e77d483 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Asturian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minutu} other {# minutos}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# mes} other {# meses}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# segundu} other {# segundos}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Avatar de: {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0} m"
msgid "{0}s"
msgstr "{0} s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr "Sigue a {following}"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "Nun se puen unviar mensaxes a {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -860,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Accesibilidá"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Configuración d'accesibilidá"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Amestar"
@@ -999,8 +1079,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Amestar otra cuenta"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Amestar otra publicación"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr ""
msgid "Add App Password"
msgstr "Crear una contraseña d'aplicación"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr ""
@@ -1080,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Too"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Permitir l'accesu a los mensaxes direutos"
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Yá aniciesti la sesión como @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Testu alternativu"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "El testu alternativu describe imáxenes pa persones ciegues o con problemes de visión y ayuda a dar contestu a tol mundu."
@@ -1387,7 +1467,7 @@ msgstr "Prodúxose un error"
msgid "An error occurred"
msgstr "Prodúxose un error"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Prodúxose un error mentanto se comprimía'l videu."
@@ -1432,11 +1512,11 @@ msgstr "¡Prodúxose un error mentanto se guardaba'l códigu QR!"
msgid "An error occurred while trying to follow all"
msgstr "Prodúxose un error al tentar de siguir a toles cuentes"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Un problema que nun s'inclúi nestes opciones"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Prodúxose un error al tentar d'abrir la charra"
msgid "An issue occurred, please try again."
msgstr "Prodúxose un problema. Volvi tentalo."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Los nomes de les contraseñes d'aplicación han tener polo menos 4 cará
msgid "App passwords"
msgstr "Contraseñes d'aplicación"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Contraseñes d'aplicación"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Unvióse l'apellación"
@@ -1632,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Apellar esta decisión"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "¿De xuru que quies desaniciar la contraseña d'aplicación «{0}»?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "¿De xuru que quies escartar esta publicación?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Reproducir automáticamente vídeos y GIFs"
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr "Atrás"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1840,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1877,7 +1963,7 @@ msgstr "Aniversariu"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Bloquiar la cuenta"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "¿Quies bloquiar la cuenta?"
msgid "Block accounts"
msgstr "Bloquiar les cuentes"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "¿Quies bloquiar estes cuentes?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr ""
@@ -1948,7 +2034,7 @@ msgctxt "button"
msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Bloquióse"
@@ -1964,13 +2050,13 @@ msgstr "Bloquióse"
msgid "Blocked accounts"
msgstr "Cuentes bloquiaes"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Cuentes bloquiaes"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Les cuentes bloquiaes nun puen responder nos tos filos, mentante nin interactuar contigo de nenguna forma."
@@ -2029,7 +2115,7 @@ msgstr "¡Bluesky ye meyor con compaña!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,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 "Bluesky nun va amosar el perfil nin les publicaciones a los usuarios que nun aniciaren la sesión. Ye posible qu'otres aplicaciones nun respeten esta solicitú. Esta opción nun fai que la cuenta seya privada."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2137,23 +2223,30 @@ msgstr "Negocios"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Por «{0}»"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Al crear una cuenta aceptes los <0>términos del serviciu0>."
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Cámara"
@@ -2192,8 +2285,8 @@ msgstr "Cámara"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Cámara"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Cámara"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Encaboxar"
@@ -2248,9 +2341,9 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Nun se pue interactuar con un usuariu bloquiáu"
@@ -2264,7 +2357,7 @@ msgstr "Sotítulos (.vtt)"
msgid "Captions & alt text"
msgstr "Sotítulos y testu alternativu"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr "Cambéu del identificador"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Charra"
@@ -2361,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Silencióse la charra"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Configuración de la charra"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Configuración de les charres"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "La charra dexó de tar silenciada"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2567,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Calca pa volver unviar el mensaxe que falló"
@@ -2594,28 +2694,30 @@ msgstr "Calca pa volver unviar el mensaxe que falló"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Calca pa volver unviar el mensaxe que falló"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Zarrar el diálogu activu"
msgid "Close alert"
msgstr "Zarrar l'alerta"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Zarrar el caxón baxeru"
@@ -2657,8 +2763,9 @@ msgstr "Zarrar el caxón baxeru"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Zarrar el diálogu"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Zarrar la imaxe"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Zarrar esti diálogu"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Cómics"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Pautes de la Comunidá"
@@ -2740,12 +2855,12 @@ msgstr "Completa'l retu"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr ""
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2753,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Comprimiendo'l videu…"
@@ -2780,7 +2895,7 @@ msgstr "Configuróse nes <0>opciones de moderación0>."
msgid "Confirm"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr ""
@@ -2889,7 +3004,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "Siguir col filu…"
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Dir al pasu siguiente"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Desanicióse la conversación"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Desanicióse la conversación"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "La versión de la compilación copióse nel cartafueyu"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Copiar el DID"
msgid "Copy host"
msgstr "Copiar l'agospiador"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Copiar el testu del mensaxe"
@@ -3052,7 +3175,7 @@ msgstr "Copiar el valor de rexistru TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Política de derechos d'autor"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Nun se pudo colar de la charra"
@@ -3094,6 +3217,10 @@ msgstr "Nun se pudo colar de la charra"
msgid "Could not load feed"
msgstr "Nun se pudo cargar el feed"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Crear"
@@ -3159,7 +3286,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr ""
@@ -3174,13 +3301,14 @@ msgstr ""
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr ""
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Crear un avatar"
@@ -3206,7 +3334,7 @@ msgstr "Crear un avatar"
msgid "Create another"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr ""
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Data de creación: {0}"
@@ -3341,7 +3470,7 @@ msgstr "La predeterminada"
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr ""
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Desaniciar pa min"
@@ -3399,11 +3528,11 @@ msgstr "Desaniciar pa min"
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr ""
@@ -3413,7 +3542,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Desaniciar la publicación"
@@ -3434,12 +3563,12 @@ msgstr "¿Quies desaniciar esta llista?"
msgid "Delete this post?"
msgstr "¿Quies desaniciar esti artículu?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr ""
@@ -3507,13 +3636,13 @@ msgstr "Diálogu: configura quién pue interactuar con esta publicación"
msgid "Dim"
msgstr "Lleve"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3521,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3534,8 +3663,8 @@ msgstr ""
msgid "Disable haptic feedback"
msgstr "Desactivar la rempuesta háptica"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Desactivóse"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Escartar"
msgid "Discard changes?"
msgstr "¿Quies escartar los cambeos?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "¿Quies escartar el borrador?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "¿Quies escartar la publicación?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Descubri feeds nuevos"
msgid "Dismiss"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Escartar l'error"
@@ -3673,7 +3802,7 @@ msgstr "Nun inclúin desnudos."
msgid "Domain verified!"
msgstr "¡Verificóse'l dominiu!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3681,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Fecho"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3741,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr ""
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Baxar el ficheru CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Baxar el ficheru CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Editar"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Editar l'avatar"
@@ -3847,14 +3978,14 @@ msgstr "Editar l'avatar"
msgid "Edit Feeds"
msgstr "Editar los feeds"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Editar la imaxe"
@@ -3868,7 +3999,16 @@ msgstr "Editar la configuración de les interaiciones"
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Edición de los mios feeds"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Edición de les persones"
@@ -3925,7 +4060,7 @@ msgstr "Editar el perfil"
msgid "Edit starter pack"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr ""
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr ""
@@ -3971,7 +4106,7 @@ msgstr "Direición de corréu electrónicu"
msgid "Email Resent"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -4006,8 +4141,8 @@ msgstr "Incrusta esta publicación nel to sitiu web. Namás copia'l fragmentu de
msgid "Embedded video player"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Activar"
@@ -4025,7 +4160,7 @@ msgstr "Activar el conteníu p'adultos"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4038,13 +4173,12 @@ msgstr "Activar el conteníu multimedia esternu"
msgid "Enable media players for"
msgstr "Activar los reproductores multimedia de:"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr ""
msgid "Enter a word or tag"
msgstr "Introduz una pallabra o etiqueta"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4143,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Error"
@@ -4185,23 +4319,23 @@ msgstr "Tol mundu pue responder"
msgid "Everybody can reply to this post."
msgstr "Tol mundu pue responder a esta publicación."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Tol mundu"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Tol mundu"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Tol mundu"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr ""
msgid "Exit fullscreen"
msgstr ""
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr ""
@@ -4226,7 +4360,7 @@ msgstr ""
msgid "Expand list of users"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr ""
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -4277,9 +4411,9 @@ msgstr ""
msgid "Explicit sexual images."
msgstr "Imáxenes sexuales esplícites."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4289,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,7 @@ msgstr "Conteníu multimedia esternu"
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 "El conteníu multimedia esternu pue permitir que los sitios web recueyan información de ti y del preséu. Nun s'unvia nin se solicita nenguna información hasta que nun primas el botón «Reproducir»."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Preferencies del conteníu multimedia esternu"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "El cambéu del identificador falló. Volvi tentalo."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "La creación de la contraseña d'aplicación falló. Volvi tentalo."
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "El desaniciu del mensaxe falló"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "La carga de les preferencies de los feeds falló"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "La carga de los feeds suxeríos falló"
msgid "Failed to load suggested follows"
msgstr "La carga de los perfiles suxeríos falló"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Nun se pudo fixar la publicación"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "L'unviu de l'apellación falló. Volvi tentalo."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4614,7 +4751,7 @@ msgstr "L'anovamientu de los feeds falló"
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "L'anovamientu de la configuración falló"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Feed"
@@ -4649,7 +4786,7 @@ msgstr "Feed"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Feed de {0}"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr ""
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Feeds"
@@ -4739,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Atopar cuentes pa siguir"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr ""
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Siguidores de @{0} que conoces"
@@ -4995,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr "Preferencies del feed «Siguiendo»"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Preferencies del feed «Siguiendo»"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Síguete"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Síguete"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Fonte"
@@ -5069,7 +5207,7 @@ msgstr "¿Escaeciéstila?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr ""
msgid "Generate a starter pack"
msgstr "Xeneración d'un paquete d'iniciación"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr ""
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Pon cara al perfil"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Dir p'atrás"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Dir p'atrás"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Dir al pasu anterior"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr ""
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr ""
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Dir al aniciu"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr ""
@@ -5299,12 +5440,12 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Dir al perfil"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "L'identificador ye mui llongu. Prueba con otru."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Etiqueta"
@@ -5458,8 +5615,8 @@ msgstr ""
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Ayuda"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Ayuda a que les persones sepan que nun yes un robó xubiendo una semeya o creando un avatar."
@@ -5652,18 +5809,18 @@ msgstr "Umm… Paez que tenemos problemes pa cargar estos datos. Consulta abaxo
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Umm… Nun pudimos cargar el serviciu de moderación."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Aniciu"
@@ -5721,7 +5878,7 @@ msgstr "Entiéndolo"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
@@ -5757,7 +5914,7 @@ msgstr "Si desanicies esta llista, nun vas ser a recuperala."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Si tienes un dominiu pues usalu como identificador. Esto permítete verificar la to identidá. <0>Conoz más equí.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5765,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr "Si quites esta publicación, nun vas ser a recuperala."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5773,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Si quies camudar la contraseña, vamos unviate un códigu pa verificar qu'esta cuenta ye de to."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr ""
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Imaxe"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "L'identificador ye inválidu. Prueba con otru."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr ""
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "¡Namás tas tu! Amiesta más persones al paquete d'iniciación buscando arriba."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID de trabayu: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID de trabayu: {0}"
msgid "Jobs"
msgstr "Trabayu"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Trabayu"
msgid "Join Bluesky"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Xúnite a la conversación"
msgid "Journalism"
msgstr "Periodismu"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr ""
msgid "Labels on your content"
msgstr ""
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Configuración de llingua"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Lo último"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Saber más tocante a esta alvertencia"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Saber más tocante a qué ye público en Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "Saber más."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Colar"
@@ -6276,7 +6464,7 @@ msgstr ""
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Colar de la conversación"
@@ -6284,13 +6472,13 @@ msgstr "Colar de la conversación"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Colar de la conversación"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Claru"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -6346,11 +6534,7 @@ msgstr "10 préstames"
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr ""
@@ -6358,8 +6542,8 @@ msgstr ""
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "A quién-y prestó"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "{0, plural, one {Prestó-y a # usuariu} other {Prestó-yos a # usuarios}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "{likeCount, plural, one {Prestó-y a # usuariu} other {Prestó-yos a # usuarios}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Préstames"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Préstames d'esta publicación"
@@ -6409,11 +6589,11 @@ msgstr "Préstames d'esta publicación"
msgid "Linear"
msgstr "Socesión llinial"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr ""
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Llistes"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Cargando…"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Rexistru"
@@ -6662,7 +6842,7 @@ msgstr ""
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
@@ -6698,13 +6877,12 @@ msgstr ""
msgid "Mark as read"
msgstr "Marcar como lleíu"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6727,25 +6905,21 @@ 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."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Menciones"
@@ -6775,22 +6949,22 @@ msgstr ""
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Desanicióse'l mensaxe"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Desanicióse'l mensaxe"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6813,19 +6987,19 @@ msgstr "El mensaxe ye mui llongu"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Mensaxes"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderación"
@@ -6894,7 +7064,7 @@ msgstr "Anovóse la llista de moderación"
msgid "Moderation lists"
msgstr "Llistes de moderación"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Llistes de moderación"
@@ -6903,7 +7073,7 @@ msgstr "Llistes de moderación"
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr ""
@@ -6949,7 +7119,7 @@ msgstr "Filmes"
msgid "Music"
msgstr "Música"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Desactivar el volume"
@@ -6994,7 +7164,7 @@ msgstr ""
msgid "Mute these accounts?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Silenciar el filu"
msgid "Mute words & tags"
msgstr "Silenciar pallabres y etiquetes"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Cuentes silenciaes"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Cuentes silenciaes"
@@ -7108,8 +7278,8 @@ msgstr ""
msgid "Navigates to your profile"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Charra nueva"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7174,29 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Publicación nueva"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Publicación nueva"
@@ -7262,8 +7428,8 @@ msgstr "Noticies"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "Yá nun sigues a {0}"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Nun hai nengún mensaxe"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "¡Nun hai nengún avisu!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Nun hai nengún resultáu"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Nun hai nengún resultáu"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Nun s'atopó"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Soníos d'avisu"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Avisos"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "agora"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Non"
@@ -7623,7 +7772,8 @@ msgstr ""
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr ""
msgid "Onboarding reset"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "A unu o más vídeos fálta-yos el testu alternativu."
@@ -7685,6 +7835,26 @@ msgstr "A unu o más vídeos fálta-yos el testu alternativu."
msgid "Only {0} can reply."
msgstr ""
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr ""
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Namás son compatibles los ficheros WebVTT (.vtt)"
@@ -7712,7 +7892,7 @@ msgstr "¡Meca! Prodúxose dalgún error."
msgid "Oops!"
msgstr "¡Meca!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Abrir el creador d'avatares"
@@ -7720,12 +7900,17 @@ msgstr "Abrir el creador d'avatares"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr ""
@@ -7739,16 +7924,16 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Abrir el selector de fustaxes"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr ""
@@ -7760,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr ""
@@ -7790,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr ""
msgid "Open system log"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Abre los detalles adicionales d'una entrada de depuración"
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Abre la cámara del preséu"
@@ -7858,22 +8051,24 @@ msgstr "Abre'l compositor"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Abre esti perfil"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Los moderadores revisaron los informes y decidieron desactivate l'accesu a les charres de Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Los moderadores revisaron los informes y decidieron desactivate l'accesu
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Nun s'atopó la páxina"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Nun s'atopó la páxina"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr ""
msgid "People"
msgstr "Persones"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Persones siguíes por @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Persones que siguen a @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Semeyes destinaes a adultos."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Fixar el feed"
@@ -8152,7 +8348,7 @@ msgstr "Fixar el feed"
msgid "Pin to home"
msgstr "Fixar nel aniciu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fixar nel aniciu"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Fixóse"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "Fixesti «{0}» nel aniciu"
@@ -8236,7 +8432,7 @@ msgstr "Escueyi un identificador."
msgid "Please choose your password."
msgstr "Escueyi una contraseña."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "Completa'l captcha de verificación."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Introduz un nome únicu pa esta contraseña d'aplicación o usa'l xeneráu aleatoriamente."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "Introduz la to direición de corréu eletrónicu."
msgid "Please enter your invite code."
msgstr "Introduz el to códigu d'invitación."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Desplica por qué pienses que les charres se desactivaron incorreutamente"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "Política"
msgid "Porn"
msgstr "Pornu"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Publicar"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Publicar too"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr ""
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr ""
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "La xuba de la publicación falló. Comprueba la conexón a internet y volvi tentalo."
@@ -8454,7 +8650,7 @@ msgstr ""
msgid "Post interaction settings"
msgstr "Configuración de les interaiciones de la publicación"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8464,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Lliberóse la publicación"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr ""
msgid "Posts hidden"
msgstr "Escondiéronse les publicaciones"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "Primi pa tentar de volver conectate"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Primi pa retentalo"
@@ -8536,7 +8728,7 @@ msgstr "Primi pa retentalo"
msgid "Press to view followers of this account that you also follow"
msgstr "Primi pa ver los siguidores d'esta cuenta que tamién te siguen"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "Privacidá"
msgid "Privacy and security"
msgstr "Privacidá y seguranza"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privacidá y seguranza"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Política de privacidá"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Procesando'l videu…"
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Procesando…"
@@ -8602,8 +8793,8 @@ msgstr "Procesando…"
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr ""
msgid "QR code saved to your camera roll!"
msgstr "¡El códigu QR guardóse nel carrete!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Desactiváronse les cites"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Cites"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr ""
msgid "Reconnect"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Volver cargar les conversaciones"
@@ -8896,17 +9087,17 @@ msgstr "Quitar la cuenta"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Quitar l'avatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr ""
@@ -8914,8 +9105,9 @@ msgstr ""
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr ""
@@ -8933,8 +9125,8 @@ msgstr "¿Quies quitar el feed?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr ""
@@ -9009,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr ""
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr ""
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Rempuestes"
@@ -9104,14 +9295,14 @@ msgstr ""
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Responder"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9125,10 +9316,6 @@ msgstr ""
msgid "Reply Hidden by You"
msgstr ""
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
@@ -9146,9 +9333,9 @@ msgstr "Anovóse la visibilidá de les rempuestes"
msgid "Reply was successfully hidden"
msgstr "La rempuesta escondióse correutamente"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr ""
@@ -9164,13 +9351,13 @@ msgstr ""
msgid "Report conversation"
msgstr "Informar de la conversación"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Informar del feed"
@@ -9179,7 +9366,7 @@ msgstr "Informar del feed"
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr ""
@@ -9199,8 +9386,8 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Informe d'esti feed"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Informe d'esta llista"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Republicar"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Republiquesti"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "Republicaciones d'esta publicación"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Riquir un testu alternativu enantes de publicar"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9328,7 +9534,11 @@ msgstr ""
msgid "Required in your region"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9393,15 +9603,16 @@ msgstr "Volvi tentar la última aición, la que produxo l'error"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Volvi tentar la última aición, la que produxo l'error"
msgid "Retry"
msgstr "Retentar"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9426,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr ""
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr ""
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Guardar los cambeos"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr ""
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Guardar nos mios feeds"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "Feeds guardaos"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Guardóse nos tos feeds"
@@ -9551,8 +9764,8 @@ msgstr "Guardóse nos tos feeds"
msgid "Say hello!"
msgstr "¡Saluda!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Buscar"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9667,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr ""
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr ""
msgid "Select languages"
msgstr "Seleicionar llingües"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9904,11 +10117,11 @@ msgstr ""
msgid "Select your preferred language for translations in your feed."
msgstr "Seleiciona la llingua que prefieres pa les traducciones del feed."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr ""
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr ""
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr ""
@@ -9952,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr "Unviar la publicación a…"
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9960,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Unviar per mensaxe direutu"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Configuración"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "Actividá sexual o desnudos eróticos."
msgid "Sexually Suggestive"
msgstr ""
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr "Compartir el códigu QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10151,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr ""
@@ -10167,16 +10382,16 @@ msgstr "Amosar el testu alternativu"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Amosar de toes toes"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr ""
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr "¡Anicia la sesión o crea una cuenta pa xunite a la conversación!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr ""
@@ -10337,6 +10558,10 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Zarrar la sesión"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr ""
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "¿Quies zarrar la sesión?"
@@ -10391,7 +10616,7 @@ msgstr "Saltar"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Pequeña"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Prodúxose dalgún error"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "¡Prodúxose dalgún error!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "¿Hai daqué mal? Coméntanoslo."
@@ -10568,7 +10798,7 @@ msgstr "Deportes"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Charra nueva"
@@ -10582,17 +10812,17 @@ msgstr ""
msgid "Start adding people!"
msgstr "Amestar persones"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Paquete d'iniciación"
@@ -10654,12 +10884,12 @@ msgstr "Borróse l'almacenamientu y agora tienes de reaniciar l'aplicación."
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Unviar"
@@ -10684,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr ""
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Cambiar de cuenta"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10828,7 +11062,7 @@ msgstr "Namás etiquetes"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Términos"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Testu y etiquetes"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Campu pa introducir testu"
@@ -11049,6 +11301,11 @@ msgstr "Va predeterminase la configuración siguiente pa cuando crees publicacio
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "La política de privacidá treslladóse a <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "Hebo un problema al conectase col sirvidor"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Hebo un problema al conectase col sirvidor. Comprueba la conexón a internet y volvi tentalo."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Hebo un problema al catar los avisos. Toca equí pa volver tentalo."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Hebo un problema al catar les publicaciones. Toca equí pa volver tentalo."
@@ -11161,7 +11420,7 @@ msgstr "Hebo un problema al catar la información del serviciu"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Hebo un problema al quitar esti feed. Comprueba la conexón a internet y volvi tentalo."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Esta apellación va unviase a <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Esta apellación va unviase al serviciu de moderación de Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Esta apellación va unviase al serviciu de moderación de Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr "Esti conteníu nun se pue ver ensin una cuenta de Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Esta conversación ye con una cuenta desaniciada o desactivada. Primi pa
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr ""
msgid "This handle is reserved. Please try a different one."
msgstr "Esti identificador ta acutáu. Prueba con otru."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr "Esta llista ta balera."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "L'autor d'esta publicación desactivó les cites."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr ""
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr "Esti usuariu nun tien nengún siguidor."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Esti usuariu bloquióte. Nun pues ver el so conteníu."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Preferencies de los filos"
msgid "Threaded"
msgstr "Filos"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Preferencies de los filos"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr ""
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11646,12 +11927,12 @@ msgstr "Lo destacao"
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Tema"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Vídeos en tendencia"
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11763,11 +12044,15 @@ msgstr ""
msgid "Unable to delete"
msgstr "Nun ye posible desaniciar"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr ""
msgid "Unfollows the user"
msgstr "Dexa de siguir al usuariu"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11918,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Dexar de silenciar la conversación"
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Lliberar"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Lliberar el feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Lliberar del aniciu"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Lliberar la llista de moderación"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "Lliberésti'l feed «{0}» del aniciu"
@@ -12030,11 +12315,11 @@ msgstr "Dase de baxa d'esti etiquetador"
msgid "Unsubscribed from list"
msgstr "Diéstite de baxa d'esta llista"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "L'anovamientu de la visibilidá de la rempuesta falló"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Xubir una semeya"
@@ -12098,39 +12395,40 @@ msgstr "Xubir una semeya"
msgid "Upload a text file to:"
msgstr "Xubi un ficheru de testu a:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Xubir dende Cámara"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Xubir dende Ficheros"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Xubir dende Biblioteca"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Xubiendo les imáxenes…"
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Xubiendo la miniatura del enllaz…"
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Xubiendo'l videu…"
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "usuarios siguíos por <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Verificar el rexistru DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12349,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr "Videu"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Nun se pudo procesar el videu"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12419,7 +12717,7 @@ msgstr "Nun s'atopó'l videu."
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Xubióse'l videu"
@@ -12432,18 +12730,18 @@ msgstr "Videu: {0}"
msgid "Videos"
msgstr "Vídeos"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Ver l'avatar de {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Ver el perfil de {0}"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Ver los detalles"
msgid "View full thread"
msgstr "Ver el filu completu"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Ver la información d'estes etiquetes"
@@ -12522,7 +12828,7 @@ msgstr "Ver más"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "Ver el perfil"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr ""
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Ver a qué usuarios-yos prestó esti feed"
@@ -12596,8 +12902,8 @@ msgstr ""
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12640,8 +12946,8 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr "Nun pudimos atopar nengún resultáu pa esi tema."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Nun pudimos cargar esta conversación"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Nun fuimos a determinar si tienes permisu pa xubir vídeos. Volvi tentalo."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "Tenemos problemes de rede. Volvi tentalo"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Desanicióse la publicación a la que tas respondiendo."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Nun podemos atopar la páxina que buscabes."
@@ -12865,12 +13175,12 @@ 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.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "¿Que pasó?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12878,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr "¿Quién pue interactuar con esta publicación?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Quién pue responder"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "¡Meca!"
@@ -12939,7 +13249,7 @@ msgstr "¿Por qué habría revisase esti paquete d'iniciación?"
msgid "Why should this user be reviewed?"
msgstr "¿Por qué habría revisase esti usuariu?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Escribir una rempuesta"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "El sirvidor devolvió un DID incorreutu. Recibióse: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr ""
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Nun tienes permisu pa xubir vídeos."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Pues siguir coles conversaciones que tengas en cursu independientemente de la opción qu'escueyas."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "Pues volver activar la cuenta pa siguir aniciando la sesión. El perfil
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "Nun tienes nengún feed guardáu."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "Tienes de siguir a, polo menos, siete persones más pa xenerar un paquet
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Vas zarrar la sesión de toles cuentes."
@@ -13390,7 +13710,7 @@ msgstr "Agora vas recibir avisos d'esti filu"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Vas recibir un mensaxe per corréu electrónicu con un códigu. Introduzlu equí y escribi la contraseña nueva."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "¡Algamesti la fin del feed! Atopa dalgunes cuentes más y síguiles."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Algamesti la llende diaria de vídeos xubíos (milenta bytes)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "La cuenta nun tien abonda antigüedá como pa xubir vídeos. Volvi tentalo dempués."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "El depósitu de la cuenta, que contién tolos rexistros de datos públicos, pues baxalu como ficheru «CAR». Esti ficheru nun contién incrustaciones multimedia (imáxenes, vídeos…) nin datos privaos, que los tienes de consiguir per separtao."
@@ -13519,7 +13847,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Desactiváronse les charres"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "La direición de corréu paez ser inválida."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13582,7 +13910,7 @@ msgstr "¡El feed siguiente ta baleru! Sigui a más usuarios pa ver qué pasó."
msgid "Your full handle will be <0>@{0}0>"
msgstr "L'identificador completu va ser <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "Pallabres que silenciesti"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13661,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/az/messages.po b/src/locale/locales/az/messages.po
index 7e15d09ad1..a08ad5c446 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Azerbaijani\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr ""
msgid "{0, plural, one {# month} other {# months}}"
msgstr ""
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr ""
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:203
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:639
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr ""
msgid "{0}s"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr ""
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:850
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:811
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,8 +643,8 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:33
-msgid "{memberCount}/{MEMBER_LIMIT}"
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
+msgid "{memberCount}/{memberLimit}"
msgstr ""
#: src/features/liveNow/utils.ts:10
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:52
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:47
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,6 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -802,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -825,7 +892,11 @@ msgstr ""
msgid "A screenshot of 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:547
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
+msgid "A selected recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -841,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -854,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr ""
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr ""
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -939,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr ""
@@ -993,8 +1079,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1006,16 +1092,16 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1029,7 +1115,7 @@ msgstr ""
msgid "Add App Password"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1037,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1046,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1056,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
+#: src/components/moderation/ReportDialog/index.tsx:528
#: src/components/moderation/ReportDialog/index.tsx:532
-#: src/components/moderation/ReportDialog/index.tsx:536
msgid "Add more details (optional)"
msgstr ""
@@ -1074,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1159,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:550
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1222,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1235,7 +1321,7 @@ msgstr ""
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1272,13 +1358,13 @@ msgstr ""
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1332,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr ""
@@ -1356,7 +1442,7 @@ msgid "Alt Text"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr ""
@@ -1381,7 +1467,7 @@ msgstr ""
msgid "An error occurred"
msgstr ""
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr ""
@@ -1426,11 +1512,11 @@ msgstr ""
msgid "An error occurred while trying to follow all"
msgstr ""
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1455,20 +1541,20 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:56
-msgid "An issue occurred creating the group chat, please try again"
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
+msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:42
-msgid "An issue occurred starting the chat, please try again"
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
+msgid "An issue occurred starting the chat, please try again."
msgstr ""
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
@@ -1484,7 +1570,7 @@ msgstr ""
msgid "An issue occurred, please try again."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1533,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1549,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1591,7 +1681,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr ""
@@ -1612,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr ""
@@ -1626,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr ""
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1669,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1682,23 +1772,23 @@ msgstr ""
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1746,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1761,12 +1851,12 @@ msgstr ""
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1777,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1790,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1834,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:94
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1871,7 +1963,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1881,8 +1973,8 @@ msgstr ""
msgid "Block {displayName}"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:277
-#: src/components/dms/ConvoMenu.tsx:281
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749
#: src/screens/Messages/components/RequestButtons.tsx:149
@@ -1892,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1906,8 +1998,14 @@ msgstr ""
msgid "Block accounts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:147
-msgid "Block and Delete"
+#: src/components/dms/AfterReportDialog.tsx:148
+msgid "Block and delete"
+msgstr ""
+
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:167
+msgctxt "button"
+msgid "Block and leave"
msgstr ""
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
@@ -1922,20 +2020,29 @@ msgstr ""
msgid "Block these accounts?"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:188
-#: src/components/dms/AfterReportDialog.tsx:191
+#: src/components/dms/AfterReportConversationDialog.tsx:221
+#: src/components/dms/AfterReportConversationDialog.tsx:224
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:153
-msgid "Block User"
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:182
+msgctxt "button"
+msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:184
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:196
+#: src/components/dms/AfterReportConversationDialog.tsx:217
+msgid "Block user and/or leave this conversation"
+msgstr ""
+
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr ""
@@ -1943,13 +2050,13 @@ msgstr ""
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -2008,7 +2115,7 @@ msgstr ""
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2032,7 +2139,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:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2116,23 +2223,30 @@ msgstr ""
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:853
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:74
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2160,7 +2274,7 @@ msgstr ""
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr ""
@@ -2171,8 +2285,8 @@ msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2191,10 +2305,10 @@ msgstr ""
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2207,11 +2321,11 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr ""
@@ -2227,9 +2341,9 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -2243,7 +2357,7 @@ msgstr ""
msgid "Captions & alt text"
msgstr ""
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2276,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:449
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2289,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:394
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2323,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr ""
@@ -2340,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2352,31 +2473,35 @@ msgstr ""
msgid "Chat messages - sound"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:199
+#: src/components/dms/ConvoMenu.tsx:216
msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/Navigation.tsx:588
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
+msgid "Chat recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:82
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/components/dms/ConvoMenu.tsx:84
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr ""
@@ -2393,14 +2518,14 @@ msgstr ""
msgid "Chat unlocked"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:201
+#: src/components/dms/ConvoMenu.tsx:218
msgctxt "toast"
msgid "Chat unmuted"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2454,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2508,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2516,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2533,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2542,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2555,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr ""
@@ -2569,24 +2694,30 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
-#: src/components/dms/AfterReportDialog.tsx:93
-#: src/components/dms/AfterReportDialog.tsx:98
+#: src/components/dms/AddMembersFlow.tsx:377
+#: src/components/dms/AfterReportConversationDialog.tsx:91
+#: src/components/dms/AfterReportConversationDialog.tsx:96
+#: src/components/dms/AfterReportConversationDialog.tsx:247
+#: src/components/dms/AfterReportConversationDialog.tsx:252
+#: src/components/dms/AfterReportDialog.tsx:94
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2594,14 +2725,14 @@ msgstr ""
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2618,6 +2749,10 @@ msgstr ""
msgid "Close alert"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr ""
@@ -2628,8 +2763,9 @@ msgstr ""
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr ""
@@ -2643,7 +2779,7 @@ msgid "Close image"
msgstr ""
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2654,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr ""
@@ -2666,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2696,7 +2840,7 @@ msgid "Comics"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr ""
@@ -2711,12 +2855,12 @@ msgstr ""
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr ""
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2724,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr ""
@@ -2751,7 +2895,7 @@ msgstr ""
msgid "Confirm"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2813,7 +2957,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr ""
@@ -2860,7 +3004,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2879,38 +3023,51 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:148
-#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr ""
+#: src/components/dms/AfterReportConversationDialog.tsx:172
+#: src/components/dms/AfterReportConversationDialog.tsx:179
+msgctxt "toast"
+msgid "Conversation left"
+msgstr ""
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2962,6 +3119,7 @@ msgstr ""
msgid "Copy host"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -2992,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr ""
@@ -3017,7 +3175,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr ""
@@ -3030,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3049,8 +3207,9 @@ msgstr ""
msgid "Could not follow all matches. {0}"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:138
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportConversationDialog.tsx:158
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr ""
@@ -3058,13 +3217,17 @@ msgstr ""
msgid "Could not load feed"
msgstr ""
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
msgid "Could not load list"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:205
+#: src/components/dms/ConvoMenu.tsx:222
msgid "Could not mute chat"
msgstr ""
@@ -3103,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr ""
@@ -3123,7 +3286,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr ""
@@ -3138,13 +3301,14 @@ msgstr ""
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3162,7 +3326,7 @@ msgstr ""
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr ""
@@ -3170,7 +3334,7 @@ msgstr ""
msgid "Create another"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3192,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:713
-#: src/components/moderation/ReportDialog/index.tsx:759
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr ""
@@ -3220,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:461
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr ""
@@ -3305,7 +3470,7 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3346,18 +3511,15 @@ msgstr ""
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:194
-#: src/components/dms/AfterReportDialog.tsx:197
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:150
-msgid "Delete Conversation"
-msgstr ""
-
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr ""
@@ -3366,11 +3528,11 @@ msgstr ""
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr ""
@@ -3380,7 +3542,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr ""
@@ -3401,12 +3563,12 @@ msgstr ""
msgid "Delete this post?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:189
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr ""
@@ -3474,13 +3636,13 @@ msgstr ""
msgid "Dim"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3488,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3501,8 +3663,8 @@ msgstr ""
msgid "Disable haptic feedback"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3514,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3527,9 +3689,9 @@ msgstr ""
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3540,19 +3702,19 @@ msgstr ""
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3580,11 +3742,11 @@ msgstr ""
msgid "Dismiss"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr ""
@@ -3640,7 +3802,7 @@ msgstr ""
msgid "Domain verified!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3648,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3667,15 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
-#: src/components/dms/AfterReportDialog.tsx:144
+#: src/components/dms/AfterReportConversationDialog.tsx:164
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3691,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr ""
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3707,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr ""
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr ""
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr ""
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3725,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3789,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3804,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr ""
@@ -3813,14 +3978,14 @@ msgstr ""
msgid "Edit Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr ""
@@ -3834,7 +3999,16 @@ msgstr ""
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3852,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:495
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr ""
@@ -3891,7 +4060,7 @@ msgstr ""
msgid "Edit starter pack"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:494
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3903,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr ""
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr ""
@@ -3937,7 +4106,7 @@ msgstr ""
msgid "Email Resent"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -3972,8 +4141,8 @@ msgstr ""
msgid "Embedded video player"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr ""
@@ -3991,7 +4160,7 @@ msgstr ""
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4004,13 +4173,12 @@ msgstr ""
msgid "Enable media players for"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4057,8 +4225,8 @@ msgstr ""
msgid "Enter a word or tag"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4109,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr ""
@@ -4151,23 +4319,23 @@ msgstr ""
msgid "Everybody can reply to this post."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4183,8 +4351,8 @@ msgstr ""
msgid "Exit fullscreen"
msgstr ""
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr ""
@@ -4192,7 +4360,7 @@ msgstr ""
msgid "Expand list of users"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr ""
@@ -4204,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -4243,9 +4411,9 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4255,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4288,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr ""
@@ -4302,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4320,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4333,7 +4502,7 @@ msgstr ""
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4348,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr ""
@@ -4360,24 +4529,24 @@ msgstr ""
msgid "Failed to delete starter pack"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:343
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4393,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:370
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4422,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4459,16 +4627,15 @@ msgstr ""
msgid "Failed to load suggested follows"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:391
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:357
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4477,7 +4644,7 @@ msgid "Failed to pin post"
msgstr ""
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4491,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4508,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4535,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4546,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr ""
@@ -4555,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:394
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4563,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4580,7 +4751,7 @@ msgstr ""
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr ""
@@ -4607,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr ""
@@ -4615,7 +4786,7 @@ msgstr ""
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr ""
@@ -4628,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr ""
@@ -4652,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr ""
@@ -4705,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4713,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4734,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr ""
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4765,7 +4936,7 @@ msgstr ""
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4910,8 +5081,12 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr ""
@@ -4961,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr ""
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr ""
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr ""
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr ""
@@ -5035,7 +5207,7 @@ msgstr ""
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5052,35 +5224,35 @@ msgstr ""
msgid "Generate a starter pack"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5088,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr ""
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5140,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:180
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr ""
@@ -5179,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr ""
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr ""
@@ -5203,7 +5380,9 @@ msgid "Go back to previous step"
msgstr ""
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr ""
@@ -5213,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr ""
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr ""
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5250,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr ""
@@ -5262,19 +5437,19 @@ msgstr ""
msgid "Go to next"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:255
+#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:251
+#: src/components/dms/ConvoMenu.tsx:268
msgid "Go to user's profile"
msgstr ""
@@ -5286,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5306,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:383
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:350
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:338
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
-#: src/screens/Messages/ConversationSettings/index.tsx:89
+#: src/Navigation.tsx:490
+#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5387,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr ""
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5412,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr ""
@@ -5424,8 +5615,8 @@ msgstr ""
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5449,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr ""
@@ -5618,18 +5809,18 @@ msgstr ""
msgid "Hmmmm, we couldn't load that moderation service."
msgstr ""
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr ""
@@ -5679,7 +5870,6 @@ msgid "I have my own domain"
msgstr ""
#: src/components/dms/BlockedByListDialog.tsx:55
-#: src/components/dms/ReportConversationPrompt.tsx:21
msgid "I understand"
msgstr ""
@@ -5688,7 +5878,7 @@ msgstr ""
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
@@ -5724,7 +5914,7 @@ msgstr ""
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5732,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5740,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5753,23 +5942,33 @@ msgstr ""
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr ""
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5784,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5829,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5848,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5930,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr ""
@@ -5948,6 +6151,10 @@ msgstr ""
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr ""
@@ -5977,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:508
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -5991,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6041,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr ""
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr ""
@@ -6050,6 +6257,11 @@ msgstr ""
msgid "Jobs"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6057,6 +6269,15 @@ msgstr ""
msgid "Join Bluesky"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6066,8 +6287,8 @@ msgstr ""
msgid "Journalism"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6110,7 +6331,7 @@ msgstr ""
msgid "Labels on your content"
msgstr ""
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr ""
@@ -6141,7 +6362,7 @@ msgid "Latest"
msgstr ""
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6196,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr ""
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6206,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6219,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:542
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr ""
@@ -6237,19 +6458,27 @@ msgstr ""
msgid "Leave chat"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:229
-#: src/components/dms/ConvoMenu.tsx:233
-#: src/components/dms/ConvoMenu.tsx:299
-#: src/components/dms/ConvoMenu.tsx:303
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/AfterReportConversationDialog.tsx:229
+#: src/components/dms/AfterReportConversationDialog.tsx:233
+#: src/components/dms/ConvoMenu.tsx:246
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/dms/ConvoMenu.tsx:316
+#: src/components/dms/ConvoMenu.tsx:320
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:174
+msgctxt "button"
+msgid "Leave conversation"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:541
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6286,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -6305,11 +6534,7 @@ msgstr ""
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr ""
@@ -6317,8 +6542,8 @@ msgstr ""
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr ""
@@ -6336,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr ""
@@ -6368,11 +6589,11 @@ msgstr ""
msgid "Linear"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr ""
@@ -6458,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr ""
@@ -6504,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6554,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:522
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:520
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:522
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr ""
@@ -6621,7 +6842,7 @@ msgstr ""
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6646,24 +6867,22 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:241
-#: src/components/dms/ConvoMenu.tsx:245
+#: src/components/dms/ConvoMenu.tsx:258
+#: src/components/dms/ConvoMenu.tsx:262
msgid "Mark as read"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6686,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:28
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr ""
@@ -6734,22 +6949,22 @@ msgstr ""
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6772,19 +6987,19 @@ msgstr ""
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr ""
-#: src/components/dms/MessageItem.tsx:651
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:646
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6797,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6809,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr ""
@@ -6853,7 +7064,7 @@ msgstr ""
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr ""
@@ -6862,7 +7073,7 @@ msgstr ""
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr ""
@@ -6908,7 +7119,7 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:487
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr ""
@@ -6936,8 +7147,8 @@ msgstr ""
msgid "Mute accounts"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:260
-#: src/components/dms/ConvoMenu.tsx:267
+#: src/components/dms/ConvoMenu.tsx:277
+#: src/components/dms/ConvoMenu.tsx:284
msgid "Mute conversation"
msgstr ""
@@ -6953,7 +7164,7 @@ msgstr ""
msgid "Mute these accounts?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:485
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -6991,7 +7202,7 @@ msgstr ""
msgid "Mute words & tags"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:487
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -6999,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr ""
@@ -7067,8 +7278,8 @@ msgstr ""
msgid "Navigates to your profile"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:345
-#: src/components/moderation/ReportDialog/index.tsx:362
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7095,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:107
-#: src/components/dms/dialogs/NewChatDialog.tsx:117
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7133,23 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
-#: src/components/dms/InitiateChatFlow.tsx:715
-#: src/components/dms/InitiateChatFlow.tsx:743
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#. Button used to create a new group chat.
+#. Button used to create a new group chat.
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
+msgctxt "action"
+msgid "New group chat"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7180,7 +7393,7 @@ msgid "New post"
msgstr ""
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr ""
@@ -7215,8 +7428,8 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7288,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7315,7 +7528,7 @@ msgstr ""
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr ""
@@ -7331,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr ""
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7388,8 +7601,8 @@ msgid "No result"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr ""
@@ -7462,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7475,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7501,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr ""
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr ""
@@ -7554,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr ""
@@ -7576,7 +7772,8 @@ msgstr ""
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:658
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7601,27 +7798,35 @@ msgstr ""
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
+msgid "One of the selected recipients does not allow group chats."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
+msgid "One of the selected recipients has blocked you and cannot be messaged."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr ""
@@ -7630,6 +7835,26 @@ msgstr ""
msgid "Only {0} can reply."
msgstr ""
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7640,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr ""
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr ""
@@ -7657,7 +7892,7 @@ msgstr ""
msgid "Oops!"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr ""
@@ -7665,12 +7900,17 @@ msgstr ""
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr ""
@@ -7684,16 +7924,16 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr ""
@@ -7705,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:120
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr ""
@@ -7735,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7762,6 +8006,10 @@ msgstr ""
msgid "Open system log"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7783,7 +8031,7 @@ msgstr ""
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr ""
@@ -7803,22 +8051,24 @@ msgstr ""
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7835,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7864,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr ""
@@ -7940,12 +8190,14 @@ msgstr ""
msgid "Our blog post"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:88
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportConversationDialog.tsx:86
+#: src/components/dms/AfterReportConversationDialog.tsx:213
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
@@ -7953,14 +8205,15 @@ msgstr ""
msgid "Owner"
msgstr ""
-#: src/components/Lists.tsx:205
-#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
-msgid "Page not found"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
msgstr ""
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
+#: src/components/Lists.tsx:205
+#: src/components/Lists.tsx:220
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
+msgid "Page not found"
msgstr ""
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
@@ -8011,34 +8264,34 @@ msgstr ""
msgid "People"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8084,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr ""
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr ""
@@ -8095,7 +8348,7 @@ msgstr ""
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr ""
@@ -8109,8 +8362,8 @@ msgid "Pinned"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr ""
@@ -8179,7 +8432,7 @@ msgstr ""
msgid "Please choose your password."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8187,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr ""
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8208,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8228,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8236,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8249,7 +8502,7 @@ msgstr ""
msgid "Please enter your invite code."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8266,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr ""
@@ -8309,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8326,7 +8579,7 @@ msgstr ""
msgid "Porn"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr ""
@@ -8346,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8360,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr ""
@@ -8372,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr ""
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
@@ -8397,7 +8650,7 @@ msgstr ""
msgid "Post interaction settings"
msgstr ""
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8407,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8434,7 +8687,6 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8448,10 +8700,6 @@ msgstr ""
msgid "Posts hidden"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8471,6 +8719,7 @@ msgstr ""
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr ""
@@ -8479,7 +8728,7 @@ msgstr ""
msgid "Press to view followers of this account that you also follow"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8502,21 +8751,20 @@ msgstr ""
msgid "Privacy and security"
msgstr ""
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8529,15 +8777,15 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr ""
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr ""
@@ -8545,8 +8793,8 @@ msgstr ""
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8578,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8625,10 +8873,6 @@ msgstr ""
msgid "QR code saved to your camera roll!"
msgstr ""
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8654,8 +8898,8 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr ""
@@ -8676,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8688,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8707,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8755,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8784,6 +9028,10 @@ msgstr ""
msgid "Reconnect"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8793,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr ""
@@ -8839,17 +9087,17 @@ msgstr ""
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr ""
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr ""
@@ -8857,8 +9105,9 @@ msgstr ""
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr ""
@@ -8876,8 +9125,8 @@ msgstr ""
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8902,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr ""
@@ -8952,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:224
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr ""
-#: src/components/Post/Embed/index.tsx:222
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr ""
@@ -8978,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9032,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr ""
@@ -9047,14 +9295,14 @@ msgstr ""
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9068,10 +9316,6 @@ msgstr ""
msgid "Reply Hidden by You"
msgstr ""
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
@@ -9089,9 +9333,9 @@ msgstr ""
msgid "Reply was successfully hidden"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:533
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr ""
@@ -9100,21 +9344,20 @@ msgstr ""
msgid "Report account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:287
-#: src/components/dms/ConvoMenu.tsx:291
-#: src/components/dms/ReportConversationPrompt.tsx:17
+#: src/components/dms/ConvoMenu.tsx:304
+#: src/components/dms/ConvoMenu.tsx:308
#: src/screens/Messages/components/RequestButtons.tsx:160
#: src/screens/Messages/components/RequestButtons.tsx:163
msgid "Report conversation"
msgstr ""
#: src/components/moderation/ReportDialog/index.tsx:98
-#: src/components/moderation/ReportDialog/index.tsx:265
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr ""
@@ -9123,7 +9366,7 @@ msgstr ""
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr ""
@@ -9141,12 +9384,15 @@ msgstr ""
msgid "Report starter pack"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:85
-#: src/components/dms/AfterReportDialog.tsx:177
+#: src/components/dms/AfterReportConversationDialog.tsx:83
+#: src/components/dms/AfterReportConversationDialog.tsx:210
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:51
+#: src/components/moderation/ReportDialog/copy.ts:65
msgid "Report this conversation"
msgstr ""
@@ -9154,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:532
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9163,7 +9409,7 @@ msgid "Report this list"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9197,10 +9443,6 @@ msgstr ""
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9223,8 +9465,8 @@ msgid "Reposted by you"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9233,13 +9475,17 @@ msgid "Reposts of this post"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9247,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9269,7 +9534,11 @@ msgstr ""
msgid "Required in your region"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9334,15 +9603,16 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9356,7 +9626,7 @@ msgstr ""
msgid "Retry"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:296
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9367,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr ""
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr ""
@@ -9395,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9420,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:229
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9459,12 +9731,12 @@ msgstr ""
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9475,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr ""
@@ -9492,8 +9764,8 @@ msgstr ""
msgid "Say hello!"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9517,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr ""
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9608,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9618,13 +9890,13 @@ msgstr ""
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9700,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9769,7 +10041,7 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9791,7 +10063,7 @@ msgstr ""
msgid "Select languages"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:434
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9845,11 +10117,11 @@ msgstr ""
msgid "Select your preferred language for translations in your feed."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9862,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr ""
@@ -9880,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr ""
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr ""
@@ -9893,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:824
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9901,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9915,7 +10187,7 @@ msgid "Send via direct message"
msgstr ""
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -9956,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -9971,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10020,10 +10292,12 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
+#: src/components/MediaPreview.tsx:235
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10039,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10065,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10092,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr ""
@@ -10108,16 +10382,16 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10211,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr ""
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10238,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10270,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr ""
@@ -10278,6 +10558,10 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10289,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr ""
@@ -10300,7 +10584,7 @@ msgid "Sign Out"
msgstr ""
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr ""
@@ -10332,7 +10616,7 @@ msgstr ""
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10346,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10354,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10403,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10428,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
-#: src/screens/Messages/ConversationSettings/index.tsx:110
+#: src/screens/Messages/Conversation.tsx:137
+#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:291
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10458,11 +10747,11 @@ msgstr ""
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:239
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr ""
@@ -10509,7 +10798,7 @@ msgstr ""
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:123
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr ""
@@ -10523,17 +10812,17 @@ msgstr ""
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:779
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr ""
@@ -10595,12 +10884,12 @@ msgstr ""
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10612,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr ""
@@ -10625,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:512
-#: src/components/moderation/ReportDialog/index.tsx:573
-#: src/components/moderation/ReportDialog/index.tsx:580
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10636,13 +10925,13 @@ msgid "Subscribe"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:377
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:386
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:385
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10673,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10711,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10721,12 +11014,20 @@ msgstr ""
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
+msgid "Suspended accounts cannot participate in a group chat."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
+msgid "Suspended accounts cannot participate in chat."
+msgstr ""
+
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr ""
@@ -10735,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10761,7 +11062,7 @@ msgstr ""
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10787,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10857,7 +11176,7 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10872,7 +11191,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr ""
@@ -10982,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -10990,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr ""
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11034,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11048,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11059,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -11069,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -11094,7 +11420,7 @@ msgstr ""
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11187,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr ""
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr ""
@@ -11196,7 +11522,7 @@ msgstr ""
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11204,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11243,7 +11574,11 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11251,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11293,7 +11628,7 @@ msgstr ""
msgid "This handle is reserved. Please try a different one."
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11301,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11310,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11343,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr ""
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:624
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:620
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11387,7 +11734,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr ""
@@ -11399,7 +11746,8 @@ msgstr ""
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 ""
-#: src/screens/Messages/ConversationSettings/index.tsx:130
+#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11407,7 +11755,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/features/liveNow/index.tsx:200
+#: src/features/liveNow/index.tsx:203
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -11427,11 +11775,19 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
+msgid "This user has blocked you and cannot be messaged."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
+msgid "This user has disabled chat and cannot be messaged."
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
msgstr ""
@@ -11499,7 +11855,7 @@ msgstr ""
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr ""
@@ -11525,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr ""
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11534,10 +11890,6 @@ msgstr ""
msgid "To log out, <0>click here0>. Or if you’d prefer, you can <1>delete your account1>."
msgstr ""
-#: src/components/dms/ReportConversationPrompt.tsx:19
-msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
-msgstr ""
-
#: src/components/dms/DateDivider.tsx:27
msgid "Today"
msgstr ""
@@ -11575,12 +11927,12 @@ msgstr ""
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11631,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11692,6 +12044,18 @@ msgstr ""
msgid "Unable to delete"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
+msgid "Unable to find the selected recipient."
+msgstr ""
+
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
msgstr ""
@@ -11712,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:662
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11734,8 +12098,8 @@ msgstr ""
msgid "Unblock {displayName}"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:277
-#: src/components/dms/ConvoMenu.tsx:281
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
#: src/view/com/profile/ProfileMenu.tsx:468
#: src/view/com/profile/ProfileMenu.tsx:474
msgid "Unblock account"
@@ -11758,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11793,7 +12157,7 @@ msgstr ""
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:496
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11825,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11839,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:519
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11867,7 +12231,7 @@ msgstr ""
msgid "Unmute account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:265
+#: src/components/dms/ConvoMenu.tsx:282
msgid "Unmute conversation"
msgstr ""
@@ -11876,7 +12240,7 @@ msgstr ""
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:484
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11895,14 +12259,14 @@ msgid "Unpin"
msgstr ""
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr ""
@@ -11917,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr ""
@@ -11951,11 +12315,11 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -11968,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -11986,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12011,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr ""
@@ -12019,39 +12395,40 @@ msgstr ""
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr ""
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr ""
@@ -12094,7 +12471,8 @@ msgstr ""
msgid "user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportConversationDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12131,7 +12509,7 @@ msgid "User list by {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12175,12 +12553,12 @@ msgstr ""
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12197,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12224,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12236,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr ""
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12269,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12300,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr ""
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr ""
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12339,7 +12717,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr ""
@@ -12352,18 +12730,18 @@ msgstr ""
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12375,7 +12753,7 @@ msgstr ""
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12387,17 +12765,17 @@ msgstr ""
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:388
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12423,10 +12801,18 @@ msgstr ""
msgid "View full thread"
msgstr ""
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:42
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr ""
@@ -12442,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12459,10 +12845,10 @@ msgstr ""
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:378
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:389
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12470,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:506
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12483,7 +12869,7 @@ msgstr ""
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr ""
@@ -12516,8 +12902,8 @@ msgstr ""
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12560,8 +12946,8 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12585,11 +12971,15 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:111
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12635,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr ""
@@ -12669,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12699,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12734,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
@@ -12785,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr ""
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12798,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12807,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr ""
@@ -12827,6 +13217,7 @@ msgid "Why are you appealing?"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:52
+#: src/components/moderation/ReportDialog/copy.ts:66
msgid "Why should this conversation be reviewed?"
msgstr ""
@@ -12858,15 +13249,19 @@ msgstr ""
msgid "Why should this user be reviewed?"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:49
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/components/dms/AfterReportConversationDialog.tsx:47
+msgid "Would you like to block this user and/or leave this conversation?"
+msgstr ""
+
#: src/view/com/composer/drafts/DraftsButton.tsx:110
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12875,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr ""
@@ -12893,7 +13288,8 @@ msgstr ""
msgid "Wrong DID returned from server. Received: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:129
+#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -12945,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:635
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -12979,11 +13375,11 @@ msgstr ""
msgid "You are Live"
msgstr ""
-#: src/features/liveNow/index.tsx:368
+#: src/features/liveNow/index.tsx:371
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr ""
@@ -12991,7 +13387,7 @@ msgstr ""
msgid "You are not following anyone yet"
msgstr ""
-#: src/features/liveNow/index.tsx:312
+#: src/features/liveNow/index.tsx:315
msgid "You are now live!"
msgstr ""
@@ -13032,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13046,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13054,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13070,9 +13471,9 @@ msgstr ""
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13081,6 +13482,10 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
+msgid "You cannot create a group chat yet."
+msgstr ""
+
#: src/lib/hooks/useCleanError.ts:54
#: 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."
@@ -13108,6 +13513,10 @@ msgstr ""
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13177,7 +13586,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13247,7 +13656,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13265,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13280,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr ""
@@ -13301,7 +13710,7 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13374,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13386,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr ""
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
@@ -13410,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 ""
@@ -13430,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr ""
@@ -13472,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13493,7 +13910,7 @@ msgstr ""
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13522,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13534,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13546,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13559,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:523
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13572,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/bn/messages.po b/src/locale/locales/bn/messages.po
index f13f0efdb8..583841fa79 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Bengali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr ""
msgid "{0, plural, one {# month} other {# months}}"
msgstr ""
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr ""
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:203
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:639
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr ""
msgid "{0}s"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr ""
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:850
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:811
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,8 +643,8 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:33
-msgid "{memberCount}/{MEMBER_LIMIT}"
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
+msgid "{memberCount}/{memberLimit}"
msgstr ""
#: src/features/liveNow/utils.ts:10
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:52
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:47
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,6 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -802,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -825,7 +892,11 @@ msgstr ""
msgid "A screenshot of 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:547
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
+msgid "A selected recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -841,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -854,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr ""
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr ""
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -939,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr ""
@@ -993,8 +1079,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1006,16 +1092,16 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1029,7 +1115,7 @@ msgstr ""
msgid "Add App Password"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1037,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1046,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1056,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
+#: src/components/moderation/ReportDialog/index.tsx:528
#: src/components/moderation/ReportDialog/index.tsx:532
-#: src/components/moderation/ReportDialog/index.tsx:536
msgid "Add more details (optional)"
msgstr ""
@@ -1074,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1159,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:550
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1222,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1235,7 +1321,7 @@ msgstr ""
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1272,13 +1358,13 @@ msgstr ""
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1332,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr ""
@@ -1356,7 +1442,7 @@ msgid "Alt Text"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr ""
@@ -1381,7 +1467,7 @@ msgstr ""
msgid "An error occurred"
msgstr ""
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr ""
@@ -1426,11 +1512,11 @@ msgstr ""
msgid "An error occurred while trying to follow all"
msgstr ""
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1455,20 +1541,20 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:56
-msgid "An issue occurred creating the group chat, please try again"
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
+msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:42
-msgid "An issue occurred starting the chat, please try again"
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
+msgid "An issue occurred starting the chat, please try again."
msgstr ""
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
@@ -1484,7 +1570,7 @@ msgstr ""
msgid "An issue occurred, please try again."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1533,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1549,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1591,7 +1681,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr ""
@@ -1612,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr ""
@@ -1626,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr ""
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1669,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1682,23 +1772,23 @@ msgstr ""
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1746,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1761,12 +1851,12 @@ msgstr ""
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1777,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1790,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1834,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:94
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1871,7 +1963,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1881,8 +1973,8 @@ msgstr ""
msgid "Block {displayName}"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:277
-#: src/components/dms/ConvoMenu.tsx:281
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749
#: src/screens/Messages/components/RequestButtons.tsx:149
@@ -1892,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1906,8 +1998,14 @@ msgstr ""
msgid "Block accounts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:147
-msgid "Block and Delete"
+#: src/components/dms/AfterReportDialog.tsx:148
+msgid "Block and delete"
+msgstr ""
+
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:167
+msgctxt "button"
+msgid "Block and leave"
msgstr ""
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
@@ -1922,20 +2020,29 @@ msgstr ""
msgid "Block these accounts?"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:188
-#: src/components/dms/AfterReportDialog.tsx:191
+#: src/components/dms/AfterReportConversationDialog.tsx:221
+#: src/components/dms/AfterReportConversationDialog.tsx:224
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:153
-msgid "Block User"
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:182
+msgctxt "button"
+msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:184
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:196
+#: src/components/dms/AfterReportConversationDialog.tsx:217
+msgid "Block user and/or leave this conversation"
+msgstr ""
+
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr ""
@@ -1943,13 +2050,13 @@ msgstr ""
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -2008,7 +2115,7 @@ msgstr ""
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2032,7 +2139,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:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2116,23 +2223,30 @@ msgstr ""
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:853
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:74
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2160,7 +2274,7 @@ msgstr ""
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr ""
@@ -2171,8 +2285,8 @@ msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2191,10 +2305,10 @@ msgstr ""
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2207,11 +2321,11 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr ""
@@ -2227,9 +2341,9 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -2243,7 +2357,7 @@ msgstr ""
msgid "Captions & alt text"
msgstr ""
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2276,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:449
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2289,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:394
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2323,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr ""
@@ -2340,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2352,31 +2473,35 @@ msgstr ""
msgid "Chat messages - sound"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:199
+#: src/components/dms/ConvoMenu.tsx:216
msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/Navigation.tsx:588
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
+msgid "Chat recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:82
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/components/dms/ConvoMenu.tsx:84
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr ""
@@ -2393,14 +2518,14 @@ msgstr ""
msgid "Chat unlocked"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:201
+#: src/components/dms/ConvoMenu.tsx:218
msgctxt "toast"
msgid "Chat unmuted"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2454,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2508,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2516,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2533,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2542,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2555,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr ""
@@ -2569,24 +2694,30 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
-#: src/components/dms/AfterReportDialog.tsx:93
-#: src/components/dms/AfterReportDialog.tsx:98
+#: src/components/dms/AddMembersFlow.tsx:377
+#: src/components/dms/AfterReportConversationDialog.tsx:91
+#: src/components/dms/AfterReportConversationDialog.tsx:96
+#: src/components/dms/AfterReportConversationDialog.tsx:247
+#: src/components/dms/AfterReportConversationDialog.tsx:252
+#: src/components/dms/AfterReportDialog.tsx:94
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2594,14 +2725,14 @@ msgstr ""
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2618,6 +2749,10 @@ msgstr ""
msgid "Close alert"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr ""
@@ -2628,8 +2763,9 @@ msgstr ""
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr ""
@@ -2643,7 +2779,7 @@ msgid "Close image"
msgstr ""
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2654,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr ""
@@ -2666,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2696,7 +2840,7 @@ msgid "Comics"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr ""
@@ -2711,12 +2855,12 @@ msgstr ""
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr ""
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2724,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr ""
@@ -2751,7 +2895,7 @@ msgstr ""
msgid "Confirm"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2813,7 +2957,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr ""
@@ -2860,7 +3004,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2879,38 +3023,51 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:148
-#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr ""
+#: src/components/dms/AfterReportConversationDialog.tsx:172
+#: src/components/dms/AfterReportConversationDialog.tsx:179
+msgctxt "toast"
+msgid "Conversation left"
+msgstr ""
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2962,6 +3119,7 @@ msgstr ""
msgid "Copy host"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -2992,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr ""
@@ -3017,7 +3175,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr ""
@@ -3030,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3049,8 +3207,9 @@ msgstr ""
msgid "Could not follow all matches. {0}"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:138
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportConversationDialog.tsx:158
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr ""
@@ -3058,13 +3217,17 @@ msgstr ""
msgid "Could not load feed"
msgstr ""
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
msgid "Could not load list"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:205
+#: src/components/dms/ConvoMenu.tsx:222
msgid "Could not mute chat"
msgstr ""
@@ -3103,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr ""
@@ -3123,7 +3286,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr ""
@@ -3138,13 +3301,14 @@ msgstr ""
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3162,7 +3326,7 @@ msgstr ""
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr ""
@@ -3170,7 +3334,7 @@ msgstr ""
msgid "Create another"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3192,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:713
-#: src/components/moderation/ReportDialog/index.tsx:759
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr ""
@@ -3220,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:461
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr ""
@@ -3305,7 +3470,7 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3346,18 +3511,15 @@ msgstr ""
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:194
-#: src/components/dms/AfterReportDialog.tsx:197
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:150
-msgid "Delete Conversation"
-msgstr ""
-
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr ""
@@ -3366,11 +3528,11 @@ msgstr ""
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr ""
@@ -3380,7 +3542,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr ""
@@ -3401,12 +3563,12 @@ msgstr ""
msgid "Delete this post?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:189
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr ""
@@ -3474,13 +3636,13 @@ msgstr ""
msgid "Dim"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3488,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3501,8 +3663,8 @@ msgstr ""
msgid "Disable haptic feedback"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3514,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3527,9 +3689,9 @@ msgstr ""
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3540,19 +3702,19 @@ msgstr ""
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3580,11 +3742,11 @@ msgstr ""
msgid "Dismiss"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr ""
@@ -3640,7 +3802,7 @@ msgstr ""
msgid "Domain verified!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3648,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3667,15 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
-#: src/components/dms/AfterReportDialog.tsx:144
+#: src/components/dms/AfterReportConversationDialog.tsx:164
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3691,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr ""
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3707,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr ""
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr ""
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr ""
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3725,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3789,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3804,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr ""
@@ -3813,14 +3978,14 @@ msgstr ""
msgid "Edit Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr ""
@@ -3834,7 +3999,16 @@ msgstr ""
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3852,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:495
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr ""
@@ -3891,7 +4060,7 @@ msgstr ""
msgid "Edit starter pack"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:494
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3903,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr ""
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr ""
@@ -3937,7 +4106,7 @@ msgstr ""
msgid "Email Resent"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -3972,8 +4141,8 @@ msgstr ""
msgid "Embedded video player"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr ""
@@ -3991,7 +4160,7 @@ msgstr ""
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4004,13 +4173,12 @@ msgstr ""
msgid "Enable media players for"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4057,8 +4225,8 @@ msgstr ""
msgid "Enter a word or tag"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4109,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr ""
@@ -4151,23 +4319,23 @@ msgstr ""
msgid "Everybody can reply to this post."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4183,8 +4351,8 @@ msgstr ""
msgid "Exit fullscreen"
msgstr ""
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr ""
@@ -4192,7 +4360,7 @@ msgstr ""
msgid "Expand list of users"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr ""
@@ -4204,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -4243,9 +4411,9 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4255,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4288,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr ""
@@ -4302,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4320,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4333,7 +4502,7 @@ msgstr ""
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4348,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr ""
@@ -4360,24 +4529,24 @@ msgstr ""
msgid "Failed to delete starter pack"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:343
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4393,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:370
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4422,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4459,16 +4627,15 @@ msgstr ""
msgid "Failed to load suggested follows"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:391
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:357
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4477,7 +4644,7 @@ msgid "Failed to pin post"
msgstr ""
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4491,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4508,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4535,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4546,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr ""
@@ -4555,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:394
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4563,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4580,7 +4751,7 @@ msgstr ""
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr ""
@@ -4607,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr ""
@@ -4615,7 +4786,7 @@ msgstr ""
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr ""
@@ -4628,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr ""
@@ -4652,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr ""
@@ -4705,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4713,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4734,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr ""
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4765,7 +4936,7 @@ msgstr ""
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4910,8 +5081,12 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr ""
@@ -4961,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr ""
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr ""
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr ""
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr ""
@@ -5035,7 +5207,7 @@ msgstr ""
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5052,35 +5224,35 @@ msgstr ""
msgid "Generate a starter pack"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5088,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr ""
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5140,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:180
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr ""
@@ -5179,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr ""
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr ""
@@ -5203,7 +5380,9 @@ msgid "Go back to previous step"
msgstr ""
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr ""
@@ -5213,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr ""
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr ""
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5250,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr ""
@@ -5262,19 +5437,19 @@ msgstr ""
msgid "Go to next"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:255
+#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:251
+#: src/components/dms/ConvoMenu.tsx:268
msgid "Go to user's profile"
msgstr ""
@@ -5286,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5306,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:383
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:350
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:338
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
-#: src/screens/Messages/ConversationSettings/index.tsx:89
+#: src/Navigation.tsx:490
+#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5387,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr ""
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5412,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr ""
@@ -5424,8 +5615,8 @@ msgstr ""
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5449,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr ""
@@ -5618,18 +5809,18 @@ msgstr ""
msgid "Hmmmm, we couldn't load that moderation service."
msgstr ""
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr ""
@@ -5679,7 +5870,6 @@ msgid "I have my own domain"
msgstr ""
#: src/components/dms/BlockedByListDialog.tsx:55
-#: src/components/dms/ReportConversationPrompt.tsx:21
msgid "I understand"
msgstr ""
@@ -5688,7 +5878,7 @@ msgstr ""
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
@@ -5724,7 +5914,7 @@ msgstr ""
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5732,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5740,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5753,23 +5942,33 @@ msgstr ""
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr ""
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5784,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5829,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5848,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5930,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr ""
@@ -5948,6 +6151,10 @@ msgstr ""
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr ""
@@ -5977,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:508
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -5991,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6041,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr ""
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr ""
@@ -6050,6 +6257,11 @@ msgstr ""
msgid "Jobs"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6057,6 +6269,15 @@ msgstr ""
msgid "Join Bluesky"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6066,8 +6287,8 @@ msgstr ""
msgid "Journalism"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6110,7 +6331,7 @@ msgstr ""
msgid "Labels on your content"
msgstr ""
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr ""
@@ -6141,7 +6362,7 @@ msgid "Latest"
msgstr ""
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6196,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr ""
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6206,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6219,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:542
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr ""
@@ -6237,19 +6458,27 @@ msgstr ""
msgid "Leave chat"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:229
-#: src/components/dms/ConvoMenu.tsx:233
-#: src/components/dms/ConvoMenu.tsx:299
-#: src/components/dms/ConvoMenu.tsx:303
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/AfterReportConversationDialog.tsx:229
+#: src/components/dms/AfterReportConversationDialog.tsx:233
+#: src/components/dms/ConvoMenu.tsx:246
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/dms/ConvoMenu.tsx:316
+#: src/components/dms/ConvoMenu.tsx:320
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:174
+msgctxt "button"
+msgid "Leave conversation"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:541
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6286,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -6305,11 +6534,7 @@ msgstr ""
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr ""
@@ -6317,8 +6542,8 @@ msgstr ""
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr ""
@@ -6336,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr ""
@@ -6368,11 +6589,11 @@ msgstr ""
msgid "Linear"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr ""
@@ -6458,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr ""
@@ -6504,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6554,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:522
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:520
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:522
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr ""
@@ -6621,7 +6842,7 @@ msgstr ""
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6646,24 +6867,22 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:241
-#: src/components/dms/ConvoMenu.tsx:245
+#: src/components/dms/ConvoMenu.tsx:258
+#: src/components/dms/ConvoMenu.tsx:262
msgid "Mark as read"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6686,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:28
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr ""
@@ -6734,22 +6949,22 @@ msgstr ""
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6772,19 +6987,19 @@ msgstr ""
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr ""
-#: src/components/dms/MessageItem.tsx:651
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:646
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6797,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6809,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr ""
@@ -6853,7 +7064,7 @@ msgstr ""
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr ""
@@ -6862,7 +7073,7 @@ msgstr ""
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr ""
@@ -6908,7 +7119,7 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:487
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr ""
@@ -6936,8 +7147,8 @@ msgstr ""
msgid "Mute accounts"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:260
-#: src/components/dms/ConvoMenu.tsx:267
+#: src/components/dms/ConvoMenu.tsx:277
+#: src/components/dms/ConvoMenu.tsx:284
msgid "Mute conversation"
msgstr ""
@@ -6953,7 +7164,7 @@ msgstr ""
msgid "Mute these accounts?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:485
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -6991,7 +7202,7 @@ msgstr ""
msgid "Mute words & tags"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:487
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -6999,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr ""
@@ -7067,8 +7278,8 @@ msgstr ""
msgid "Navigates to your profile"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:345
-#: src/components/moderation/ReportDialog/index.tsx:362
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7095,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:107
-#: src/components/dms/dialogs/NewChatDialog.tsx:117
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7133,23 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
-#: src/components/dms/InitiateChatFlow.tsx:715
-#: src/components/dms/InitiateChatFlow.tsx:743
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#. Button used to create a new group chat.
+#. Button used to create a new group chat.
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
+msgctxt "action"
+msgid "New group chat"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7180,7 +7393,7 @@ msgid "New post"
msgstr ""
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr ""
@@ -7215,8 +7428,8 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7288,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7315,7 +7528,7 @@ msgstr ""
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr ""
@@ -7331,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr ""
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7388,8 +7601,8 @@ msgid "No result"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr ""
@@ -7462,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7475,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7501,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr ""
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr ""
@@ -7554,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr ""
@@ -7576,7 +7772,8 @@ msgstr ""
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:658
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7601,27 +7798,35 @@ msgstr ""
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
+msgid "One of the selected recipients does not allow group chats."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
+msgid "One of the selected recipients has blocked you and cannot be messaged."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr ""
@@ -7630,6 +7835,26 @@ msgstr ""
msgid "Only {0} can reply."
msgstr ""
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7640,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr ""
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr ""
@@ -7657,7 +7892,7 @@ msgstr ""
msgid "Oops!"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr ""
@@ -7665,12 +7900,17 @@ msgstr ""
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr ""
@@ -7684,16 +7924,16 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr ""
@@ -7705,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:120
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr ""
@@ -7735,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7762,6 +8006,10 @@ msgstr ""
msgid "Open system log"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7783,7 +8031,7 @@ msgstr ""
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr ""
@@ -7803,22 +8051,24 @@ msgstr ""
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7835,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7864,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr ""
@@ -7940,12 +8190,14 @@ msgstr ""
msgid "Our blog post"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:88
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportConversationDialog.tsx:86
+#: src/components/dms/AfterReportConversationDialog.tsx:213
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
@@ -7953,14 +8205,15 @@ msgstr ""
msgid "Owner"
msgstr ""
-#: src/components/Lists.tsx:205
-#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
-msgid "Page not found"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
msgstr ""
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
+#: src/components/Lists.tsx:205
+#: src/components/Lists.tsx:220
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
+msgid "Page not found"
msgstr ""
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
@@ -8011,34 +8264,34 @@ msgstr ""
msgid "People"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8084,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr ""
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr ""
@@ -8095,7 +8348,7 @@ msgstr ""
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr ""
@@ -8109,8 +8362,8 @@ msgid "Pinned"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr ""
@@ -8179,7 +8432,7 @@ msgstr ""
msgid "Please choose your password."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8187,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr ""
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8208,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8228,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8236,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8249,7 +8502,7 @@ msgstr ""
msgid "Please enter your invite code."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8266,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr ""
@@ -8309,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8326,7 +8579,7 @@ msgstr ""
msgid "Porn"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr ""
@@ -8346,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8360,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr ""
@@ -8372,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr ""
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
@@ -8397,7 +8650,7 @@ msgstr ""
msgid "Post interaction settings"
msgstr ""
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8407,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8434,7 +8687,6 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8448,10 +8700,6 @@ msgstr ""
msgid "Posts hidden"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8471,6 +8719,7 @@ msgstr ""
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr ""
@@ -8479,7 +8728,7 @@ msgstr ""
msgid "Press to view followers of this account that you also follow"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8502,21 +8751,20 @@ msgstr ""
msgid "Privacy and security"
msgstr ""
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8529,15 +8777,15 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr ""
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr ""
@@ -8545,8 +8793,8 @@ msgstr ""
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8578,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8625,10 +8873,6 @@ msgstr ""
msgid "QR code saved to your camera roll!"
msgstr ""
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8654,8 +8898,8 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr ""
@@ -8676,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8688,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8707,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8755,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8784,6 +9028,10 @@ msgstr ""
msgid "Reconnect"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8793,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr ""
@@ -8839,17 +9087,17 @@ msgstr ""
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr ""
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr ""
@@ -8857,8 +9105,9 @@ msgstr ""
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr ""
@@ -8876,8 +9125,8 @@ msgstr ""
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8902,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr ""
@@ -8952,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:224
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr ""
-#: src/components/Post/Embed/index.tsx:222
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr ""
@@ -8978,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9032,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr ""
@@ -9047,14 +9295,14 @@ msgstr ""
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9068,10 +9316,6 @@ msgstr ""
msgid "Reply Hidden by You"
msgstr ""
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
@@ -9089,9 +9333,9 @@ msgstr ""
msgid "Reply was successfully hidden"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:533
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr ""
@@ -9100,21 +9344,20 @@ msgstr ""
msgid "Report account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:287
-#: src/components/dms/ConvoMenu.tsx:291
-#: src/components/dms/ReportConversationPrompt.tsx:17
+#: src/components/dms/ConvoMenu.tsx:304
+#: src/components/dms/ConvoMenu.tsx:308
#: src/screens/Messages/components/RequestButtons.tsx:160
#: src/screens/Messages/components/RequestButtons.tsx:163
msgid "Report conversation"
msgstr ""
#: src/components/moderation/ReportDialog/index.tsx:98
-#: src/components/moderation/ReportDialog/index.tsx:265
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr ""
@@ -9123,7 +9366,7 @@ msgstr ""
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr ""
@@ -9141,12 +9384,15 @@ msgstr ""
msgid "Report starter pack"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:85
-#: src/components/dms/AfterReportDialog.tsx:177
+#: src/components/dms/AfterReportConversationDialog.tsx:83
+#: src/components/dms/AfterReportConversationDialog.tsx:210
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:51
+#: src/components/moderation/ReportDialog/copy.ts:65
msgid "Report this conversation"
msgstr ""
@@ -9154,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:532
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9163,7 +9409,7 @@ msgid "Report this list"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9197,10 +9443,6 @@ msgstr ""
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9223,8 +9465,8 @@ msgid "Reposted by you"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9233,13 +9475,17 @@ msgid "Reposts of this post"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9247,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9269,7 +9534,11 @@ msgstr ""
msgid "Required in your region"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9334,15 +9603,16 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9356,7 +9626,7 @@ msgstr ""
msgid "Retry"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:296
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9367,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr ""
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr ""
@@ -9395,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9420,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:229
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9459,12 +9731,12 @@ msgstr ""
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9475,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr ""
@@ -9492,8 +9764,8 @@ msgstr ""
msgid "Say hello!"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9517,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr ""
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9608,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9618,13 +9890,13 @@ msgstr ""
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9700,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9769,7 +10041,7 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9791,7 +10063,7 @@ msgstr ""
msgid "Select languages"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:434
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9845,11 +10117,11 @@ msgstr ""
msgid "Select your preferred language for translations in your feed."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9862,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr ""
@@ -9880,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr ""
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr ""
@@ -9893,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:824
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9901,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9915,7 +10187,7 @@ msgid "Send via direct message"
msgstr ""
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -9956,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -9971,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10020,10 +10292,12 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
+#: src/components/MediaPreview.tsx:235
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10039,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10065,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10092,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr ""
@@ -10108,16 +10382,16 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10211,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr ""
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10238,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10270,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr ""
@@ -10278,6 +10558,10 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10289,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr ""
@@ -10300,7 +10584,7 @@ msgid "Sign Out"
msgstr ""
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr ""
@@ -10332,7 +10616,7 @@ msgstr ""
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10346,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10354,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10403,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10428,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
-#: src/screens/Messages/ConversationSettings/index.tsx:110
+#: src/screens/Messages/Conversation.tsx:137
+#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:291
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10458,11 +10747,11 @@ msgstr ""
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:239
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr ""
@@ -10509,7 +10798,7 @@ msgstr ""
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:123
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr ""
@@ -10523,17 +10812,17 @@ msgstr ""
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:779
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr ""
@@ -10595,12 +10884,12 @@ msgstr ""
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10612,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr ""
@@ -10625,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:512
-#: src/components/moderation/ReportDialog/index.tsx:573
-#: src/components/moderation/ReportDialog/index.tsx:580
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10636,13 +10925,13 @@ msgid "Subscribe"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:377
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:386
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:385
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10673,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10711,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10721,12 +11014,20 @@ msgstr ""
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
+msgid "Suspended accounts cannot participate in a group chat."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
+msgid "Suspended accounts cannot participate in chat."
+msgstr ""
+
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr ""
@@ -10735,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10761,7 +11062,7 @@ msgstr ""
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10787,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10857,7 +11176,7 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10872,7 +11191,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr ""
@@ -10982,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -10990,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr ""
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11034,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11048,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11059,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -11069,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -11094,7 +11420,7 @@ msgstr ""
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11187,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr ""
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr ""
@@ -11196,7 +11522,7 @@ msgstr ""
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11204,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11243,7 +11574,11 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11251,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11293,7 +11628,7 @@ msgstr ""
msgid "This handle is reserved. Please try a different one."
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11301,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11310,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11343,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr ""
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:624
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:620
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11387,7 +11734,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr ""
@@ -11399,7 +11746,8 @@ msgstr ""
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 ""
-#: src/screens/Messages/ConversationSettings/index.tsx:130
+#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11407,7 +11755,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/features/liveNow/index.tsx:200
+#: src/features/liveNow/index.tsx:203
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -11427,11 +11775,19 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
+msgid "This user has blocked you and cannot be messaged."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
+msgid "This user has disabled chat and cannot be messaged."
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
msgstr ""
@@ -11499,7 +11855,7 @@ msgstr ""
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr ""
@@ -11525,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr ""
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11534,10 +11890,6 @@ msgstr ""
msgid "To log out, <0>click here0>. Or if you’d prefer, you can <1>delete your account1>."
msgstr ""
-#: src/components/dms/ReportConversationPrompt.tsx:19
-msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
-msgstr ""
-
#: src/components/dms/DateDivider.tsx:27
msgid "Today"
msgstr ""
@@ -11575,12 +11927,12 @@ msgstr ""
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11631,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11692,6 +12044,18 @@ msgstr ""
msgid "Unable to delete"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
+msgid "Unable to find the selected recipient."
+msgstr ""
+
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
msgstr ""
@@ -11712,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:662
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11734,8 +12098,8 @@ msgstr ""
msgid "Unblock {displayName}"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:277
-#: src/components/dms/ConvoMenu.tsx:281
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
#: src/view/com/profile/ProfileMenu.tsx:468
#: src/view/com/profile/ProfileMenu.tsx:474
msgid "Unblock account"
@@ -11758,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11793,7 +12157,7 @@ msgstr ""
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:496
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11825,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11839,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:519
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11867,7 +12231,7 @@ msgstr ""
msgid "Unmute account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:265
+#: src/components/dms/ConvoMenu.tsx:282
msgid "Unmute conversation"
msgstr ""
@@ -11876,7 +12240,7 @@ msgstr ""
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:484
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11895,14 +12259,14 @@ msgid "Unpin"
msgstr ""
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr ""
@@ -11917,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr ""
@@ -11951,11 +12315,11 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -11968,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -11986,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12011,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr ""
@@ -12019,39 +12395,40 @@ msgstr ""
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr ""
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr ""
@@ -12094,7 +12471,8 @@ msgstr ""
msgid "user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportConversationDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12131,7 +12509,7 @@ msgid "User list by {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12175,12 +12553,12 @@ msgstr ""
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12197,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12224,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12236,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr ""
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12269,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12300,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr ""
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr ""
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12339,7 +12717,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr ""
@@ -12352,18 +12730,18 @@ msgstr ""
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12375,7 +12753,7 @@ msgstr ""
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12387,17 +12765,17 @@ msgstr ""
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:388
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12423,10 +12801,18 @@ msgstr ""
msgid "View full thread"
msgstr ""
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:42
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr ""
@@ -12442,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12459,10 +12845,10 @@ msgstr ""
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:378
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:389
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12470,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:506
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12483,7 +12869,7 @@ msgstr ""
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr ""
@@ -12516,8 +12902,8 @@ msgstr ""
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12560,8 +12946,8 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12585,11 +12971,15 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:111
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12635,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr ""
@@ -12669,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12699,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12734,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
@@ -12785,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr ""
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12798,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12807,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr ""
@@ -12827,6 +13217,7 @@ msgid "Why are you appealing?"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:52
+#: src/components/moderation/ReportDialog/copy.ts:66
msgid "Why should this conversation be reviewed?"
msgstr ""
@@ -12858,15 +13249,19 @@ msgstr ""
msgid "Why should this user be reviewed?"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:49
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/components/dms/AfterReportConversationDialog.tsx:47
+msgid "Would you like to block this user and/or leave this conversation?"
+msgstr ""
+
#: src/view/com/composer/drafts/DraftsButton.tsx:110
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12875,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr ""
@@ -12893,7 +13288,8 @@ msgstr ""
msgid "Wrong DID returned from server. Received: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:129
+#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -12945,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:635
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -12979,11 +13375,11 @@ msgstr ""
msgid "You are Live"
msgstr ""
-#: src/features/liveNow/index.tsx:368
+#: src/features/liveNow/index.tsx:371
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr ""
@@ -12991,7 +13387,7 @@ msgstr ""
msgid "You are not following anyone yet"
msgstr ""
-#: src/features/liveNow/index.tsx:312
+#: src/features/liveNow/index.tsx:315
msgid "You are now live!"
msgstr ""
@@ -13032,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13046,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13054,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13070,9 +13471,9 @@ msgstr ""
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13081,6 +13482,10 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
+msgid "You cannot create a group chat yet."
+msgstr ""
+
#: src/lib/hooks/useCleanError.ts:54
#: 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."
@@ -13108,6 +13513,10 @@ msgstr ""
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13177,7 +13586,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13247,7 +13656,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13265,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13280,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr ""
@@ -13301,7 +13710,7 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13374,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13386,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr ""
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
@@ -13410,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 ""
@@ -13430,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr ""
@@ -13472,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13493,7 +13910,7 @@ msgstr ""
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13522,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13534,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13546,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13559,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:523
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13572,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/br/messages.po b/src/locale/locales/br/messages.po
index 80161ce405..6d4fc6d605 100644
--- a/src/locale/locales/br/messages.po
+++ b/src/locale/locales/br/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: br\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Breton\n"
"Plural-Forms: nplurals=5; plural=(n%10==1 && (n%100!=11 || n%100!=71 || n%100!=91) ? 0 : n%10==2 && (n%100!=12 || n%100!=72 || n%100!=92) ? 1 : ((n%10>=3 && n%10<=4) || n%10==9) && ((n%100 < 10 || n%100 > 19) || (n%100 < 70 || n%100 > 79) || (n%100 < 90 || n%100 > 99)) ? 2 : (n!=0 && n%1;\n"
@@ -86,9 +86,14 @@ msgstr ""
msgid "{0, plural, one {# month} other {# months}}"
msgstr ""
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr ""
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:203
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:639
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr ""
msgid "{0}s"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr ""
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:850
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:811
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,8 +643,8 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:33
-msgid "{memberCount}/{MEMBER_LIMIT}"
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
+msgid "{memberCount}/{memberLimit}"
msgstr ""
#: src/features/liveNow/utils.ts:10
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:52
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:47
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,6 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -802,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -825,7 +892,11 @@ msgstr ""
msgid "A screenshot of 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:547
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
+msgid "A selected recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -841,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -854,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr ""
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr ""
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -939,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr ""
@@ -993,8 +1079,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1006,16 +1092,16 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1029,7 +1115,7 @@ msgstr ""
msgid "Add App Password"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1037,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1046,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1056,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
+#: src/components/moderation/ReportDialog/index.tsx:528
#: src/components/moderation/ReportDialog/index.tsx:532
-#: src/components/moderation/ReportDialog/index.tsx:536
msgid "Add more details (optional)"
msgstr ""
@@ -1074,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1159,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:550
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1222,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1235,7 +1321,7 @@ msgstr ""
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1272,13 +1358,13 @@ msgstr ""
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1332,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr ""
@@ -1356,7 +1442,7 @@ msgid "Alt Text"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr ""
@@ -1381,7 +1467,7 @@ msgstr ""
msgid "An error occurred"
msgstr ""
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr ""
@@ -1426,11 +1512,11 @@ msgstr ""
msgid "An error occurred while trying to follow all"
msgstr ""
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1455,20 +1541,20 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:56
-msgid "An issue occurred creating the group chat, please try again"
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
+msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:42
-msgid "An issue occurred starting the chat, please try again"
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
+msgid "An issue occurred starting the chat, please try again."
msgstr ""
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
@@ -1484,7 +1570,7 @@ msgstr ""
msgid "An issue occurred, please try again."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1533,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1549,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1591,7 +1681,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr ""
@@ -1612,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr ""
@@ -1626,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr ""
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1669,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1682,23 +1772,23 @@ msgstr ""
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1746,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1761,12 +1851,12 @@ msgstr ""
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1777,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1790,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1834,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:94
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1871,7 +1963,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1881,8 +1973,8 @@ msgstr ""
msgid "Block {displayName}"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:277
-#: src/components/dms/ConvoMenu.tsx:281
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749
#: src/screens/Messages/components/RequestButtons.tsx:149
@@ -1892,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1906,8 +1998,14 @@ msgstr ""
msgid "Block accounts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:147
-msgid "Block and Delete"
+#: src/components/dms/AfterReportDialog.tsx:148
+msgid "Block and delete"
+msgstr ""
+
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:167
+msgctxt "button"
+msgid "Block and leave"
msgstr ""
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
@@ -1922,20 +2020,29 @@ msgstr ""
msgid "Block these accounts?"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:188
-#: src/components/dms/AfterReportDialog.tsx:191
+#: src/components/dms/AfterReportConversationDialog.tsx:221
+#: src/components/dms/AfterReportConversationDialog.tsx:224
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:153
-msgid "Block User"
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:182
+msgctxt "button"
+msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:184
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:196
+#: src/components/dms/AfterReportConversationDialog.tsx:217
+msgid "Block user and/or leave this conversation"
+msgstr ""
+
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr ""
@@ -1943,13 +2050,13 @@ msgstr ""
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -2008,7 +2115,7 @@ msgstr ""
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2032,7 +2139,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:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2116,23 +2223,30 @@ msgstr ""
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:853
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:74
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2160,7 +2274,7 @@ msgstr ""
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr ""
@@ -2171,8 +2285,8 @@ msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2191,10 +2305,10 @@ msgstr ""
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2207,11 +2321,11 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr ""
@@ -2227,9 +2341,9 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -2243,7 +2357,7 @@ msgstr ""
msgid "Captions & alt text"
msgstr ""
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2276,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:449
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2289,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:394
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2323,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr ""
@@ -2340,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2352,31 +2473,35 @@ msgstr ""
msgid "Chat messages - sound"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:199
+#: src/components/dms/ConvoMenu.tsx:216
msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/Navigation.tsx:588
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
+msgid "Chat recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:82
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/components/dms/ConvoMenu.tsx:84
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr ""
@@ -2393,14 +2518,14 @@ msgstr ""
msgid "Chat unlocked"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:201
+#: src/components/dms/ConvoMenu.tsx:218
msgctxt "toast"
msgid "Chat unmuted"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2454,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2508,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2516,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2533,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2542,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2555,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr ""
@@ -2569,24 +2694,30 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
-#: src/components/dms/AfterReportDialog.tsx:93
-#: src/components/dms/AfterReportDialog.tsx:98
+#: src/components/dms/AddMembersFlow.tsx:377
+#: src/components/dms/AfterReportConversationDialog.tsx:91
+#: src/components/dms/AfterReportConversationDialog.tsx:96
+#: src/components/dms/AfterReportConversationDialog.tsx:247
+#: src/components/dms/AfterReportConversationDialog.tsx:252
+#: src/components/dms/AfterReportDialog.tsx:94
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2594,14 +2725,14 @@ msgstr ""
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2618,6 +2749,10 @@ msgstr ""
msgid "Close alert"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr ""
@@ -2628,8 +2763,9 @@ msgstr ""
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr ""
@@ -2643,7 +2779,7 @@ msgid "Close image"
msgstr ""
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2654,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr ""
@@ -2666,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2696,7 +2840,7 @@ msgid "Comics"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr ""
@@ -2711,12 +2855,12 @@ msgstr ""
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr ""
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2724,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr ""
@@ -2751,7 +2895,7 @@ msgstr ""
msgid "Confirm"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2813,7 +2957,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr ""
@@ -2860,7 +3004,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2879,38 +3023,51 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:148
-#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr ""
+#: src/components/dms/AfterReportConversationDialog.tsx:172
+#: src/components/dms/AfterReportConversationDialog.tsx:179
+msgctxt "toast"
+msgid "Conversation left"
+msgstr ""
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2962,6 +3119,7 @@ msgstr ""
msgid "Copy host"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -2992,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr ""
@@ -3017,7 +3175,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr ""
@@ -3030,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3049,8 +3207,9 @@ msgstr ""
msgid "Could not follow all matches. {0}"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:138
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportConversationDialog.tsx:158
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr ""
@@ -3058,13 +3217,17 @@ msgstr ""
msgid "Could not load feed"
msgstr ""
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
msgid "Could not load list"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:205
+#: src/components/dms/ConvoMenu.tsx:222
msgid "Could not mute chat"
msgstr ""
@@ -3103,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr ""
@@ -3123,7 +3286,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr ""
@@ -3138,13 +3301,14 @@ msgstr ""
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3162,7 +3326,7 @@ msgstr ""
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr ""
@@ -3170,7 +3334,7 @@ msgstr ""
msgid "Create another"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3192,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:713
-#: src/components/moderation/ReportDialog/index.tsx:759
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr ""
@@ -3220,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:461
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr ""
@@ -3305,7 +3470,7 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3346,18 +3511,15 @@ msgstr ""
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:194
-#: src/components/dms/AfterReportDialog.tsx:197
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:150
-msgid "Delete Conversation"
-msgstr ""
-
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr ""
@@ -3366,11 +3528,11 @@ msgstr ""
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr ""
@@ -3380,7 +3542,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr ""
@@ -3401,12 +3563,12 @@ msgstr ""
msgid "Delete this post?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:189
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr ""
@@ -3474,13 +3636,13 @@ msgstr ""
msgid "Dim"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3488,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3501,8 +3663,8 @@ msgstr ""
msgid "Disable haptic feedback"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3514,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3527,9 +3689,9 @@ msgstr ""
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3540,19 +3702,19 @@ msgstr ""
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3580,11 +3742,11 @@ msgstr ""
msgid "Dismiss"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr ""
@@ -3640,7 +3802,7 @@ msgstr ""
msgid "Domain verified!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3648,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3667,15 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
-#: src/components/dms/AfterReportDialog.tsx:144
+#: src/components/dms/AfterReportConversationDialog.tsx:164
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3691,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr ""
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3707,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr ""
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr ""
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr ""
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3725,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3789,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3804,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr ""
@@ -3813,14 +3978,14 @@ msgstr ""
msgid "Edit Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr ""
@@ -3834,7 +3999,16 @@ msgstr ""
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3852,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:495
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr ""
@@ -3891,7 +4060,7 @@ msgstr ""
msgid "Edit starter pack"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:494
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3903,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr ""
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr ""
@@ -3937,7 +4106,7 @@ msgstr ""
msgid "Email Resent"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -3972,8 +4141,8 @@ msgstr ""
msgid "Embedded video player"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr ""
@@ -3991,7 +4160,7 @@ msgstr ""
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4004,13 +4173,12 @@ msgstr ""
msgid "Enable media players for"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4057,8 +4225,8 @@ msgstr ""
msgid "Enter a word or tag"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4109,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr ""
@@ -4151,23 +4319,23 @@ msgstr ""
msgid "Everybody can reply to this post."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4183,8 +4351,8 @@ msgstr ""
msgid "Exit fullscreen"
msgstr ""
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr ""
@@ -4192,7 +4360,7 @@ msgstr ""
msgid "Expand list of users"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr ""
@@ -4204,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -4243,9 +4411,9 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4255,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4288,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr ""
@@ -4302,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4320,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4333,7 +4502,7 @@ msgstr ""
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4348,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr ""
@@ -4360,24 +4529,24 @@ msgstr ""
msgid "Failed to delete starter pack"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:343
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4393,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:370
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4422,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4459,16 +4627,15 @@ msgstr ""
msgid "Failed to load suggested follows"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:391
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:357
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4477,7 +4644,7 @@ msgid "Failed to pin post"
msgstr ""
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4491,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4508,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4535,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4546,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr ""
@@ -4555,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:394
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4563,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4580,7 +4751,7 @@ msgstr ""
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr ""
@@ -4607,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr ""
@@ -4615,7 +4786,7 @@ msgstr ""
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr ""
@@ -4628,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr ""
@@ -4652,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr ""
@@ -4705,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4713,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4734,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr ""
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4765,7 +4936,7 @@ msgstr ""
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4910,8 +5081,12 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr ""
@@ -4961,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr ""
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr ""
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr ""
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr ""
@@ -5035,7 +5207,7 @@ msgstr ""
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5052,35 +5224,35 @@ msgstr ""
msgid "Generate a starter pack"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5088,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr ""
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5140,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:180
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr ""
@@ -5179,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr ""
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr ""
@@ -5203,7 +5380,9 @@ msgid "Go back to previous step"
msgstr ""
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr ""
@@ -5213,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr ""
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr ""
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5250,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr ""
@@ -5262,19 +5437,19 @@ msgstr ""
msgid "Go to next"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:255
+#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:251
+#: src/components/dms/ConvoMenu.tsx:268
msgid "Go to user's profile"
msgstr ""
@@ -5286,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5306,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:383
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:350
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:338
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
-#: src/screens/Messages/ConversationSettings/index.tsx:89
+#: src/Navigation.tsx:490
+#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5387,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr ""
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5412,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr ""
@@ -5424,8 +5615,8 @@ msgstr ""
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5449,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr ""
@@ -5618,18 +5809,18 @@ msgstr ""
msgid "Hmmmm, we couldn't load that moderation service."
msgstr ""
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr ""
@@ -5679,7 +5870,6 @@ msgid "I have my own domain"
msgstr ""
#: src/components/dms/BlockedByListDialog.tsx:55
-#: src/components/dms/ReportConversationPrompt.tsx:21
msgid "I understand"
msgstr ""
@@ -5688,7 +5878,7 @@ msgstr ""
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
@@ -5724,7 +5914,7 @@ msgstr ""
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5732,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5740,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5753,23 +5942,33 @@ msgstr ""
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr ""
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5784,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5829,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5848,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5930,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr ""
@@ -5948,6 +6151,10 @@ msgstr ""
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr ""
@@ -5977,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:508
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -5991,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6041,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr ""
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr ""
@@ -6050,6 +6257,11 @@ msgstr ""
msgid "Jobs"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6057,6 +6269,15 @@ msgstr ""
msgid "Join Bluesky"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6066,8 +6287,8 @@ msgstr ""
msgid "Journalism"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6110,7 +6331,7 @@ msgstr ""
msgid "Labels on your content"
msgstr ""
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr ""
@@ -6141,7 +6362,7 @@ msgid "Latest"
msgstr ""
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6196,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr ""
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6206,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6219,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:542
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr ""
@@ -6237,19 +6458,27 @@ msgstr ""
msgid "Leave chat"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:229
-#: src/components/dms/ConvoMenu.tsx:233
-#: src/components/dms/ConvoMenu.tsx:299
-#: src/components/dms/ConvoMenu.tsx:303
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/AfterReportConversationDialog.tsx:229
+#: src/components/dms/AfterReportConversationDialog.tsx:233
+#: src/components/dms/ConvoMenu.tsx:246
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/dms/ConvoMenu.tsx:316
+#: src/components/dms/ConvoMenu.tsx:320
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:174
+msgctxt "button"
+msgid "Leave conversation"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:541
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6286,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -6305,11 +6534,7 @@ msgstr ""
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr ""
@@ -6317,8 +6542,8 @@ msgstr ""
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr ""
@@ -6336,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr ""
@@ -6368,11 +6589,11 @@ msgstr ""
msgid "Linear"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr ""
@@ -6458,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr ""
@@ -6504,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6554,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:522
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:520
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:522
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr ""
@@ -6621,7 +6842,7 @@ msgstr ""
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6646,24 +6867,22 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:241
-#: src/components/dms/ConvoMenu.tsx:245
+#: src/components/dms/ConvoMenu.tsx:258
+#: src/components/dms/ConvoMenu.tsx:262
msgid "Mark as read"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6686,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:28
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr ""
@@ -6734,22 +6949,22 @@ msgstr ""
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6772,19 +6987,19 @@ msgstr ""
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr ""
-#: src/components/dms/MessageItem.tsx:651
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:646
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6797,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6809,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr ""
@@ -6853,7 +7064,7 @@ msgstr ""
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr ""
@@ -6862,7 +7073,7 @@ msgstr ""
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr ""
@@ -6908,7 +7119,7 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:487
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr ""
@@ -6936,8 +7147,8 @@ msgstr ""
msgid "Mute accounts"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:260
-#: src/components/dms/ConvoMenu.tsx:267
+#: src/components/dms/ConvoMenu.tsx:277
+#: src/components/dms/ConvoMenu.tsx:284
msgid "Mute conversation"
msgstr ""
@@ -6953,7 +7164,7 @@ msgstr ""
msgid "Mute these accounts?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:485
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -6991,7 +7202,7 @@ msgstr ""
msgid "Mute words & tags"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:487
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -6999,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr ""
@@ -7067,8 +7278,8 @@ msgstr ""
msgid "Navigates to your profile"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:345
-#: src/components/moderation/ReportDialog/index.tsx:362
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7095,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:107
-#: src/components/dms/dialogs/NewChatDialog.tsx:117
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7133,23 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
-#: src/components/dms/InitiateChatFlow.tsx:715
-#: src/components/dms/InitiateChatFlow.tsx:743
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#. Button used to create a new group chat.
+#. Button used to create a new group chat.
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
+msgctxt "action"
+msgid "New group chat"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7180,7 +7393,7 @@ msgid "New post"
msgstr ""
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr ""
@@ -7215,8 +7428,8 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7288,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7315,7 +7528,7 @@ msgstr ""
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr ""
@@ -7331,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr ""
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7388,8 +7601,8 @@ msgid "No result"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr ""
@@ -7462,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7475,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7501,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr ""
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr ""
@@ -7554,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr ""
@@ -7576,7 +7772,8 @@ msgstr ""
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:658
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7601,27 +7798,35 @@ msgstr ""
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
+msgid "One of the selected recipients does not allow group chats."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
+msgid "One of the selected recipients has blocked you and cannot be messaged."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr ""
@@ -7630,6 +7835,26 @@ msgstr ""
msgid "Only {0} can reply."
msgstr ""
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7640,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr ""
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr ""
@@ -7657,7 +7892,7 @@ msgstr ""
msgid "Oops!"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr ""
@@ -7665,12 +7900,17 @@ msgstr ""
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr ""
@@ -7684,16 +7924,16 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr ""
@@ -7705,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:120
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr ""
@@ -7735,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7762,6 +8006,10 @@ msgstr ""
msgid "Open system log"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7783,7 +8031,7 @@ msgstr ""
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr ""
@@ -7803,22 +8051,24 @@ msgstr ""
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7835,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7864,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr ""
@@ -7940,12 +8190,14 @@ msgstr ""
msgid "Our blog post"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:88
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportConversationDialog.tsx:86
+#: src/components/dms/AfterReportConversationDialog.tsx:213
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
@@ -7953,14 +8205,15 @@ msgstr ""
msgid "Owner"
msgstr ""
-#: src/components/Lists.tsx:205
-#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
-msgid "Page not found"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
msgstr ""
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
+#: src/components/Lists.tsx:205
+#: src/components/Lists.tsx:220
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
+msgid "Page not found"
msgstr ""
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
@@ -8011,34 +8264,34 @@ msgstr ""
msgid "People"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8084,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr ""
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr ""
@@ -8095,7 +8348,7 @@ msgstr ""
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr ""
@@ -8109,8 +8362,8 @@ msgid "Pinned"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr ""
@@ -8179,7 +8432,7 @@ msgstr ""
msgid "Please choose your password."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8187,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr ""
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8208,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8228,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8236,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8249,7 +8502,7 @@ msgstr ""
msgid "Please enter your invite code."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8266,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr ""
@@ -8309,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8326,7 +8579,7 @@ msgstr ""
msgid "Porn"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr ""
@@ -8346,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8360,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr ""
@@ -8372,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr ""
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
@@ -8397,7 +8650,7 @@ msgstr ""
msgid "Post interaction settings"
msgstr ""
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8407,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8434,7 +8687,6 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8448,10 +8700,6 @@ msgstr ""
msgid "Posts hidden"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8471,6 +8719,7 @@ msgstr ""
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr ""
@@ -8479,7 +8728,7 @@ msgstr ""
msgid "Press to view followers of this account that you also follow"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8502,21 +8751,20 @@ msgstr ""
msgid "Privacy and security"
msgstr ""
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8529,15 +8777,15 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr ""
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr ""
@@ -8545,8 +8793,8 @@ msgstr ""
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8578,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8625,10 +8873,6 @@ msgstr ""
msgid "QR code saved to your camera roll!"
msgstr ""
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8654,8 +8898,8 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr ""
@@ -8676,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8688,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8707,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8755,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8784,6 +9028,10 @@ msgstr ""
msgid "Reconnect"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8793,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr ""
@@ -8839,17 +9087,17 @@ msgstr ""
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr ""
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr ""
@@ -8857,8 +9105,9 @@ msgstr ""
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr ""
@@ -8876,8 +9125,8 @@ msgstr ""
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8902,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr ""
@@ -8952,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:224
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr ""
-#: src/components/Post/Embed/index.tsx:222
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr ""
@@ -8978,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9032,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr ""
@@ -9047,14 +9295,14 @@ msgstr ""
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9068,10 +9316,6 @@ msgstr ""
msgid "Reply Hidden by You"
msgstr ""
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
@@ -9089,9 +9333,9 @@ msgstr ""
msgid "Reply was successfully hidden"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:533
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr ""
@@ -9100,21 +9344,20 @@ msgstr ""
msgid "Report account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:287
-#: src/components/dms/ConvoMenu.tsx:291
-#: src/components/dms/ReportConversationPrompt.tsx:17
+#: src/components/dms/ConvoMenu.tsx:304
+#: src/components/dms/ConvoMenu.tsx:308
#: src/screens/Messages/components/RequestButtons.tsx:160
#: src/screens/Messages/components/RequestButtons.tsx:163
msgid "Report conversation"
msgstr ""
#: src/components/moderation/ReportDialog/index.tsx:98
-#: src/components/moderation/ReportDialog/index.tsx:265
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr ""
@@ -9123,7 +9366,7 @@ msgstr ""
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr ""
@@ -9141,12 +9384,15 @@ msgstr ""
msgid "Report starter pack"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:85
-#: src/components/dms/AfterReportDialog.tsx:177
+#: src/components/dms/AfterReportConversationDialog.tsx:83
+#: src/components/dms/AfterReportConversationDialog.tsx:210
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:51
+#: src/components/moderation/ReportDialog/copy.ts:65
msgid "Report this conversation"
msgstr ""
@@ -9154,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:532
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9163,7 +9409,7 @@ msgid "Report this list"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9197,10 +9443,6 @@ msgstr ""
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9223,8 +9465,8 @@ msgid "Reposted by you"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9233,13 +9475,17 @@ msgid "Reposts of this post"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9247,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9269,7 +9534,11 @@ msgstr ""
msgid "Required in your region"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9334,15 +9603,16 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9356,7 +9626,7 @@ msgstr ""
msgid "Retry"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:296
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9367,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr ""
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr ""
@@ -9395,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9420,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:229
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9459,12 +9731,12 @@ msgstr ""
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9475,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr ""
@@ -9492,8 +9764,8 @@ msgstr ""
msgid "Say hello!"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9517,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr ""
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9608,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9618,13 +9890,13 @@ msgstr ""
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9700,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9769,7 +10041,7 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9791,7 +10063,7 @@ msgstr ""
msgid "Select languages"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:434
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9845,11 +10117,11 @@ msgstr ""
msgid "Select your preferred language for translations in your feed."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9862,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr ""
@@ -9880,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr ""
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr ""
@@ -9893,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:824
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9901,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9915,7 +10187,7 @@ msgid "Send via direct message"
msgstr ""
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -9956,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -9971,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10020,10 +10292,12 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
+#: src/components/MediaPreview.tsx:235
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10039,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10065,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10092,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr ""
@@ -10108,16 +10382,16 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10211,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr ""
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10238,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10270,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr ""
@@ -10278,6 +10558,10 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10289,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr ""
@@ -10300,7 +10584,7 @@ msgid "Sign Out"
msgstr ""
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr ""
@@ -10332,7 +10616,7 @@ msgstr ""
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10346,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10354,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10403,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10428,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
-#: src/screens/Messages/ConversationSettings/index.tsx:110
+#: src/screens/Messages/Conversation.tsx:137
+#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:291
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10458,11 +10747,11 @@ msgstr ""
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:239
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr ""
@@ -10509,7 +10798,7 @@ msgstr ""
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:123
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr ""
@@ -10523,17 +10812,17 @@ msgstr ""
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:779
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr ""
@@ -10595,12 +10884,12 @@ msgstr ""
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10612,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr ""
@@ -10625,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:512
-#: src/components/moderation/ReportDialog/index.tsx:573
-#: src/components/moderation/ReportDialog/index.tsx:580
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10636,13 +10925,13 @@ msgid "Subscribe"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:377
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:386
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:385
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10673,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10711,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10721,12 +11014,20 @@ msgstr ""
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
+msgid "Suspended accounts cannot participate in a group chat."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
+msgid "Suspended accounts cannot participate in chat."
+msgstr ""
+
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr ""
@@ -10735,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10761,7 +11062,7 @@ msgstr ""
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10787,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10857,7 +11176,7 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10872,7 +11191,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr ""
@@ -10982,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -10990,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr ""
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11034,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11048,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11059,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -11069,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -11094,7 +11420,7 @@ msgstr ""
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11187,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr ""
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr ""
@@ -11196,7 +11522,7 @@ msgstr ""
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11204,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11243,7 +11574,11 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11251,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11293,7 +11628,7 @@ msgstr ""
msgid "This handle is reserved. Please try a different one."
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11301,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11310,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11343,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr ""
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:624
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:620
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11387,7 +11734,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr ""
@@ -11399,7 +11746,8 @@ msgstr ""
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 ""
-#: src/screens/Messages/ConversationSettings/index.tsx:130
+#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11407,7 +11755,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/features/liveNow/index.tsx:200
+#: src/features/liveNow/index.tsx:203
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -11427,11 +11775,19 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
+msgid "This user has blocked you and cannot be messaged."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
+msgid "This user has disabled chat and cannot be messaged."
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
msgstr ""
@@ -11499,7 +11855,7 @@ msgstr ""
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr ""
@@ -11525,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr ""
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11534,10 +11890,6 @@ msgstr ""
msgid "To log out, <0>click here0>. Or if you’d prefer, you can <1>delete your account1>."
msgstr ""
-#: src/components/dms/ReportConversationPrompt.tsx:19
-msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
-msgstr ""
-
#: src/components/dms/DateDivider.tsx:27
msgid "Today"
msgstr ""
@@ -11575,12 +11927,12 @@ msgstr ""
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11631,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11692,6 +12044,18 @@ msgstr ""
msgid "Unable to delete"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
+msgid "Unable to find the selected recipient."
+msgstr ""
+
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
msgstr ""
@@ -11712,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:662
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11734,8 +12098,8 @@ msgstr ""
msgid "Unblock {displayName}"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:277
-#: src/components/dms/ConvoMenu.tsx:281
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
#: src/view/com/profile/ProfileMenu.tsx:468
#: src/view/com/profile/ProfileMenu.tsx:474
msgid "Unblock account"
@@ -11758,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11793,7 +12157,7 @@ msgstr ""
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:496
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11825,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11839,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:519
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11867,7 +12231,7 @@ msgstr ""
msgid "Unmute account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:265
+#: src/components/dms/ConvoMenu.tsx:282
msgid "Unmute conversation"
msgstr ""
@@ -11876,7 +12240,7 @@ msgstr ""
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:484
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11895,14 +12259,14 @@ msgid "Unpin"
msgstr ""
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr ""
@@ -11917,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr ""
@@ -11951,11 +12315,11 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -11968,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -11986,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12011,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr ""
@@ -12019,39 +12395,40 @@ msgstr ""
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr ""
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr ""
@@ -12094,7 +12471,8 @@ msgstr ""
msgid "user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportConversationDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12131,7 +12509,7 @@ msgid "User list by {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12175,12 +12553,12 @@ msgstr ""
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12197,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12224,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12236,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr ""
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12269,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12300,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr ""
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr ""
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12339,7 +12717,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr ""
@@ -12352,18 +12730,18 @@ msgstr ""
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12375,7 +12753,7 @@ msgstr ""
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12387,17 +12765,17 @@ msgstr ""
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:388
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12423,10 +12801,18 @@ msgstr ""
msgid "View full thread"
msgstr ""
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:42
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr ""
@@ -12442,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12459,10 +12845,10 @@ msgstr ""
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:378
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:389
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12470,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:506
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12483,7 +12869,7 @@ msgstr ""
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr ""
@@ -12516,8 +12902,8 @@ msgstr ""
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12560,8 +12946,8 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12585,11 +12971,15 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:111
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12635,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr ""
@@ -12669,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12699,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12734,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
@@ -12785,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr ""
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12798,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12807,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr ""
@@ -12827,6 +13217,7 @@ msgid "Why are you appealing?"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:52
+#: src/components/moderation/ReportDialog/copy.ts:66
msgid "Why should this conversation be reviewed?"
msgstr ""
@@ -12858,15 +13249,19 @@ msgstr ""
msgid "Why should this user be reviewed?"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:49
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/components/dms/AfterReportConversationDialog.tsx:47
+msgid "Would you like to block this user and/or leave this conversation?"
+msgstr ""
+
#: src/view/com/composer/drafts/DraftsButton.tsx:110
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12875,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr ""
@@ -12893,7 +13288,8 @@ msgstr ""
msgid "Wrong DID returned from server. Received: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:129
+#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -12945,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:635
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -12979,11 +13375,11 @@ msgstr ""
msgid "You are Live"
msgstr ""
-#: src/features/liveNow/index.tsx:368
+#: src/features/liveNow/index.tsx:371
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr ""
@@ -12991,7 +13387,7 @@ msgstr ""
msgid "You are not following anyone yet"
msgstr ""
-#: src/features/liveNow/index.tsx:312
+#: src/features/liveNow/index.tsx:315
msgid "You are now live!"
msgstr ""
@@ -13032,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13046,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13054,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13070,9 +13471,9 @@ msgstr ""
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13081,6 +13482,10 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
+msgid "You cannot create a group chat yet."
+msgstr ""
+
#: src/lib/hooks/useCleanError.ts:54
#: 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."
@@ -13108,6 +13513,10 @@ msgstr ""
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13177,7 +13586,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13247,7 +13656,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13265,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13280,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr ""
@@ -13301,7 +13710,7 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13374,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13386,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr ""
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
@@ -13410,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 ""
@@ -13430,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr ""
@@ -13472,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13493,7 +13910,7 @@ msgstr ""
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13522,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13534,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13546,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13559,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:523
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13572,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po
index 2f12ec3fec..78af14a061 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minut} other {# minuts}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# mes} other {# mesos}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, one {# persona ha} other {# persones han}} reaccionat– {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# segon} other {# segons}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# element sense llegir} other {# elements sense llegir}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} seguint"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr "{0} de 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} ha reaccionat amb {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, una llista de {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "Avatar de: {0}"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0} min"
msgid "{0}s"
msgstr "{0} s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr "{count, plural, one {# actualització de xat} other {# actualitzacions de xat}}"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, one {# sol·licitud} other {# sol·licituds}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# element sense llegir} other {# elements sense llegir}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "{count}+"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "{count}+ sol·licituds"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} t'ha verificat"
msgid "{following} following"
msgstr "{following} seguint"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "{handle} no es pot afegir"
@@ -547,7 +599,7 @@ msgstr "{handle} no es pot afegir"
msgid "{handle} can't be messaged"
msgstr "No es poden enviar missatges a {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "No es poden enviar missatges a {handle}"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# hora{minutesString}} other {# hores{minutesString
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# hora} other {# hores}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, other {Pots amagar un màxim de # respostes.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr "Els canals i les persones preferits de {name}: uneix-te a mi!"
msgid "{name}'s starter pack"
msgstr "Starter pack de: {name}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# element sense llegir} other {# elements sense llegir}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, one {# sol·licitud} other {# sol·licituds}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "{requestCount}+ sol·licituds"
@@ -795,8 +857,11 @@ msgstr "S'ha produït un error de xarxa. Si us plau, comprova la connexió a Int
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "S'ha produït un error de xarxa. Si us plau, comprova la connexió a Internet."
@@ -804,7 +869,7 @@ msgstr "S'ha produït un error de xarxa. Si us plau, comprova la connexió a Int
msgid "A new code has been sent"
msgstr "S'ha enviat un codi nou"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Una nova forma de verificació"
@@ -827,11 +892,11 @@ msgstr "Una captura de pantalla d'una pàgina de perfil amb una icona de campana
msgid "A screenshot of 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 "Una captura de pantalla del compositor de publicacions amb un botó nou al costat que diu \"Esborranys\", amb un efecte de focs artificials de l'arc de Sant Martí. A sota, el text del compositor diu \"Ei, estàs al cas de les novetats? Bluesky ja té esborranys!!!\"."
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Comportament abusiu o discriminatori"
msgid "Accept"
msgstr "Accepta"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Accepta"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Accepta la sol·licitud de xat"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Accepta la sol·licitud"
@@ -860,17 +935,26 @@ msgstr "Accepta la sol·licitud"
msgid "Accept this language suggestion"
msgstr "Accepta aquest suggeriment d'idioma"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Accessibilitat"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Configuració d'accessibilitat"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Compte no silenciat"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Els comptes amb una marca de verificació blava<0><1/>0>poden verificar-ne altres. Bluesky selecciona aquests verificadors de confiança."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Activitat d'altres persones"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Notificacions d'activitat"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Afegeix"
@@ -999,8 +1079,8 @@ msgstr "Afegeix un compte"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Afegeix text alternatiu (opcional)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Afegeix un altre compte"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Afegeix una altra publicació"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Afegeix una altra publicació al fil"
@@ -1035,7 +1115,7 @@ msgstr "Afegeix una contrasenya d'aplicació"
msgid "Add App Password"
msgstr "Afegeix una contrasenya d'aplicació"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "Afegeix una etiqueta d'automatització al compte"
@@ -1043,7 +1123,7 @@ msgstr "Afegeix una etiqueta d'automatització al compte"
msgid "Add emoji reaction"
msgstr "Afegeix una reacció d'emoji"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Afegeix membres al grup del xat"
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Afegeix imatges a la publicació"
@@ -1062,8 +1142,8 @@ msgstr "Afegeix imatges a la publicació"
msgid "Add members"
msgstr "Afegeix membre"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Afegeix més detalls (opcional)"
@@ -1080,8 +1160,8 @@ msgstr "Afegeix la paraula silenciada amb la configuració escollida"
msgid "Add muted words and tags"
msgstr "Afegeix les paraules i etiquetes silenciades"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "Afegint membres a la llista..."
msgid "Additional details (limit 1000 characters)"
msgstr "Detalls addicionals (límit de 1000 caràcters)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Detalls addicionals (límit de 300 caràcters)"
@@ -1228,12 +1308,12 @@ msgstr "S'ha enviat la sol·licitud de garantia d'edat"
msgid "Age assurance only takes a few minutes"
msgstr "La garantia d'edat només triga uns minuts"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "josepmaria@exemple.cat"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Totes"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "Totes {0}"
@@ -1278,13 +1358,13 @@ msgstr "Permet l'accés als teus missatges directes"
msgid "Allow anyone to reply"
msgstr "Permet respondre a tothom"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "Permet missatges directes de"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr "Permet invitacions a grups de xat de"
@@ -1338,12 +1418,12 @@ msgstr "Ja tens un compte?"
msgid "Already signed in as @{0}"
msgstr "Ja estàs registrat com a @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Text alternatiu"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "El text alternatiu descriu les imatges per a les persones cegues o amb problemes de visió, i ajuda donar context a tothom."
@@ -1387,7 +1467,7 @@ msgstr "Hi ha hagut un error"
msgid "An error occurred"
msgstr "Hi ha hagut un error"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Hi ha hagut un error mentre es comprimia el vídeo."
@@ -1432,11 +1512,11 @@ msgstr "S'ha produït un error en desar el codi QR!"
msgid "An error occurred while trying to follow all"
msgstr "S'ha produït un error en intentar seguir-ho tot"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "Hi ha hagut un error mentre es pujava el vídeo. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "S'ha produït un error en penjar el vídeo. Comprova la teva connexió a Internet i torna-ho a provar."
@@ -1461,19 +1541,19 @@ msgstr "Una il·lustració de diverses publicacions de Bluesky juntament amb ico
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Una il·lustració que mostra que Bluesky selecciona verificadors de confiança i, al seu torn, els verificadors de confiança verifiquen els comptes d'usuari individuals."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "Un enllaç d'invitació permet que les persones s'uneixin a aquest xat de grup sense ser afegides directament. Tu controles qui pot utilitzar l'enllaç i si necessiten la teva aprovació. Pots desactivar l'enllaç en qualsevol moment."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Un problema que no està inclòs en aquestes opcions"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Hi ha hagut un problema en provar d'obrir el xat"
msgid "An issue occurred, please try again."
msgstr "Hi ha hagut un problema, prova-ho de nou."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Una maqueta d'un iPhone que mostra l'aplicació Bluesky oberta al perfil d'un usuari verificat amb una marca de verificació blava al costat del seu nom de visualització."
@@ -1539,13 +1619,17 @@ msgstr "Qualsevol"
msgid "Anyone can interact"
msgstr "Qualsevol pot interactuar"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "Qualsevol es pot unir al moment"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "Qualsevol pot sol·licitar unir-se"
@@ -1555,11 +1639,11 @@ msgstr "Qualsevol pot sol·licitar unir-se"
msgid "Anyone who follows me"
msgstr "Qualsevol que em segueixi"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr "Qualsevol persona que el tingui ja no podrà unir-se ni sol·licitar unir-se. Sempre pots crear-ne un de nou."
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Els noms de contrasenyes d'aplicació han de tenir almenys 4 caràcters"
msgid "App passwords"
msgstr "Contrasenyes de l'aplicació"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Contrasenyes de l'aplicació"
@@ -1618,7 +1702,7 @@ msgstr "Apel·la a la suspensió de la transmissió en directe"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Apel·lació enviada"
@@ -1632,14 +1716,14 @@ msgstr "Apel·la la suspensió"
msgid "Appeal Suspension"
msgstr "Apel·la la suspensió"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Apel·la aquesta decisió"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "N'estàs realment segur, de debò?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Segur que voleu suprimir la contrasenya de l'aplicació \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Estàs segur que vols esborrar aquest missatge? El missatge s'esborrarà per a tu, però no per als altres participants."
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "Segur que vols sortir de {groupName}?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr "Segur que vols abandonar la conversa?"
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Estàs segur que vols descartar aquesta publicació?"
@@ -1752,7 +1836,7 @@ msgstr "Compte automatitzat"
msgid "Automation label"
msgstr "Etiqueta d'automatització"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "Etiqueta d'automatització"
@@ -1767,12 +1851,12 @@ msgstr "Reprodueix automàticament vídeos i GIFs"
msgid "Available"
msgstr "Disponible"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Disponible"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Disponible"
msgid "Back"
msgstr "Endarrere"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Torna als xats"
@@ -1840,12 +1926,12 @@ msgstr "Abans d'acceptar aquest xat, primer has de verificar el teu correu."
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Abans de poder rebre notificacions de les publicacions de {name}, primer has de verificar el teu correu electrònic."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Abans de poder enviar missatges a un altre usuari, primer has de verificar el teu correu."
@@ -1877,7 +1963,7 @@ msgstr "Aniversari"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "Bloqueja {displayName}"
msgid "Block account"
msgstr "Bloqueja el compte"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Bloqueja el compte?"
@@ -1912,7 +1998,7 @@ msgstr "Vols bloquejar el compte?"
msgid "Block accounts"
msgstr "Bloqueja comptes"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Vols bloquejar aquests comptes?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Bloqueja l'usuari"
@@ -1946,9 +2032,9 @@ msgstr "Bloqueja l'usuari"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Bloqueja l'usuari"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Bloqueja l'usuari i/o elimina aquesta conversa"
@@ -1956,7 +2042,7 @@ msgstr "Bloqueja l'usuari i/o elimina aquesta conversa"
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Bloquejada"
@@ -1964,13 +2050,13 @@ msgstr "Bloquejada"
msgid "Blocked accounts"
msgstr "Comptes bloquejats"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Comptes bloquejats"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Els comptes bloquejats no poden respondre cap fil teu, ni anomenar-te ni interactuar amb tu de cap manera."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky és millor amb col·legues!"
msgid "Bluesky is more fun with friends"
msgstr "Bluesky és més divertit amb amics! Importa els teus contactes per veure qui ja hi és"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Bluesky és més divertit amb amics! Importa els teus contactes per veure qui ja hi és."
@@ -2053,7 +2139,7 @@ msgstr "Bluesky triarà un conjunt de comptes recomanats de les persones de la t
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 "Bluesky no mostrarà el teu perfil ni les publicacions als usuaris que no estiguin registrats. Altres aplicacions poden no seguir aquesta demanda. Això no fa que el teu compte sigui privat."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky verificarà de manera proactiva comptes notables i autèntics."
@@ -2137,23 +2223,30 @@ msgstr "Negocis"
msgid "Button to go back to the home timeline"
msgstr "Botó per tornar a la cronologia d'inici"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Per {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Per <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Creant un compte indiques que estàs d'acord amb les <0>Condicions del s
msgid "By you"
msgstr "Per tu"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Càmera"
@@ -2192,8 +2285,8 @@ msgstr "Càmera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Càmera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Càmera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Cancel·la"
@@ -2248,9 +2341,9 @@ msgstr "Cancel·la la reactivació i surt"
msgid "Cancel search"
msgstr "Cancel·la la cerca"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "No pots interactuar amb un usuari bloquejat"
@@ -2264,7 +2357,7 @@ msgstr "Subtítols (.vtt)"
msgid "Captions & alt text"
msgstr "Subtítols i text alternatiu"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "carrusel"
@@ -2297,7 +2390,7 @@ msgstr "Canvia l'idioma de l'aplicació"
msgid "Change Handle"
msgstr "Canvia l'identificador"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Canvia el servei de moderació"
@@ -2310,11 +2403,11 @@ msgstr "Canvia la contrasenya"
msgid "Change password dialog"
msgstr "Diàleg de canvi de contrasenya"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Canvia la categoria de l'informe"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Canvia"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Els canvis a l'Starter Pack no es reflectiran a la llista després de la seva creació. La llista serà una còpia independent."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Xat"
@@ -2361,6 +2454,13 @@ msgstr "Xat esborrat"
msgid "Chat ended"
msgstr "El xat ha finalitzat"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "Xat tancat"
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Xat silenciat"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Safata de sol·licituds de xat"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Sol·licituds de xat"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Configuració del xat"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Configuració del xat"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Xat no silenciat"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Xats"
@@ -2479,7 +2579,7 @@ msgstr "Tria els idiomes de publicació"
msgid "Choose this color as your avatar"
msgstr "Tria aquest color com el teu avatar"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "Tria qui pot unir-se a aquest xat de grup i com."
@@ -2533,7 +2633,7 @@ msgstr "Fes clic per obtenir informació"
msgid "click here"
msgstr "clica aquí"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "Fes clic aquí per afegir persones a aquest xat de grup"
@@ -2541,7 +2641,7 @@ msgstr "Fes clic aquí per afegir persones a aquest xat de grup"
msgid "Click here to contact our support team"
msgstr "Fes clic aquí per contactar amb el nostre equip d'assistència"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "Fes clic per a crear o gestionar enllaços d'invitació al xat de grup"
@@ -2558,7 +2658,7 @@ msgstr "Fes clic aquí per tancar sessió"
msgid "Click here to resend the email"
msgstr "Fes clic aquí per tornar a enviar el correu electrònic"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Fes clic aquí per reiniciar el procés de verificació."
@@ -2567,11 +2667,11 @@ msgstr "Fes clic aquí per reiniciar el procés de verificació."
msgid "Click here to update your birthdate"
msgstr "Fes clic aquí per actualitzar la teva data de naixement"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Fes clic aquí per actualitzar el teu correu"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "Fes clic per a mostrar l'enllaç d'invitació a aquest xat de grup"
@@ -2580,7 +2680,7 @@ msgstr "Fes clic per a mostrar l'enllaç d'invitació a aquest xat de grup"
msgid "Click to open tag menu for {0}"
msgstr "Fes clic per a obrir el menú d'etiquetes per a {0}"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Clica aquí per provar d'enviar el missatge de nou"
@@ -2594,28 +2694,30 @@ msgstr "Clica aquí per provar d'enviar el missatge de nou"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Clica aquí per provar d'enviar el missatge de nou"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Tanca el diàleg actiu"
msgid "Close alert"
msgstr "Tanca l'advertència"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Tanca el calaix inferior"
@@ -2657,8 +2763,9 @@ msgstr "Tanca el calaix inferior"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Tanca el diàleg"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Tanca la imatge"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Tanca el visor d'imatges"
@@ -2683,6 +2790,14 @@ msgstr "Tanca el visor d'imatges"
msgid "Close menu"
msgstr "Tanca el menú"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Tanca aquest diàleg"
@@ -2695,7 +2810,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:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Tanca l'editor de la publicació i descarta l'esborrany"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Còmics"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Directrius de la comunitat"
@@ -2740,12 +2855,12 @@ msgstr "Completa la prova"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Crea una nova publicació"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
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"
@@ -2753,11 +2868,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:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "Comprimint el GIF..."
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Comprimint el vídeo..."
@@ -2780,7 +2895,7 @@ msgstr "Configurat a <0>configuració de moderació0>."
msgid "Confirm"
msgstr "Confirma"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Contingut i multimèdia"
msgid "Content and media"
msgstr "Contingut i multimèdia"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Contingut i multimèdia"
@@ -2889,7 +3004,7 @@ msgstr "Teló de fons del menú contextual, fes clic per a tancar-lo."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Continua el fil"
msgid "Continue thread..."
msgstr "Continua el fil..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Continua fins al nom del grup"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Continua"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Conversa"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Conversa esborrada"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversa esborrada"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Número de versió copiat en memòria"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Copia DID"
msgid "Copy host"
msgstr "Copia l'amfitrió"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Copia l'enllaç al perfil"
msgid "Copy link to starter pack"
msgstr "Copia l'enllaç a l'starter pack"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Copia el text del missatge"
@@ -3052,7 +3175,7 @@ msgstr "Copia el valor del registre TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Política de drets d'autor"
@@ -3065,7 +3188,7 @@ msgstr "No s'ha pogut connectar al canal personalitzat"
msgid "Could not connect to feed service"
msgstr "No s'ha pogut connectar al servei de canals"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr "No s'ha pogut recuperar la publicació"
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "No s'han pogut seguir totes les coincidències. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "No s'ha pogut abandonar el xat"
@@ -3094,6 +3217,10 @@ msgstr "No s'ha pogut abandonar el xat"
msgid "Could not load feed"
msgstr "No s'ha pogut carregar el canal"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Codi de país"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Crea"
@@ -3159,7 +3286,7 @@ msgstr "Crea un codi QR per a un starter pack"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Crea un starter pack"
@@ -3174,13 +3301,14 @@ msgstr "Crea un starter pack per a mi"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Crea un compte"
msgid "Create an account without using this starter pack"
msgstr "Crea un compte sense utilitzar aquest starter pack"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Enlloc d'això, crea un avatar"
@@ -3206,7 +3334,7 @@ msgstr "Enlloc d'això, crea un avatar"
msgid "Create another"
msgstr "Crea'n un altre"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Crea un xat de grup"
@@ -3228,19 +3356,20 @@ msgstr "Crea una llista a partir de l'starter pack"
msgid "Create moderation list"
msgstr "Crea una llista de moderació"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Crea un nou compte"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr "Crea o modifica un enllaç d'invitació per a aquest xat de grup"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Crea un informe per a {0}"
@@ -3256,8 +3385,8 @@ msgstr "Crea una llista d'usuaris"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Creat {0}"
@@ -3341,7 +3470,7 @@ msgstr "Per defecte"
msgid "Default icons"
msgstr "Icones per defecte"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Suprimeix el registre de declaració de xat"
msgid "Delete contacts"
msgstr "Suprimeix contactes"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Elimina la conversa"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Elimina-ho per mi"
@@ -3399,11 +3528,11 @@ msgstr "Elimina-ho per mi"
msgid "Delete list"
msgstr "Elimina la llista"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Elimina el missatge"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Elimina el missatge per mi"
@@ -3413,7 +3542,7 @@ msgstr "Elimina el meu compte"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Elimina la publicació"
@@ -3434,12 +3563,12 @@ msgstr "Vols eliminar aquesta llista?"
msgid "Delete this post?"
msgstr "Vols eliminar aquesta publicació?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Eliminat"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Compte eliminat"
@@ -3507,13 +3636,13 @@ msgstr "Diàleg: ajusta qui pot interactuar amb aquesta publicació"
msgid "Dim"
msgstr "Tènue"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Desactiva"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Deshabilita la verificació en dos passos"
@@ -3521,7 +3650,7 @@ msgstr "Deshabilita la verificació en dos passos"
msgid "Disable captions"
msgstr "Desactiva els subtítols"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Deshabilita la verificació en dos passos per correu"
@@ -3534,8 +3663,8 @@ msgstr "Desactiva el correu 2FA"
msgid "Disable haptic feedback"
msgstr "Desactiva la retroalimentació hàptica"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr "Desactiva l'enllaç"
@@ -3547,7 +3676,7 @@ msgstr "Desactiva les publicacions que citen aquesta publicació"
msgid "Disable replies entirely"
msgstr "Desactiva del tot les respostes"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "Vols desactivar aquest enllaç d'invitació?"
@@ -3560,9 +3689,9 @@ msgstr "Desactivat"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Descarta"
msgid "Discard changes?"
msgstr "Vols descartar els canvis?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Vols descartar l'esborrany?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Vols descartar la publicació?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Desconnecta Germ DM"
@@ -3613,11 +3742,11 @@ msgstr "Descobreix nous canals"
msgid "Dismiss"
msgstr "Descarta"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Ignora el bàner"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Descarta l'error"
@@ -3673,7 +3802,7 @@ msgstr "No inclou nuesa."
msgid "Domain verified!"
msgstr "Domini verificat!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "No tens un codi o en necessites un? <0>Clica aquí.0>"
@@ -3681,7 +3810,7 @@ msgstr "No tens un codi o en necessites un? <0>Clica aquí.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "No veus un codi? <0>Clica aquí per a reenviar-lo.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "No has rebut el correu? <0>Clica aquí per a reenviar-lo.0>"
@@ -3700,16 +3829,19 @@ msgstr "No pateixis! Tots els missatges i la configuració existents es desen i
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Fet"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Fes un toc doble o premeu llargament el missatge per a afegir una reacció"
@@ -3741,15 +3873,6 @@ msgstr "Fes dos tocs per a fer m'agrada"
msgid "Download Bluesky"
msgstr "Descarrega Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Descarrega el fitxer CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Descarrega el fitxer CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Descarregar dades de xat"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Descarregar dades de xat"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Descarrega la imatge"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Comportament depredador o de manipulació grooming"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "p. ex. Usuaris que sempre responen amb anuncis."
msgid "Eating disorders"
msgstr "Trastorns alimentaris"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Edita"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Edita l'avatar"
@@ -3847,14 +3978,14 @@ msgstr "Edita l'avatar"
msgid "Edit Feeds"
msgstr "Edita els canals"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Edita el nom del grup"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Edita la imatge"
@@ -3868,7 +3999,16 @@ msgstr "Edita les preferències de les interaccions"
msgid "Edit interests"
msgstr "Edita els interessos"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "Edita la configuració de l'enllaç"
@@ -3886,20 +4026,15 @@ msgstr "Edita l'estat en directe"
msgid "Edit moderation list"
msgstr "Edita la llista de moderació"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Edita els meus canals"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "Edita el nom"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Edita les notificacions de {0}"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Edita les persones"
@@ -3925,7 +4060,7 @@ msgstr "Edita el perfil"
msgid "Edit starter pack"
msgstr "Edita l'starter pack"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "Edita el nom d'aquest xat de grup"
@@ -3937,7 +4072,7 @@ msgstr "Edita la llista d'usuaris"
msgid "Edit who can reply"
msgstr "Edita qui pot respondre"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Edita el teu starter pack"
@@ -3971,7 +4106,7 @@ msgstr "Adreça de correu"
msgid "Email Resent"
msgstr "S'ha tornat a enviar el correu"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "Correu enviat!"
@@ -4006,8 +4141,8 @@ msgstr "Incrusta aquesta publicació al teu lloc web. Copia el fragment següent
msgid "Embedded video player"
msgstr "Incrusta el reproductor de vídeo"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Habilita"
@@ -4025,7 +4160,7 @@ msgstr "Habilita el contingut per a adults"
msgid "Enable captions"
msgstr "Activa els subtítols"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Habilita la verificació en dos passos per correu"
@@ -4038,13 +4173,12 @@ msgstr "Habilita els continguts externs"
msgid "Enable media players for"
msgstr "Habilita reproductors de contingut per"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Activa les notificacions per a un compte visitant el seu perfil i prement la <0>icona de la campana0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Activa les notificacions push"
@@ -4091,8 +4225,8 @@ msgstr "Introdueix una contrasenya"
msgid "Enter a word or tag"
msgstr "Introdueix una lletra o etiqueta"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Entra el codi"
@@ -4143,7 +4277,7 @@ msgstr "Canvia a pantalla completa"
msgid "Entertainment"
msgstr "Entreteniment"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Error"
@@ -4185,23 +4319,23 @@ msgstr "Tothom pot respondre"
msgid "Everybody can reply to this post."
msgstr "Tothom pot respondre a aquesta publicació."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Tothom"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Tothom"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Tothom"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Tota la resta"
@@ -4217,8 +4351,8 @@ msgstr "Exclou els usuaris que segueixes"
msgid "Exit fullscreen"
msgstr "Surt de la pantalla completa"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Expandeix el text alternatiu"
@@ -4226,7 +4360,7 @@ msgstr "Expandeix el text alternatiu"
msgid "Expand list of users"
msgstr "Expandeix la llista d'usuaris"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Expandeix o replega la publicació completa a la qual estàs responent"
@@ -4238,7 +4372,7 @@ msgstr "Expandeix el text de la publicació"
msgid "Expands or collapses post text"
msgstr "Amplia o redueix el text de la publicació"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "S'esperava que l'uri es resolgués en un registre"
@@ -4277,9 +4411,9 @@ msgstr "Contingut explícit o potencialment pertorbador."
msgid "Explicit sexual images."
msgstr "Imatges sexuals explícites."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Explora"
@@ -4289,11 +4423,8 @@ msgstr "Explora"
msgid "Explore the app"
msgstr "Explora l'aplicació"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr "Exporta les dades del xat"
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "Exporta les meves dades de xat"
@@ -4322,7 +4453,7 @@ msgstr "Contingut extern"
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 "El contingut extern pot permetre que algunes webs recullin informació sobre tu i el teu dispositiu. No s'envia ni es demana cap informació fins que premis el botó \"reproduir\"."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Preferència del contingut extern"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "No s'ha pogut acceptar el xat"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "No s'ha pogut afegir la reacció d'emoji"
@@ -4354,7 +4489,7 @@ msgstr "No s'ha pogut afegir a l'starter pack"
msgid "Failed to change handle. Please try again."
msgstr "No s'ha pogut canviar l'identificador. Torna-ho a provar."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "No s'ha pogut copiar l'enllaç"
@@ -4367,7 +4502,7 @@ msgstr "No s'ha pogut crear la contrasenya d'aplicació. Torna-ho a provar."
msgid "Failed to create conversation"
msgstr "No s'ha pogut crear la conversa"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "No s'ha pogut crear l'enllaç d'invitació"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "No s'ha pogut esborrar el xat"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "No s'ha pogut esborrar el missatge"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "No s'ha pogut desactivar l'enllaç d'invitació"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "No s'ha pogut desconnectar Germ DM. Error: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "No s'ha pogut editar el nom del xat de grup"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "No s'ha pogut editar l'enllaç d'invitació"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "No s'ha pogut activar l'enllaç d'invitació"
@@ -4427,19 +4562,27 @@ msgstr "No has pogut seguir tots els teus amics. Torna-ho a provar"
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "No s'ha pogut amagar el suggeriment. Comprova la connexió a Internet"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "No s'ha pogut iniciar l'aplicació d'SMS"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "No s'ha pogut abandonar el xat de grup"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "No s'han pogut carregar les converses"
@@ -4456,17 +4599,8 @@ msgstr "No s'han pogut carregar els canals"
msgid "Failed to load feeds preferences"
msgstr "No s'han pogut carregar les preferències dels canals"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "No s'ha pogut carregar la configuració de notificacions."
@@ -4493,16 +4627,15 @@ msgstr "No s'han pogut carregar els canals suggerits"
msgid "Failed to load suggested follows"
msgstr "No s'han pogut carregar els comptes suggerits"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "No s'ha pogut bloquejar el xat de grup"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "No s'han pogut marcar totes les sol·licituds com a llegides"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "No s'ha pogut silenciar el xat de grup"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "No s'ha pogut fixar la publicació"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "No s'ha pogut reconnectar Germ DM. Error: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "No s'han pogut eliminar les dades. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "No s'ha pogut eliminar la reacció d'emoji"
@@ -4542,15 +4675,19 @@ msgstr "No s'ha pogut eliminar el membre del xat de grup"
msgid "Failed to remove verification"
msgstr "No s'ha pogut eliminar la verificació"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr "La ubicació ha fallat. Torna-ho a provar."
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Error en desar l'esborrany"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "Error en desar la imatge"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "No s'han pogut desar els teus interessos."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "No s'ha pogut enviar el correu. Torna-ho a provar."
@@ -4580,7 +4717,7 @@ msgstr "No s'ha pogut enviar l'informe"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "No s'ha pogut enviar l'apel·lació, torna-ho a provar."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "No s'ha pogut desactivar el silenci del fil; torneu-ho a provar"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr "No s'ha pogut desbloquejar el xat de grup"
@@ -4597,12 +4734,12 @@ msgstr "No s'ha pogut desbloquejar el xat de grup"
msgid "Failed to unpin list"
msgstr "No s'ha pogut desfixar la llista"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "No s'ha pogut actualitzar la configuració del doble factor per correu"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "No s'ha pogut actualitzar el correu. Torna-ho a provar."
@@ -4614,7 +4751,7 @@ msgstr "No s'han pogut actualitzar els canals"
msgid "Failed to update notification declaration"
msgstr "No s'ha pogut actualitzar la declaració de notificació"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "No s'ha pogut actualitzar la configuració"
@@ -4641,7 +4778,7 @@ msgstr "Compte fals o bot"
msgid "False information about elections"
msgstr "Informació falsa sobre les eleccions"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Canal"
@@ -4649,7 +4786,7 @@ msgstr "Canal"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Canal per {0}"
@@ -4662,7 +4799,7 @@ msgstr "Creador del canal"
msgid "Feed identifier"
msgstr "Identificador del canal"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Menú del canal"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Comentaris enviats a l'operador del canal"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Canals"
@@ -4739,7 +4876,7 @@ msgstr "Filtra la cerca per idioma (actualment: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Filtra qui pot optar per rebre notificacions de la teva activitat"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Filtra de qui reps notificacions"
@@ -4747,11 +4884,11 @@ msgstr "Filtra de qui reps notificacions"
msgid "Finalizing"
msgstr "Finalitzant"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Per fi!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Finances"
msgid "Find accounts to follow"
msgstr "Troba comptes per a seguir"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Troba contactes"
@@ -4799,7 +4936,7 @@ msgstr "Troba gent per seguir"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Troba publicacions, usuaris i canals a Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Troba els teus amics"
@@ -4944,8 +5081,12 @@ msgstr "Seguit per <0>{0}0> i <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Seguit per <0>{0}0>, <1>{1}1>, i {2, plural, one {# altre} other {# altres}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Seguidors de @{0} que coneixes"
@@ -4995,19 +5136,16 @@ msgstr "Seguint {handle}"
msgid "Following feed preferences"
msgstr "Preferències del canal Seguint"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Preferències del canal Seguint"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Et segueix"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Et segueix"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Tipus de lletra"
@@ -5069,7 +5207,7 @@ msgstr "Oblidada?"
msgid "Free your feed"
msgstr "Allibera el teu canal"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "De"
@@ -5086,35 +5224,35 @@ msgstr "De <0/>"
msgid "Generate a starter pack"
msgstr "Genera un starter pack"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Genera un enllaç d'invitació"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Genera un nou enllaç d'invitació"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Genera un nou enllaç"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germ DM desconnectat"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Enllaç Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germ DM reconnectat"
@@ -5122,46 +5260,50 @@ msgstr "Germ DM reconnectat"
msgid "Get help"
msgstr "Aconsegueix ajuda"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Rep notificacions quan la gent et segueixi."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Rep notificacions quan a la gent li agradin les publicacions que has republicat."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Rep notificacions quan a la gent li agradin les teves publicacions."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Rep notificacions quan la gent et mencioni."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Rep notificacions quan la gent citi les teves publicacions."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Rep notificacions quan la gent respongui a les teves publicacions."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Rep notificacions quan la gent republiqui publicacions que has republicat."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Rep notificacions quan la gent republiqui les teves publicacions."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr ""
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Rep notificacions sobre noves publicacions"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Rep notificacions sobre publicacions i respostes dels comptes que triïs."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Rep notificacions de les noves publicacions de {name}"
@@ -5174,27 +5316,27 @@ msgstr "Rep notificacions de l'activitat d'aquest compte"
msgid "Get notified when {name} posts"
msgstr "Rep una notificació quan {name} publiqui"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Rep notificacions quan algú publiqui"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Comença"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "S'ha penjat el GIF"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Posa una cara al teu perfil"
@@ -5213,20 +5355,21 @@ msgstr "Glorificació de la violència"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Ves enrere"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Ves enrere"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Ves al pas anterior"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Ves a l'inici"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Ves a l'inici"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Ves a l'inici"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Ves a la configuració del compte"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Ves a la conversa amb {0}"
@@ -5299,12 +5440,12 @@ msgstr "Ves al següent"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Ves al perfil"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "Ves al xat de grup anomenat \"{chatName}\""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr "L'emissió en directe està deshabilitada pel teu compte"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Ho he entès"
@@ -5340,59 +5481,75 @@ msgstr "Contingut gràficament violent"
msgid "Grooming or predatory behavior"
msgstr "Comportament depredador o de manipulació grooming"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "Diàleg d'enllaç d'invitació al xat de grup"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "Xat de grup bloquejat"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "Xat de grup silenciat"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr "S'ha actualitzar el nom del grup de xat"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "Paràmetres del xat de grup"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "Xat de grup desbloquejat"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "Xat de grup no silenciat"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr "Els xats de grup encara no estan disponibles"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr "Els xats de grup encara ja estan disponibles"
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "El grup està bloquejat"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Nom del grup"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Hacking o atacs al sistema"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "L'identificador és massa llarg. Si us plau, prova'n un de més curt."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "Està passant ara"
@@ -5446,7 +5603,7 @@ msgstr "Activitats nocives o d'alt risc"
msgid "Harming or endangering minors"
msgstr "Perjudicar o posar en perill els menors"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Etiqueta"
@@ -5458,8 +5615,8 @@ msgstr "Etiqueta: {tag}"
msgid "Hate speech"
msgstr "Discurs d'odi"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Tens un codi?<0>Clica aquí.0>"
@@ -5483,7 +5640,7 @@ msgstr "Retingut per Bluesky durant 7 dies per evitar abusos, i després elimina
msgid "Help"
msgstr "Ajuda"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Ajuda la gent a saber que no ets un bot penjant una imatge o creant un avatar."
@@ -5652,18 +5809,18 @@ msgstr "Tenim problemes per a carregar aquestes dades. Mira a continuació per a
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "No podem carregar el servei de moderació."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Espera! A poc a poc estem donant accés al vídeo i encara estàs a la cua. Torna més tard!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Aguanta! Aquesta funció encara no està disponible. Torna-ho a comprovar més tard."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Inici"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
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"
@@ -5757,7 +5914,7 @@ msgstr "Si esborres aquesta llista no la podràs recuperar."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Si tens el teu propi domini, pots utilitzar-lo com a identificador. Això et permet autoverificar la teva identitat – <0>més informació0>."
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Si necessites actualitzar el teu correu, <0>clica aquí0>."
@@ -5765,7 +5922,7 @@ msgstr "Si necessites actualitzar el teu correu, <0>clica aquí0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Si esborres aquesta publicació no la podràs recuperar."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Si actualitzes el teu correu, es deshabilitarà la verificació en dos passos per correu."
@@ -5773,7 +5930,6 @@ msgstr "Si actualitzes el teu correu, es deshabilitarà la verificació en dos p
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Si vols canviar la contrasenya t'enviarem un codi per a verificar que aquest compte és teu."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Si vols restringir qui pot rebre notificacions de l'activitat del teu compte, pots canviar-ho a <0>Configuració → Privacitat i seguretat0>."
@@ -5786,23 +5942,33 @@ msgstr "Si ets desenvolupador, pots allotjar el teu propi servidor."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Imatge"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "Imatge {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Imatge {0} de {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "Imatge {0} de {imageCount}"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "S'ha esborrat la memòria cau d'imatges, s'ha alliberat {0}"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "Galeria d'imatges, {0} imatges"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "La imatge està oculta a causa de la teva configuració de moderació."
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "La imatge no està disponible."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Opcions del la imatge"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Suplantació d'identitat"
msgid "Import contacts"
msgstr "Importa contactes"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Importa contactes"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Importa contactes per trobar els teus amics"
@@ -5881,40 +6047,40 @@ msgstr "Importats el {0}"
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 "Per tal d'oferir una experiència adequada a l'edat, necessitem saber la teva data de naixement. Només cal fer-ho un sol cop i les teves dades es mantindran privades."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "Integrades a l'aplicació"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Notificacions integrades a l'aplicació"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "Integrades a l'aplicació, tothom"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "Integrades a l'aplicació, gent a qui segueixes"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "Integrades a l'aplicació, push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "Integrades a l'aplicació, push, tothom"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "Integrades a l'aplicació, push, gent a qui segueixes"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "Safata d'entrada buida"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "La safata està buida"
@@ -5963,6 +6129,10 @@ msgstr "Presentem les publicacions desades, més conegudes com a marcadors"
msgid "Invalid 2FA confirmation code."
msgstr "El codi de confirmació 2FA no és vàlid."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Identificador no vàlid. Si us plau, prova'n un altre."
@@ -5977,10 +6147,14 @@ msgstr "Configuració de les interaccions invàlida."
msgid "Invalid phone number"
msgstr "Número de telèfon no vàlid"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "El tema de l'informe no és vàlid"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Codi de verificació invàlid"
@@ -6010,12 +6184,12 @@ msgstr "Convida amics"
msgid "Invite friends <0/>"
msgstr "Convida amics <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Enllaç d'invitació"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "S'ha creat l'enllaç d'invitació"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "S'ha desactivat l'enllaç d'invitació"
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Ara només ets tu! Afegeix més persones al teu starter pack cercant a dalt."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "Identificador de la tasca: {0}"
@@ -6083,6 +6257,11 @@ msgstr "Identificador de la tasca: {0}"
msgid "Jobs"
msgstr "Tasques"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Tasques"
msgid "Join Bluesky"
msgstr "Uneix-te a Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Uneix-te a la conversa"
msgid "Journalism"
msgstr "Periodisme"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Continua editant"
@@ -6143,7 +6331,7 @@ msgstr "Etiquetes al teu compte"
msgid "Labels on your content"
msgstr "Etiquetes al teu contingut"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Configuració d'idioma"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "El més recent"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Més informació d'aquesta advertència"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Més informació sobre la verificació a Bluesky"
@@ -6239,7 +6427,7 @@ msgstr "Més informació sobre la verificació a Bluesky"
msgid "Learn more about what is public on Bluesky."
msgstr "Més informació sobre què és públic a Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Més informació sobre el teu enllaç de missatge directe de Germ"
@@ -6252,8 +6440,8 @@ msgstr "Més informació a la <0>configuració del compte.0>"
msgid "Learn more."
msgstr "Més informació."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Surt"
@@ -6276,7 +6464,7 @@ msgstr "Surt del xat"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Surt de la conversa"
@@ -6284,13 +6472,13 @@ msgstr "Surt de la conversa"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Surt de la conversa"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "Abandona el xat de grup"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr "Abandona aquest grup de xat"
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Clar"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "M'agrada ({0, plural, one {# m'agrada} other {# m'agrades}})"
@@ -6346,11 +6534,7 @@ msgstr "Fes m'agrada a 10 publicacions"
msgid "Like 10 posts to train the Discover feed"
msgstr "Fes m'agrada a 10 publicacions per a entrenar el canal Discover"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Notificacions de \"M'agrada\""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Fes m'agrada a aquest canal"
@@ -6358,8 +6542,8 @@ msgstr "Fes m'agrada a aquest canal"
msgid "Like this labeler"
msgstr "Fes m'agrada a aquest etiquetador"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Li ha agradat a"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Li ha agradat a {0, plural, one {# usuari} other {# usuaris}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Li ha agradat a {likeCount, plural, one {# usuari} other {# usuaris}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "M'agrades"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "M'agrades de les teves republicacions"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Notificacions de m'agrades de les teves republicacions"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "M'agrades a aquesta publicació"
@@ -6409,11 +6589,11 @@ msgstr "M'agrades a aquesta publicació"
msgid "Linear"
msgstr "Lineal"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "S'ha copiat l'enllaç en memòria"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Llista"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Llista no silenciada"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Llistes"
@@ -6545,7 +6725,7 @@ msgstr "Esdeveniment en directe mostrat"
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ó."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "La funció en directe està en fase beta"
@@ -6595,27 +6775,27 @@ msgstr "Carregant la configuració d'interaccions de la publicació..."
msgid "Loading..."
msgstr "Carregant…"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "Tanca"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "Tanca el xat de grup"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "Vols tancar el grup de xat?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "Tanca aquest xat de grup"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "Tancat"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Registre"
@@ -6662,7 +6842,7 @@ msgstr "Sembla que et falta el canal dels Seguits. <0>Clica aquí per a afegir-n
msgid "Love GIFs"
msgstr "GIFs d'amor"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Fes ajustaments a la configuració del correu del teu compte"
@@ -6687,9 +6867,8 @@ msgstr "Gestiona la configuració de verificació"
msgid "Manage your muted words and tags"
msgstr "Gestiona les teves etiquetes i paraules silenciades"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Marca-ho tot com a llegit"
@@ -6698,13 +6877,12 @@ msgstr "Marca-ho tot com a llegit"
msgid "Mark as read"
msgstr "Marca com a llegit"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "S'ha marcat tot com a llegit"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Potser més tard"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Continguts que poden ser inquietants o inadequats per a alguns públics."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Membres"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "Els membres encara poden llegir l'historial del xat, però no poden enviar missatges nous."
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Notificacions de mencions"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "usuaris mencionats"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Mencions"
@@ -6775,22 +6949,22 @@ msgstr "Missatge {0}"
msgid "Message {displayName}"
msgstr "Missatge {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Missatge esborrat"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Missatge esborrat"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "No s'ha pogut enviar el missatge."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Missatge de @ {0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "El missatge és massa llarg"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "El missatge és massa llarg ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Opcions del missatge"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Missatges"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr "Mitjanit"
msgid "Minor harassment or bullying"
msgstr "Assetjament o intimidació lleu"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Notificacions diverses"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Enganyós"
@@ -6850,7 +7020,7 @@ msgstr "Enganyós"
msgid "Missing media"
msgstr "No es troba la imatge"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderació"
@@ -6894,7 +7064,7 @@ msgstr "S'ha actualitzat la llista de moderació"
msgid "Moderation lists"
msgstr "Llistes de moderació"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Llistes de moderació"
@@ -6903,7 +7073,7 @@ msgstr "Llistes de moderació"
msgid "moderation settings"
msgstr "preferències de moderació"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Estats de moderació"
@@ -6949,7 +7119,7 @@ msgstr "Pel·lícules"
msgid "Music"
msgstr "Música"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Silencia"
@@ -6994,7 +7164,7 @@ msgstr "Silencia la llista"
msgid "Mute these accounts?"
msgstr "Vols silenciar aquests comptes?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "Silencia aquest xat de grup"
@@ -7032,7 +7202,7 @@ msgstr "Silencia el fil de debat"
msgid "Mute words & tags"
msgstr "Silencia paraules i etiquetes"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "Silenciat"
@@ -7040,7 +7210,7 @@ msgstr "Silenciat"
msgid "Muted accounts"
msgstr "Comptes silenciats"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Comptes silenciats"
@@ -7108,8 +7278,8 @@ msgstr "Navega a la pantalla següent"
msgid "Navigates to your profile"
msgstr "Navega al teu perfil"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Has d'informar d'una infracció dels drets d'autor, una sol·licitud legal o un problema de compliment normatiu?"
@@ -7136,34 +7306,34 @@ msgstr "Nou {postsCount, plural, one {publicació} other{publicacions}} de {firs
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "Nou {postsCount, plural, one {publicació} other{publicacions}} de {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Xat nou"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "Nou xat amb {0}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "Nou xat amb {0} i {1}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "Nou xat amb {0}, {1} i {memberCount, plural, one {{memberCount} més} other {{memberCount} més}}."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Adreça de correu nova"
@@ -7174,29 +7344,25 @@ msgstr "Adreça de correu nova"
msgid "New Feature"
msgstr "Funció nova"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Notificacions de nou seguidor"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Nous seguidors"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "Nou xat de grup"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "Nou xat de grup"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "Nou xat de grup amb:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Nova publicació"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Nova publicació"
@@ -7262,8 +7428,8 @@ msgstr "Notícies"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "No s'han trobat GIFs per \"{query}\"."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "No hi ha GIFs per mostrar ara, prova-ho més tard."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Sense imatge"
@@ -7362,7 +7528,7 @@ msgstr "Ja no segueixes a {0}"
msgid "No media yet"
msgstr "Encara no hi ha imatges"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Encara no tens cap missatge"
@@ -7378,12 +7544,12 @@ msgstr "Sense nom"
msgid "No notifications yet!"
msgstr "Encara no tens cap notificació"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Ningú"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Ningú"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Cap resultat"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Cap resultat"
@@ -7509,10 +7675,6 @@ msgstr "Imatges íntimes no consentides"
msgid "Non-sexual Nudity"
msgstr "Nuesa no sexual"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Cap"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "No disponible en aquesta plataforma."
msgid "Not followed by anyone you’re following"
msgstr "No el segueix ningú a qui segueixis"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "No s'ha trobat"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "No estàs a punt per publicar? Guarda les teves millors idees a Esborranys fins que sigui el moment adequat."
@@ -7548,44 +7710,31 @@ msgstr "Nota: Aquesta publicació només és visible per als usuaris que han ini
msgid "Nothing saved yet"
msgstr "Encara no hi ha res desat"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Configuració de les notificacions"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Sons de les notificacions"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Notificacions"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Notificacions per a tota la resta, com ara quan algú s'uneix a través d'un dels teus Starter Packs."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "ara"
@@ -7601,7 +7750,7 @@ msgstr "El número ha de ser un número de mòbil"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Apagat"
@@ -7623,7 +7772,8 @@ msgstr "D'acord"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "en<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Restableix la incorporació"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Una o més publicacions són massa llargues per desar-les com a esborrany. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {El nombre màxim de caràcters és de # caràcter.} other {El nombre màxim de caràcters és de # caràcters.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Falta el text alternatiu a un o més videos."
@@ -7685,6 +7835,26 @@ msgstr "Falta el text alternatiu a un o més videos."
msgid "Only {0} can reply."
msgstr "Només {0} poden respondre."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Només seguidors que segueixo"
msgid "Only image files are supported"
msgstr "Només s'admeten fitxers d'imatge"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Només s'admeten fitxers WebVTT (.vtt)"
@@ -7712,7 +7892,7 @@ msgstr "Ostres, alguna cosa ha anat malament!"
msgid "Oops!"
msgstr "Ostres!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Obre el creador d'avatars"
@@ -7720,12 +7900,17 @@ msgstr "Obre el creador d'avatars"
msgid "Open camera"
msgstr "Obre la càmera"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "Obre les opcions dels membres del xat per a {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Obre les opcions de les converses"
@@ -7739,16 +7924,16 @@ msgstr "Obre el menú del calaix"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Obre el selector d'emojis"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Obre la pantalla d'informació del canal"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Obre el menú de les opcions del canal"
@@ -7760,13 +7945,17 @@ msgstr "Obre la llista completa d'emojis"
msgid "Open Germ DM"
msgstr "Obre Germ DM"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "Paràmetres del xat de grup"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Obre l'enllaç a {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Obre el pack"
msgid "Open post options menu"
msgstr "Obre el menú de les opcions de publicació"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Obre el perfil"
@@ -7817,6 +8006,10 @@ msgstr "Obre la pàgina d'historial"
msgid "Open system log"
msgstr "Obre el registre del sistema"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Obre detalls addicionals per una entrada de depuració"
msgid "Opens alt text dialog"
msgstr "Obre el diàleg de text alternatiu"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Obre la càmera del dispositiu"
@@ -7858,22 +8051,24 @@ msgstr "Obre el compositor"
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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Obre el procés per a crear un nou compte de Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
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"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Obre la imatge completa"
@@ -7890,7 +8085,7 @@ msgstr "Obre el selector d'imatges"
msgid "Opens link {0}"
msgstr "Obre l'enllaç {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Obre el quadre de diàleg d'estat en directe"
@@ -7919,9 +8114,9 @@ msgstr "Obre el compositor de publicacions"
msgid "Opens this draft in the composer"
msgstr "Obre aquest esborrany a l'editor"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Obre aquest perfil"
@@ -7997,12 +8192,12 @@ msgstr "La nostra entrada de blog"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "L'equip de moderació ha rebut la denúncia."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "L'equip de moderació ha revisat els informes i ha decidit desactivar-te l'accés als xats a Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "L'equip de moderació ha revisat els informes i ha decidit desactivar-te
msgid "Owner"
msgstr "Propietari"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Pàgina no trobada"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Pàgina no trobada"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Posa en pausa el vídeo"
msgid "People"
msgstr "Gent"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "Les persones que segueixen {ownerName} es poden unir al moment"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "Les persones que segueixen {ownerName} poden sol·licitar unir-s'hi"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Persones seguides per @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Persones seguint a @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Gent que segueixo"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "Les persones que segueixo es poden unir al moment"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "Les persones que segueixo poden sol·licitar unir-se"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Imatges destinades a adults."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Fixa el canal"
@@ -8152,7 +8348,7 @@ msgstr "Fixa el canal"
msgid "Pin to home"
msgstr "Fixa a l'inici"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fixa a l'Inici"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Fixat"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} fixat a l'inici"
@@ -8236,7 +8432,7 @@ msgstr "Tria el teu identificador."
msgid "Please choose your password."
msgstr "Tria la teva contrasenya."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Fes clic a l'enllaç del correu que us acabem d'enviar per verificar la teva nova adreça electrònica. Aquest és un pas important per permetre't continuar gaudint de totes les funcions de Bluesky."
@@ -8244,7 +8440,7 @@ msgstr "Fes clic a l'enllaç del correu que us acabem d'enviar per verificar la
msgid "Please complete the verification captcha."
msgstr "Completa el captcha de verificació."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Confirma la teva adreça de correu per penjar vídeos."
@@ -8265,14 +8461,14 @@ msgstr "Introdueix una contrasenya. Ha de tenir almenys 8 caràcters."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Introdueix un nom únic per aquesta contrasenya d'aplicació o fes servir un nom generat aleatòriament."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Introdueix un codi vàlid."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Introdueix una adreça de correu vàlida."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Introdueix una adreça electrònica vàlida i no temporal. És possible que hagis d'accedir a aquesta adreça electrònica en el futur."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Introdueix el codi que t'hem enviat a <0>{0}0> a continuació."
@@ -8293,7 +8489,7 @@ msgstr "Introdueix el codi que t'hem enviat a <0>{0}0> a continuació."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Introdueix el codi que has rebut i la nova contrasenya que vols utilitzar."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Introdueix el codi de seguretat que et vam enviar a la teva adreça de correu anterior."
@@ -8306,7 +8502,7 @@ msgstr "Introdueix el teu correu."
msgid "Please enter your invite code."
msgstr "Entra el teu codi d'invitació."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Introdueix la teva nova adreça de correu."
@@ -8323,7 +8519,7 @@ msgstr "Introdueix el nom d'usuari"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Explica per què creieu que aquesta etiqueta ha estat aplicada incorrectament per {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Expliqueu per què creus que els teus xats s'han desactivat incorrectament"
@@ -8366,7 +8562,7 @@ msgstr "Fes servir l'aplicació nativa per a importar els teus contactes."
msgid "Please use the native app to sync your contacts."
msgstr "Fes servir l'aplicació nativa per sincronitzar els teus contactes."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Verifica el teu correu"
@@ -8383,7 +8579,7 @@ msgstr "Política"
msgid "Porn"
msgstr "Pornografia"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Publica"
@@ -8403,12 +8599,12 @@ msgstr "Publica una foto"
msgid "Post a video"
msgstr "Publica un vídeo"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Publica-ho tot"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Publica de totes maneres"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Publicació bloquejada"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Publicació per @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Publicació eliminada"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "No s'ha pogut penjar la publicació. Comprova la tevaa connexió a Internet i torna-ho a provar."
@@ -8454,7 +8650,7 @@ msgstr "Publicació amagada per tu"
msgid "Post interaction settings"
msgstr "Configuració de les interaccions de la publicació"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Configuració de les interaccions de la publicació"
@@ -8464,8 +8660,8 @@ msgstr "Configuració de les interaccions de la publicació"
msgid "Post language selection"
msgstr "Tria l'idioma de la publicació"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Publica l'enllaç"
@@ -8491,7 +8687,6 @@ msgstr "Publicació sense fixar"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Les publicacions es poden silenciar segons el seu text, les seves etique
msgid "Posts hidden"
msgstr "Publicacions amagades"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Publicacions, Respostes"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Enllaç potencialment enganyós"
@@ -8528,6 +8719,7 @@ msgstr "Prem per provar de connectar de nou"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Prem per a tornar-ho a provar"
@@ -8536,7 +8728,7 @@ msgstr "Prem per a tornar-ho a provar"
msgid "Press to view followers of this account that you also follow"
msgstr "Prem per veure els seguidors d'aquest compte que també segueixes"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Previsualitza"
@@ -8559,21 +8751,20 @@ msgstr "Privacitat"
msgid "Privacy and security"
msgstr "Privadesa i seguretat"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privadesa i seguretat"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Configuració de privadesa i seguretat"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ 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:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "Processant el GIF..."
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Processant el vídeo..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Processant…"
@@ -8602,8 +8793,8 @@ msgstr "Processant…"
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Publica la publicació"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Publica les publicacions"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Publica les respostes"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Publica la resposta"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Push"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Notificacions push"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
-msgstr "Push, tothom"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "Push, gent a qui segueixes"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "Codi QR descarregat!"
msgid "QR code saved to your camera roll!"
msgstr "Codi QR desat a la teva galeria"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Notificacions de citacions"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "S'han deshabilitat les citacions"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Citacions"
@@ -8733,11 +8920,11 @@ msgstr "S'ha superat el límit de velocitat. Torna-ho a provar més tard."
msgid "Re-attach quote"
msgstr "Torna a enganxar la citació"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Torna a activar l'enllaç d'invitació"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Torna a activar l'enllaç"
@@ -8745,8 +8932,8 @@ msgstr "Torna a activar l'enllaç"
msgid "React with {emoji}"
msgstr "Reacciona amb {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Reaccions"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "consulta com utilitzar els filtres de cerca"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Llegeix la publicació del blog"
@@ -8812,11 +8999,11 @@ msgstr "Persones reals."
msgid "Reason for appeal"
msgstr "Motiu de l'apel·lació"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Rebre notificacions integrades a l'aplicació"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Rebre notificacions push"
@@ -8841,6 +9028,10 @@ msgstr "Recomanats"
msgid "Reconnect"
msgstr "Torna a connectar"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Rebutja"
msgid "Reject chat request"
msgstr "Rebutja la sol·licitud de xat"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Carrega les converses de nou"
@@ -8896,17 +9087,17 @@ msgstr "Elimina el compte"
msgid "Remove all contacts"
msgstr "Elimina tots els contactes"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Elimina l'adjunt"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Elimina l'avatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Elimina el bàner"
@@ -8914,8 +9105,9 @@ msgstr "Elimina el bàner"
msgid "Remove caption file"
msgstr "Eliminar el fitxer de subtítols"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Elimina l'incrustat"
@@ -8933,8 +9125,8 @@ msgstr "Vols eliminar el canal?"
msgid "Remove from chat"
msgstr "Elimina del xat"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Elimina de les publicacions desades"
msgid "Remove from your feeds?"
msgstr "Vols eliminar-lo dels teus canals?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Elimina la imatge"
@@ -9009,11 +9201,11 @@ msgstr "Elimina la verificació"
msgid "Remove your verification for this account?"
msgstr "Vols eliminar la teva verificació d'aquest compte?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Eliminat per l'autor"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Tu l'has eliminat"
@@ -9035,7 +9227,7 @@ msgstr "S'ha eliminat de les publicacions desades"
msgid "Removed from starter pack"
msgstr "Eliminat de l'starter pack"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "T'ha respost"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Respostes"
@@ -9104,14 +9295,14 @@ msgstr "Respostes deshabilitades"
msgid "Replies to this post are disabled."
msgstr "Les respostes a aquesta publicació estan deshabilitades."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Respon"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Respostes ({0, plural, one {# resposta} other {# respostes}})"
@@ -9125,10 +9316,6 @@ msgstr "Aquesta resposta ha estat amagada per l'autor del fil de debat"
msgid "Reply Hidden by You"
msgstr "Has amagat aquesta resposta"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Notificacions de respostes"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "La configuració de les respostes la tria l'autor del fil de debat"
@@ -9146,9 +9333,9 @@ msgstr "S'ha actualitzat la visibilitat de la resposta"
msgid "Reply was successfully hidden"
msgstr "La resposta s'ha amagat amb èxit"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Informa"
@@ -9164,13 +9351,13 @@ msgstr "Informa del compte"
msgid "Report conversation"
msgstr "Informa d'aquesta conversa"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Diàleg de l'informe"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Informa del canal"
@@ -9179,7 +9366,7 @@ msgstr "Informa del canal"
msgid "Report list"
msgstr "Denuncia la llista"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Informa del missatge"
@@ -9199,8 +9386,8 @@ msgstr "Informa sobre l'starter pack"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "S'ha enviat la denúncia"
@@ -9213,7 +9400,7 @@ msgstr "Informa sobre aquesta conversa"
msgid "Report this feed"
msgstr "Informa d'aquest canal"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "Informa d'aquest xat de grup"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Informa d'aquesta llista"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Informa d'aquesta emissió en directe"
@@ -9256,10 +9443,6 @@ msgstr "Republica"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Republica ({0, plural, one {# republicació} other {# republicacions}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Notificacions de republicacions"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Republicat per tu"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Republicacions"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Republicacions d'aquesta publicació"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Republicacions de les teves republicacions"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Notificacions de les republicacions de les teves republicacions"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Demana un codi"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "Sol·licituds"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Requereix un text alternatiu abans de publicar"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Sol·licita el codi de correu per a iniciar sessió al teu compte."
@@ -9328,7 +9534,11 @@ msgstr "Requerit per aquest proveïdor"
msgid "Required in your region"
msgstr "Obligatori a la teva regió"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Torna'l a enviar"
@@ -9393,15 +9603,16 @@ msgstr "Torna a intentar l'última acció, que ha donat error"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Torna a intentar l'última acció, que ha donat error"
msgid "Retry"
msgstr "Torna-ho a provar"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Torna a provar de carregar les opcions d'informe"
@@ -9426,14 +9637,14 @@ msgstr "Torna a provar de carregar les opcions d'informe"
msgid "Return to previous page"
msgstr "Torna a la pàgina anterior"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Torna a la pàgina d'inici"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Torna a la pàgina anterior"
@@ -9454,7 +9665,7 @@ msgstr "GIFs tristos"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Desa la data de naixement"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Desa els canvis"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Vols desar els canvis?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Desa l'esborrany"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Vols desar l'esborrany?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Desa el codi QR"
msgid "Save these options for next time"
msgstr "Desa aquestes opcions per a la propera vegada"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Desa-ho als meus canals"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Desats"
msgid "Saved Feeds"
msgstr "Canals desats"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Publicacions desades"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "S'ha desat als teus canals."
@@ -9551,8 +9764,8 @@ msgstr "S'ha desat als teus canals."
msgid "Say hello!"
msgstr "Digues hola!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "Saluda a algú"
@@ -9576,18 +9789,18 @@ msgstr "Desplaça't a la dreta"
msgid "Scroll to top"
msgstr "Desplaça't cap a dalt"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Cerca"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Cerca a les publicacions de @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Cerca a les meves publicacions"
msgid "Search posts"
msgstr "Cerca publicacions"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Cerca perfils"
msgid "Search..."
msgstr "Cerca..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Cerca perfils"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Es requereix un pas de seguretat"
@@ -9759,7 +9972,7 @@ msgstr "Selecciona {langName}"
msgid "Select a color"
msgstr "Selecciona un color"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Tria un motiu"
@@ -9828,7 +10041,7 @@ msgstr "Selecciona GIF"
msgid "Select GIF \"{0}\""
msgstr "Selecciona GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "Selecciona els membres del grup del xat"
@@ -9850,7 +10063,7 @@ msgstr "Selecciona l'idioma..."
msgid "Select languages"
msgstr "Selecciona els idiomes"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Selecciona un servei de moderació"
@@ -9904,11 +10117,11 @@ msgstr "Selecciona els teus interessos d'entre aquestes opcions"
msgid "Select your preferred language for translations in your feed."
msgstr "Selecciona el teu idioma preferit per a les traduccions al teu canal."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Selecciona els teus canals de notificació preferits"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "No es permet seleccionar diversos tipus de suports."
@@ -9921,9 +10134,9 @@ msgstr "Autolesions o comportaments perillosos"
msgid "Send code"
msgstr "Envia el codi"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Envia correu"
@@ -9939,7 +10152,7 @@ msgstr "Envia informe d'error"
msgid "Send feedback"
msgstr "Envia comentari"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Envia el missatge"
@@ -9952,7 +10165,7 @@ msgstr "Envia la publicació a {name}"
msgid "Send post to..."
msgstr "Envia el missatge a..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Envia l'informe a {title}"
@@ -9960,7 +10173,7 @@ msgstr "Envia l'informe a {title}"
msgid "Send the message from your phone"
msgstr "Envia el missatge des del teu telèfon"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Envia per missatge directe"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "Enviat a {0}"
@@ -10015,14 +10228,14 @@ msgstr "Estableix la teva data de naixement a continuació i et permetrem tornar
msgid "Sets email for password reset"
msgstr "Estableix un correu per a restablir la contrasenya"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Configuració"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Configuració de l'activitat d'altres persones"
@@ -10030,39 +10243,39 @@ msgstr "Configuració de l'activitat d'altres persones"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Configuració per permetre que altres persones rebin notificacions de les teves publicacions"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Configuració de les notificacions de \"m'agrada\""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Configuració de les notificacions de mencions"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Configuració de les notificacions de nou seguidor"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Configuració de les notificacions de tota la resta"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Configuració de les notificacions de m'agrades a les teves republicacions"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Configuració de les notificacions de republicacions de les teves republicacions"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Configuració de les notificacions de citacions"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Configuració de les notificacions de respostes"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Configuració de les notificacions de republicacions"
@@ -10079,10 +10292,12 @@ msgstr "Activitat sexual o nu eròtic."
msgid "Sexually Suggestive"
msgstr "Suggerent sexualment"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Comparteix el DID de l'autor"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Comparteix la imatge"
@@ -10124,7 +10339,7 @@ msgstr "Comparteix l'URI at:// de la publicació"
msgid "Share QR code"
msgstr "Comparteix el codi QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Comparteix aquest canal"
@@ -10151,7 +10366,7 @@ msgstr "Comparteix a través de..."
msgid "Share your contacts to find friends"
msgstr "Comparteix els teus contactes per trobar amics"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Comprovador de preferències compartides"
@@ -10167,16 +10382,16 @@ msgstr "Mostra el text alternatiu"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Mostra igualment"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "Mostra l'etiqueta d'automatització"
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Mostra l'advertiment i filtra-ho dels canals"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Mostra quan estàs en directe"
@@ -10297,15 +10512,17 @@ msgstr "Mostra el contingut"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Inicia sessió o crea un compte"
msgid "Sign in or create your account to join the conversation!"
msgstr "Inicia sessió o crea el teu compte per a unir-te a la conversa"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Inicia sessió a un compte que no està llistat"
@@ -10337,6 +10558,10 @@ msgstr "Inicia sessió a un compte que no està llistat"
msgid "Sign in to Bluesky or create a new account"
msgstr "Inicia sessió o crea el teu compte"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Inicia la sessió per veure la publicació"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Tanca sessió"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Tanca la sessió"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Tancar la sessió?"
@@ -10391,7 +10616,7 @@ msgstr "Salta aquest pas"
msgid "Skip contact sharing and continue to the app"
msgstr "Omet la compartició de contactes i continua a l'aplicació"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Vols ometre les publicacions buides?"
@@ -10405,7 +10630,7 @@ msgstr "Omet la introducció i comença a utilitzar el teu compte"
msgid "Skip to next step"
msgstr "Salta al pas següent"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "llisca"
@@ -10413,7 +10638,7 @@ msgstr "llisca"
msgid "Smaller"
msgstr "Més petit"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Posposa el recordatori"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "Algú ha deixat el grup"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Algú ha reaccionat amb {0}"
@@ -10487,17 +10712,22 @@ msgstr "Algú ha estat eliminat"
msgid "Someone was removed from the group"
msgstr "Algú ha estat eliminat del grup"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Hi ha alguna cosa que no va bé amb les dades que intenteu informar. Contacteu amb suport."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Alguna cosa ha fallat"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Alguna cosa ha fallat."
msgid "Something went wrong. Please try again in a moment."
msgstr "Alguna cosa ha fallat, torna-ho a provar d'aquí una estona."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Alguna cosa ha fallat, torna-ho a provar."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Alguna cosa no va a l'hora? Fes-nos-ho saber."
@@ -10568,7 +10798,7 @@ msgstr "Esports"
msgid "Start a conversation, and it will appear here."
msgstr "Enceta una conversa i apareixerà aquí."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Comença un nou xat"
@@ -10582,17 +10812,17 @@ msgstr "Comença a afegir gent"
msgid "Start adding people!"
msgstr "Comença a afegir gent"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Inicia un xat"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Comença un xat amb {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Starter pack"
@@ -10654,12 +10884,12 @@ msgstr "L'emmagatzematge s'ha esborrat, cal que reinicieu l'aplicació ara."
msgid "Stored as part of a secure code for matching with others"
msgstr "Emmagatzemat com a part d'un codi segur per a la coincidència amb altres persones"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Historial"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 "Estàs reproduint en directe a Twitch? Defineix el teu estat en directe a Bluesky per afegir una insígnia al teu avatar. Si hi toques, els usuaris aniran directament a la teva transmissió."
@@ -10671,8 +10901,8 @@ msgstr "Estàs reproduint en directe a Twitch? Defineix el teu estat en directe
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Envia"
@@ -10684,9 +10914,9 @@ msgstr "Envia l'apel·lació"
msgid "Submit Appeal"
msgstr "Envia l'apel·lació"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Envia l'informe"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Subscriure's"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Verificat"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Verificat"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Verificat correctament"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Suggerit"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Ocàs"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Suport"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Encara no s'ha activat la compatibilitat amb aquesta funció al teu país. Torna-ho a comprovar més tard."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Canvia el compte"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Canvia de compte"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Canvia a {0}"
@@ -10828,7 +11062,7 @@ msgstr "Només etiquetes"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Toca a continuació per a permetre que Bluesky accedeixi a la teva ubicació GPS. Farem servir aquestes dades per a determinar amb més precisió el contingut i les funcions disponibles a la teva regió."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr "Toca per reconèixer que entens i acceptes aquestes actualitzacions i co
msgid "Tap to close context menu"
msgstr "Toca per a tancar el menú contextual"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Toca per a ignorar"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Toca per eliminar"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "Toca per eliminar la teva reacció {0}"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Toca per tornar-ho a provar"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "Toca per mostrar {0} reaccions"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Toca per mostrar totes les reaccions"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Toca per veure les reaccions"
@@ -10924,7 +11176,7 @@ msgstr "Condicions"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Text i etiquetes"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Camp d'introducció de text"
@@ -11049,6 +11301,11 @@ msgstr "La configuració serà la que s'aplicarà per defecte quan facis noves p
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "La legislació de la teva regió exigeix que verifiquis que ets adult per accedir a certes funcionalitats. Toca per obtenir més informació."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "L'autor ha marcat la publicació a la qual respons com a escrita en {suggestedLanguageName}. Vols respondre en <0>{suggestedLanguageName}0>?"
@@ -11057,9 +11314,9 @@ msgstr "L'autor ha marcat la publicació a la qual respons com a escrita en {sug
msgid "The Privacy Policy has been moved to <0/>"
msgstr "La política de privacitat ha estat traslladada a <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "No hi ha cap enllaç d'invitació per a aquest xat de grup."
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "No s'han pogut carregar els GIFs. Comprova la teva connexió i torna-ho a provar."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "Hi ha hagut un problema amb la connexió a Internet. Torna-ho a intentar"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "Hi ha hagut un problema amb la connexió a Internet. Torna-ho a intentar
msgid "There was an issue contacting the server"
msgstr "Hi ha hagut un problema per a contactar amb el servidor"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "S'ha produït un problema en contactar amb el servidor, comprova la teva connexió a Internet i torna-ho a provar."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquí per a tornar-ho a provar."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquí per a tornar-ho a provar."
@@ -11161,7 +11420,7 @@ msgstr "Hi ha hagut un problema en recuperar la informació del teu servei"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "S'ha produït un problema en eliminar aquest canal. Comprova la teva connexió a Internet i torna-ho a provar."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Aquesta apel·lació s'enviarà a <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Aquesta apel·lació s'enviarà al servei de moderació de Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Aquesta apel·lació s'enviarà al servei de moderació de Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "Aquest autor ha triat que les seves publicacions només siguin visibles per a les persones que han iniciat la sessió."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "Aquest botó permet que altres persones obrin l'aplicació Germ DM per enviar-te un missatge. Pots gestionar-ne la visibilitat des de l'aplicació Germ DM o pots desconnectar completament el teu compte de Bluesky de Germ DM fent clic al botó següent."
@@ -11271,7 +11530,12 @@ msgstr "Aquest botó permet que altres persones obrin l'aplicació Germ DM per e
msgid "This chat has ended"
msgstr "Aquest xat s'ha acabat"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "Aquest xat està bloquejat"
@@ -11310,7 +11574,11 @@ msgstr "Aquest contingut no està disponible per culpa que un dels usuaris invol
msgid "This content is not viewable without a Bluesky account."
msgstr "Aquest contingut no es pot veure sense un compte de Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Aquesta conversa és amb un compte suprimit o desactivat. Prem per obten
msgid "This draft will be permanently deleted."
msgstr "Aquest esborrany s'eliminarà permanentment."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Aquest correu ja està associat amb el teu compte."
@@ -11360,7 +11628,7 @@ msgstr "Aquest canal ja no està en línia. En el seu lloc et mostrem <0>Discove
msgid "This handle is reserved. Please try a different one."
msgstr "Aquest identificador està reservat. Si us plau, provi un altre."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "No s'ha pogut utilitzar aquesta imatge. Prova un format diferent com ara .jpg o .png."
@@ -11368,6 +11636,18 @@ msgstr "No s'ha pogut utilitzar aquesta imatge. Prova un format diferent com ara
msgid "This information is private and not shared with other users."
msgstr "Aquesta informació és privada i no es comparteix amb altres usuaris."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "Aquest és un estat buit"
@@ -11377,7 +11657,7 @@ msgstr "Aquest és un estat buit"
msgid "This is not a valid link"
msgstr "Aquest enllaç no és vàlid"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "Aquesta etiqueta permet que el món sàpiga que aquest compte està automatitzat. Si està activada, aquesta etiqueta apareixerà al costat del nom del compte al seu perfil i a les seves publicacions. Es pot activar o desactivar en qualsevol moment."
@@ -11410,13 +11690,13 @@ msgstr "Aquesta llista - creada per tu - conté possibles infraccions de les dir
msgid "This list is empty."
msgstr "Aquesta llista està buida."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "L'autor d'aquesta publicació ha deshabilitat les citacions."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Aquesta resposta s'ordenarà en una secció oculta a la part inferior del fil i silenciarà les notificacions de les respostes posteriors, tant per a tu com per als altres."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "Aquesta pantalla només està disponible per a converses en grup."
@@ -11494,7 +11775,7 @@ msgstr "Aquest usuari no té un nom de visualització i, per tant, no es pot ver
msgid "This user doesn't have any followers."
msgstr "Aquest usuari no té cap seguidor."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Aquest usuari t'ha bloquejat. No pots veure les seves publicacions."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Preferències dels fils de debat"
msgid "Threaded"
msgstr "En mode fils de debat"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Preferències dels fils de debat"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "per a desactivar el mètode 2FA de correu, verifica el teu accés a l'adreça de correu."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Per a desactivar el mètode 2FA de correu, verifica el teu accés a <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Superior"
msgid "Top replies first"
msgstr "Primer les respostes principals"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Tema"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Vídeos populars"
msgid "Trolling"
msgstr "Trolejar"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "La confiança sorgeix de les relacions, les comunitats i el context compartit, de manera que també estem habilitant <0>verificadors de confiança0>: organitzacions que poden emetre directament la verificació."
@@ -11763,11 +12044,15 @@ msgstr "No es pot contactar amb el teu servei. Comprova la teva connexió a inte
msgid "Unable to delete"
msgstr "No s'ha pogut eliminar"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr "No disponible"
msgid "Unavailable feed information"
msgstr "Informació del canal no disponible"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Desbloqueja la llista"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Desfés"
@@ -11872,7 +12157,7 @@ msgstr "Deixa de seguir el compte"
msgid "Unfollows the user"
msgstr "Deixa de seguir l'usuari"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Malauradament, cap dels vostres etiquetadora subscrits admet aquest tipus d'informe."
@@ -11904,13 +12189,13 @@ msgstr "Contingut per a adults sense etiquetar"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Contingut per a adults sense etiquetar, abusiu o no consentit"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Desfés els m'agrades ({0, plural, one {# m'agrada} other {# m'agrades}})"
@@ -11918,7 +12203,7 @@ msgstr "Desfés els m'agrades ({0, plural, one {# m'agrada} other {# m'agrades}}
msgid "Unlock chat"
msgstr "Desbloqueja el xat"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr "Obre aquest xat de grup"
@@ -11955,7 +12240,7 @@ msgstr "Deixa de silenciar la conversa"
msgid "Unmute list"
msgstr "Deixa de silenciar la llista"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "Deixa de silenciar aquest xat de grup"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Deixa de fixar"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Deixa de fixar el canal"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Deixa de fixar a l'inici"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Desancora la llista de moderació"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} ja no està fixat a l'inici"
@@ -12030,11 +12315,11 @@ 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/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "Contingut del porta-retalls no compatible"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Tipus de vídeo no compatible: {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "Actualitza"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Actualitza <0>{displayName}0> a les Llistes"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Actualitza el correu"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Actualitza l'enllaç d'invitació"
@@ -12065,11 +12354,19 @@ msgstr "Actualitza l'enllaç d'invitació"
msgid "Update to {domain}"
msgstr "Actualitza a {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "Actualitza l'aplicació a l'última versió per unir-t'hi!"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Actualitza el teu correu"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "No s'ha pogut actualitzar la visibilitat de la resposta"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Enlloc d'això, penja una foto"
@@ -12098,39 +12395,40 @@ msgstr "Enlloc d'això, penja una foto"
msgid "Upload a text file to:"
msgstr "Puja un fitxer de text a:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Puja de la càmera"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Puja dels Fitxers"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Puja de la biblioteca"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "S'està penjant el GIF..."
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "S'estan penjant imatges..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "S'està penjant la miniatura de l'enllaç..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "S'està penjant el vídeo..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "usuari"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Usuari bloquejat"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Llista d'usuaris per {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "Llista d'usuaris per {0}"
@@ -12255,12 +12553,12 @@ msgstr "usuaris seguits per <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "usuaris seguint <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "Els usuaris als quals segueixo"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Els usuaris als quals segueixo"
@@ -12277,7 +12575,7 @@ msgstr "La verificació ha fallat, torna-ho a provar."
msgid "Verification settings"
msgstr "Configuració de verificació"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Configuració de verificació"
@@ -12304,8 +12602,8 @@ msgstr "Verifica de nou"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Verifica el codi"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Verifica els registres de DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Verifica el codi del correu"
@@ -12349,7 +12647,7 @@ msgstr "Vols verificar aquest compte?"
msgid "Verify your age"
msgstr "Verifica la teva edat"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Versió {0}"
msgid "Video"
msgstr "Vídeo"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "El vídeo no s'ha pogut processar"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Canal de vídeos"
@@ -12419,7 +12717,7 @@ msgstr "No s'ha trobat el vídeo."
msgid "Video settings"
msgstr "Configuració de vídeo"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Vídeo penjat"
@@ -12432,18 +12730,18 @@ msgstr "Vídeo: {0}"
msgid "Videos"
msgstr "Vídeos"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
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:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Veure"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Veure l'avatar de {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Veure el perfil de {0}"
msgid "View {0}’s profile"
msgstr "Mostra el perfil de {0}"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "Mostra el perfil de {displayName}"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Veure els detalls"
msgid "View full thread"
msgstr "Veure el fil de debat complet"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr "Veure les sol·licituds de xat de grup entrants"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Mostra informació sobre aquestes etiquetes"
@@ -12522,7 +12828,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:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Veure la publicació"
@@ -12539,10 +12845,10 @@ msgstr "Veure el perfil"
msgid "View profile banner"
msgstr "Mostra el bàner del perfil"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Veure l'avatar"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "Mostra l'enllaç d'invitació per a aquest xat de grup"
@@ -12563,7 +12869,7 @@ msgstr "Veure el servei d'etiquetatge proporcionat per @{0}"
msgid "View this user's verifications"
msgstr "Veure les verificacions d'aquest usuari"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Veure els usuaris a qui els agrada aquest canal"
@@ -12596,8 +12902,8 @@ msgstr "Veure els teus comptes silenciats"
msgid "View your verifications"
msgstr "Veure les teves verificacions"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Veure la imatge completa"
@@ -12640,8 +12946,8 @@ msgstr "Adverteix del contingut"
msgid "Warn content and filter from feeds"
msgstr "Adverteix del contingut i filtra-ho dels canals"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Mira ara"
@@ -12665,10 +12971,14 @@ msgstr "No hem trobat cap resultat per a aquesta etiqueta."
msgid "We couldn't find any results for that topic."
msgstr "No hem trobat cap resultat per a aquest tema"
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "No hem pogut carregar aquesta conversa"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "No hem pogut carregar la configuració d'aquesta conversa"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Et recomanem que triïs almenys dos interessos."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Hem enviat un correu a <0>{0}0> amb un enllaç. Fes-hi clic per completar el procés de verificació del correu electrònic."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "No hem pogut determinar si tens permís per pujar vídeos. Torna-ho a provar."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "T'avisarem quan trobem els teus amics."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Enviarem un correu a <0>{0}0> amb un enllaç. Fes-hi clic per completar el procés de verificació del correu electrònic."
@@ -12779,12 +13089,12 @@ msgstr "Estem tenint problemes per inicialitzar el procés de garantia d'edat pe
msgid "We're having network issues, try again"
msgstr "Tenim problemes de xarxa, torna-ho a provar"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "Tenim problemes de xarxa, torna-ho a provar"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Estem introduint una nova capa de verificació a Bluesky: una marca de verificació fàcil de veure."
@@ -12814,12 +13124,12 @@ msgstr "Ens sap greu, però la teva cerca no s'ha pogut fer. Prova-ho d'aquí un
msgid "We're sorry, you cannot access this screen at this time."
msgstr "Ho sentim, no pots accedir a aquesta pantalla en aquest moment."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Com vols anomenar al teu starter pack?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Què hi ha de nou"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Quan toques un xec, veuràs quines organitzacions han concedit la verificació."
@@ -12878,7 +13188,7 @@ msgstr "Quan toques un xec, veuràs quines organitzacions han concedit la verifi
msgid "Who can interact with this post?"
msgstr "Qui pot interactuar amb aquesta publicació?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "Qui pot unir-se a aquest xat de grup i com"
@@ -12887,13 +13197,13 @@ msgstr "Qui pot unir-se a aquest xat de grup i com"
msgid "Who can reply"
msgstr "Qui hi pot respondre"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Qui pot verrificar?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Vaja!"
@@ -12939,7 +13249,7 @@ msgstr "Per què s'hauria de revisar aquest starter pack?"
msgid "Why should this user be reviewed?"
msgstr "Per què s'hauria de revisar aquest usuari?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Vols bloquejar aquest usuari i/o eliminar aquesta conversa?"
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr "Vols desar això com a esborrany abans de veure la resta dels teus esborranys?"
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
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?"
@@ -12960,12 +13270,12 @@ msgstr "Vols desar-ho com a esborrany per editar-ho més tard?"
msgid "Write a post"
msgstr "Escriu una publicació"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Escriu una publicació"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Escriu la teva resposta"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "L'identificador DID incorrecte ha estat retornat pel servidor. Rebut: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "Tipus de conversa equivocat"
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "Estàs accedint a Bluesky des d'una regió que legalment ens obliga a verificar la teva edat abans de permetre't accedir a l'aplicació."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr "Estàs emetent en directe"
msgid "You are no longer live"
msgstr "Ja no estàs emetent en directe"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "No t'és permès pujar vídeos."
@@ -13117,12 +13428,12 @@ msgstr "Sempre pots optar per no participar i suprimir les teves dades"
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Pots triar si les notificacions dels xats tenen so en la configuració del xat en l'aplicació"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Pots continuar les converses en curs independentment de la configuració que triïs."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Ara pots triar rebre notificacions quan publiquin persones específiques. Si hi ha algú de qui vols actualitzacions puntuals, vés al seu perfil i busca la nova icona de campana a prop del botó de seguir."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "Només pots desar esborranys de fins a 1000 caràcters."
@@ -13139,11 +13455,11 @@ msgstr "Només pots desar esborranys de fins a 1000 caràcters."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "Només pots desar esborranys de fins a 1000 caràcters. Vols descartar aquesta publicació abans de veure els teus esborranys?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr "Només pots seleccionar un GIF alhora."
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Només pots seleccionar un vídeo alhora."
@@ -13155,10 +13471,10 @@ msgstr "Pots reactivar el teu compte per continuar iniciant la sessió. El teu p
msgid "You can read chat history but can’t send new messages."
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: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."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr ""
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,7 +13482,7 @@ msgstr "Pots seleccionar fins a {MAX_IMAGES, plural, other {# imatges}} en total
msgid "You can update this later from your settings."
msgstr "Pots actualitzar-ho més tard des de la teva configuració."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "No tens cap canal desat."
msgid "You got here first"
msgstr "Vas arribar primer"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
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?"
@@ -13336,7 +13656,7 @@ msgstr "Has de seguir almenys set persones més per generar un starter pack."
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "Has de permetre l'accés a la teva biblioteca multimèdia."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Segurament vols reiniciar l'aplicació ara."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Has reaccionat amb {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "Has canviat la teva data de naixement fa poc"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Es tancarà la sessió de tots els teus comptes."
@@ -13390,7 +13710,7 @@ msgstr "Ara rebràs notificacions d'aquest debat"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Rebràs un correu amb un \"codi de restabliment\". Introdueix aquí el codi i després la teva contrasenya nova."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "No podràs tornar a unir-te si no t'hi conviden."
@@ -13463,7 +13783,7 @@ msgstr "Has arribat al final del contingut actiu."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Has arribat al final del teu canal! Cerca alguns comptes més per a seguir."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "Has arribat al nombre màxim d'esborranys"
@@ -13475,11 +13795,11 @@ msgstr "Has arribat al nombre màxim de sol·licituds permeses. Torna-ho a prova
msgid "You've reached the start of the active content."
msgstr "Has arribat a l'inici del contingut actiu."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Has assolit el teu límit diari de pujades de vídeos (massa bytes)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr "El teu compte s'ha eliminat, fins aviat! ✌️"
msgid "Your account has been suspended"
msgstr "S'ha suspès el teu compte"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "El teu compte encara no té l'edat suficient per penjar vídeos. Torna-ho a provar més tard."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "El repositori del teu compte, que conté tots els registres de dades públiques, es pot baixar com a fitxer \"CAR\". Aquest fitxer no inclou incrustacions multimèdia, com ara imatges, ni les teves dades privades, que s'han d'obtenir per separat."
@@ -13519,7 +13847,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Els teus xats s'han desactivat"
@@ -13561,7 +13889,7 @@ msgstr "El teu correu"
msgid "Your email appears to be invalid."
msgstr "El teu correu no sembla vàlid."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "El teu correu encara no s'ha verificat. Verifica'l per gaudir de totes les funcions de Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "El teu canal de seguint està buit! Segueix a més usuaris per a saber q
msgid "Your full handle will be <0>@{0}0>"
msgstr "El teu identificador complet serà <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "S'ha actualitzat la teva ubicació."
msgid "Your muted words"
msgstr "Les teves paraules silenciades"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "El teu nom, avatar i el nom del xat de grup seran visibles per a tothom."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "La teva publicació s'ha enviat"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "Les teves publicacions s'han enviat"
@@ -13635,7 +13963,7 @@ msgstr "Les teves publicacions s'han enviat"
msgid "Your preferred language"
msgstr "El teu idioma preferent"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "La teva foto de perfil"
@@ -13648,12 +13976,12 @@ msgstr "La teva foto de perfil envoltada de cercles concèntrics de les fotos de
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "La teva resposta s'ha enviat"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "El teu informe s'enviarà a <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "El teu informe s'enviarà a <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Seleccionar els teus interessos ens ajuda a mostrar-te el contingut que t'importa."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "El teu fil té publicacions buides que s'ometran. Les publicacions restants es publicaran com a fil."
diff --git a/src/locale/locales/cs/messages.po b/src/locale/locales/cs/messages.po
new file mode 100644
index 0000000000..dbbc8f0b5c
--- /dev/null
+++ b/src/locale/locales/cs/messages.po
@@ -0,0 +1,13999 @@
+msgid ""
+msgstr ""
+"POT-Creation-Date: 2023-11-05 16:01-0800\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: @lingui/cli\n"
+"Language: cs\n"
+"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
+"Report-Msgid-Bugs-To: \n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
+"Last-Translator: \n"
+"Language-Team: Czech\n"
+"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
+"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n"
+"X-Crowdin-Project-ID: 1\n"
+"X-Crowdin-Language: cs\n"
+"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n"
+"X-Crowdin-File-ID: 11\n"
+
+#. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected.
+#: src/components/InterestTabs.tsx:330
+msgid "\"{interestsDisplayName}\" category (active)"
+msgstr ""
+
+#: src/components/dms/getMessageInfo.ts:66
+msgid "(contains embedded content)"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:76
+msgid "(no email)"
+msgstr ""
+
+#. placeholder {0}: diff.value
+#: src/lib/hooks/useTimeAgo.ts:169
+msgid "{0, plural, one {# day} other {# days}}"
+msgstr ""
+
+#. placeholder {0}: profile.followersCount ?? 0
+#: src/screens/Profile/ProfileFollowers.tsx:33
+msgid "{0, plural, one {# follower} other {# followers}}"
+msgstr ""
+
+#. placeholder {0}: profile.followsCount ?? 0
+#: src/screens/Profile/ProfileFollows.tsx:33
+msgid "{0, plural, one {# following} other {# following}}"
+msgstr ""
+
+#. placeholder {0}: item.count
+#: src/components/contacts/screens/ViewMatches.tsx:268
+msgid "{0, plural, one {# friend found!} other {# friends found!}}"
+msgstr ""
+
+#. placeholder {0}: diff.value
+#: src/lib/hooks/useTimeAgo.ts:159
+msgid "{0, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. placeholder {0}: labels.length
+#: src/components/moderation/LabelsOnMe.tsx:63
+msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account"
+msgstr ""
+
+#. placeholder {0}: labels.length
+#: src/components/moderation/LabelsOnMe.tsx:72
+msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content"
+msgstr ""
+
+#. placeholder {0}: likeCount ?? 0
+#: src/screens/Post/PostLikedBy.tsx:34
+msgid "{0, plural, one {# like} other {# likes}}"
+msgstr ""
+
+#. placeholder {0}: convo.members.length
+#: src/components/dialogs/SearchablePeopleList.tsx:559
+msgid "{0, plural, one {# member} other {# members}}"
+msgstr ""
+
+#. placeholder {0}: diff.value
+#: src/lib/hooks/useTimeAgo.ts:149
+msgid "{0, plural, one {# minute} other {# minutes}}"
+msgstr ""
+
+#. placeholder {0}: diff.value
+#: src/lib/hooks/useTimeAgo.ts:180
+msgid "{0, plural, one {# month} other {# months}}"
+msgstr ""
+
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#. placeholder {0}: reactions.length
+#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
+#: src/components/dms/MessageItem.tsx:277
+msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
+msgstr ""
+
+#. placeholder {0}: quoteCount ?? 0
+#: src/screens/Post/PostQuotes.tsx:34
+msgid "{0, plural, one {# quote} other {# quotes}}"
+msgstr ""
+
+#. placeholder {0}: quoteCount ?? 0
+#: src/screens/Post/PostRepostedBy.tsx:34
+msgid "{0, plural, one {# repost} other {# reposts}}"
+msgstr ""
+
+#. placeholder {0}: diff.value
+#: src/lib/hooks/useTimeAgo.ts:139
+msgid "{0, plural, one {# second} other {# seconds}}"
+msgstr ""
+
+#. placeholder {0}: numUnreadMessages.numUnread ?? 0
+#. placeholder {0}: numUnreadNotifications ?? 0
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
+#: src/view/shell/Drawer.tsx:501
+msgid "{0, plural, one {# unread item} other {# unread items}}"
+msgstr ""
+
+#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
+#. placeholder {0}: view.readingTime
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
+msgid "{0, plural, one {#m} other {#m}}"
+msgstr ""
+
+#. How many months have passed, displayed in a narrow form
+#. placeholder {0}: diff.value
+#: src/lib/hooks/useTimeAgo.ts:182
+msgid "{0, plural, one {#mo} other {#mo}}"
+msgstr ""
+
+#. placeholder {0}: draft.meta.replyCount
+#: src/view/com/composer/drafts/DraftItem.tsx:143
+msgid "{0, plural, one {1 more post} other {# more posts}}"
+msgstr ""
+
+#. placeholder {0}: profile.followersCount || 0
+#: src/components/ProfileHoverCard/index.web.tsx:444
+#: src/screens/Profile/Header/Metrics.tsx:22
+msgid "{0, plural, one {follower} other {followers}}"
+msgstr ""
+
+#. placeholder {0}: profile.followsCount || 0
+#: src/components/ProfileHoverCard/index.web.tsx:448
+#: src/screens/Profile/Header/Metrics.tsx:26
+msgid "{0, plural, one {following} other {following}}"
+msgstr ""
+
+#. placeholder {0}: profile.postsCount || 0
+#: src/screens/Profile/Header/Metrics.tsx:58
+msgid "{0, plural, one {post} other {posts}}"
+msgstr ""
+
+#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack
+#. placeholder {0}: starterPack.joinedAllTimeCount || 0
+#: src/screens/StarterPack/StarterPackScreen.tsx:504
+msgid "{0, plural, other {# people have}} joined Bluesky via this starter pack!"
+msgstr ""
+
+#. placeholder {0}: starterPack.list.listItemCount - 4
+#: src/components/dialogs/StarterPackDialog.tsx:362
+msgid "{0, plural, other {+# more}}"
+msgstr ""
+
+#. placeholder {0}: aaRegionConfig.minAccessAge
+#: src/screens/Signup/StepInfo/index.tsx:311
+msgid "{0, plural, other {You must be # years of age or older to create an account in your region.}}"
+msgstr ""
+
+#. placeholder {0}: i18n.date(d, {timeStyle: ts})
+#. placeholder {1}: i18n.date(d, {dateStyle: 'medium'})
+#: src/lib/strings/time.ts:15
+msgctxt "date and time formatted like this: [time] · [date]"
+msgid "{0} · {1}"
+msgstr ""
+
+#. placeholder {0}: desc.name
+#: src/components/moderation/ContentHider.tsx:100
+msgid "{0} (Account)"
+msgstr ""
+
+#. Pattern: {wordValue} in tags
+#. placeholder {0}: word.value
+#: src/components/dialogs/MutedWords.tsx:495
+msgid "{0} <0>in <1>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#. placeholder {0}: word.value
+#: src/components/dialogs/MutedWords.tsx:484
+msgid "{0} <0>in <1>text & tags1>0>"
+msgstr ""
+
+#. placeholder {0}: createSanitizedDisplayName(members[0])
+#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41
+msgid "{0} added to chat"
+msgstr ""
+
+#. placeholder {0}: createSanitizedDisplayName(members[0])
+#. placeholder {1}: createSanitizedDisplayName(members[1])
+#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43
+msgid "{0} and {1} added to chat"
+msgstr ""
+
+#. placeholder {0}: profile.followsCount || 0
+#: src/screens/Profile/Header/Metrics.tsx:49
+msgid "{0} following"
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle(profile.handle, '@')
+#: src/components/dms/MessageItem.tsx:622
+msgid "{0} is blocking you"
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle(profile.handle)
+#: src/features/liveNow/components/LiveStatusDialog.tsx:84
+msgid "{0} is live"
+msgstr ""
+
+#. placeholder {0}: createFullHandle(draftValue, state.userDomain)
+#: src/screens/Signup/StepHandle/index.tsx:186
+msgid "{0} is not available"
+msgstr ""
+
+#. placeholder {0}: codeToLanguageName( expectedSourceLanguage, langPrefs.appLanguage, )
+#: src/lib/translation/index.tsx:314
+msgid "{0} is not supported by your device."
+msgstr ""
+
+#. placeholder {0}: action.displayName
+#: src/components/dms/getSystemMessageInfo.ts:83
+msgid "{0} joined"
+msgstr ""
+
+#. placeholder {0}: action.displayName
+#: src/components/dms/getSystemMessageInfo.ts:84
+msgid "{0} joined the group"
+msgstr ""
+
+#. placeholder {0}: formatCount(i18n, JOINED_THIS_WEEK)
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230
+msgid "{0} joined this week"
+msgstr ""
+
+#. placeholder {0}: action.displayName
+#: src/components/dms/getSystemMessageInfo.ts:96
+msgid "{0} left"
+msgstr ""
+
+#. placeholder {0}: action.displayName
+#: src/components/dms/getSystemMessageInfo.ts:97
+msgid "{0} left the group"
+msgstr ""
+
+#. placeholder {0}: formatTime(currentTime)
+#. placeholder {1}: formatTime(duration)
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203
+msgid "{0} of {1}"
+msgstr ""
+
+#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field
+#. placeholder {0}: state.name?.length
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:56
+msgid "{0} out of 50"
+msgstr ""
+
+#. placeholder {0}: createSanitizedDisplayName(memberSender)
+#. placeholder {1}: reaction.value
+#: src/components/dms/MessageItem.tsx:272
+msgid "{0} reacted {1}"
+msgstr ""
+
+#. placeholder {0}: action.displayName
+#: src/components/dms/getSystemMessageInfo.ts:57
+msgid "{0} was added"
+msgstr ""
+
+#. placeholder {0}: action.displayName
+#: src/components/dms/getSystemMessageInfo.ts:58
+msgid "{0} was added to the group"
+msgstr ""
+
+#. placeholder {0}: action.displayName
+#: src/components/dms/getSystemMessageInfo.ts:70
+msgid "{0} was removed"
+msgstr ""
+
+#. placeholder {0}: action.displayName
+#: src/components/dms/getSystemMessageInfo.ts:71
+msgid "{0} was removed from the group"
+msgstr ""
+
+#. placeholder {0}: createSanitizedDisplayName(members[0])
+#. placeholder {1}: createSanitizedDisplayName(members[1])
+#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46
+msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat"
+msgstr ""
+
+#. placeholder {0}: feed.displayName
+#. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@')
+#. placeholder {2}: feed.likeCount || 0
+#: src/view/com/feeds/FeedSourceCard.tsx:189
+msgid "{0}, a feed by {1}, liked by {2}"
+msgstr ""
+
+#. placeholder {0}: feed.displayName
+#. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@')
+#: src/view/com/feeds/FeedSourceCard.tsx:192
+msgid "{0}, a list by {1}"
+msgstr ""
+
+#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
+#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
+msgid "{0}'s avatar"
+msgstr ""
+
+#. placeholder {0}: createSanitizedDisplayName(profile)
+#: src/components/dms/MessageItem.tsx:232
+msgid "{0}’s avatar"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
+#. How many days have passed, displayed in a narrow form
+#. placeholder {0}: diff.value
+#: src/lib/hooks/useTimeAgo.ts:171
+msgid "{0}d"
+msgstr ""
+
+#. How many hours have passed, displayed in a narrow form
+#. placeholder {0}: diff.value
+#: src/lib/hooks/useTimeAgo.ts:161
+msgid "{0}h"
+msgstr ""
+
+#. How many minutes have passed, displayed in a narrow form
+#. placeholder {0}: diff.value
+#: src/lib/hooks/useTimeAgo.ts:151
+msgid "{0}m"
+msgstr ""
+
+#. How many seconds have passed, displayed in a narrow form
+#. placeholder {0}: diff.value
+#: src/lib/hooks/useTimeAgo.ts:141
+msgid "{0}s"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
+#: src/components/dms/SystemMessageGroup.tsx:38
+msgid "{count, plural, one {# chat update} other {# chat updates}}"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
+msgid "{count, plural, one {# request} other {# requests}}"
+msgstr ""
+
+#: src/view/shell/desktop/LeftNav.tsx:484
+msgid "{count, plural, one {# unread item} other {# unread items}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/InboxRequests.tsx:56
+msgid "{count}+"
+msgstr ""
+
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/InboxRequests.tsx:31
+msgid "{count}+ requests"
+msgstr ""
+
+#: src/components/dms/DateDivider.tsx:60
+msgid "{date} at {time}"
+msgstr ""
+
+#: src/lib/generate-starterpack.ts:104
+#: src/screens/StarterPack/Wizard/index.tsx:189
+msgid "{displayName}'s Starter Pack"
+msgstr ""
+
+#: src/screens/SignupQueued.tsx:219
+msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}"
+msgstr ""
+
+#: src/screens/SignupQueued.tsx:225
+msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:346
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> followed you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:380
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:289
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:485
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:458
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:313
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:509
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:404
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> signed up with your starter pack"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:433
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:358
+msgid "{firstAuthorLink} followed you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:335
+msgid "{firstAuthorLink} followed you back"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:392
+msgid "{firstAuthorLink} liked your custom feed"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:301
+msgid "{firstAuthorLink} liked your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:497
+msgid "{firstAuthorLink} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:470
+msgid "{firstAuthorLink} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:325
+msgid "{firstAuthorLink} reposted your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:521
+msgid "{firstAuthorLink} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:416
+msgid "{firstAuthorLink} signed up with your starter pack"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:445
+msgid "{firstAuthorLink} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:339
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:373
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:282
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:478
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:451
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:306
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:502
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:397
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:426
+msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:344
+msgid "{firstAuthorName} followed you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:334
+msgid "{firstAuthorName} followed you back"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:378
+msgid "{firstAuthorName} liked your custom feed"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:287
+msgid "{firstAuthorName} liked your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:483
+msgid "{firstAuthorName} liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:456
+msgid "{firstAuthorName} removed their verification from your account"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:311
+msgid "{firstAuthorName} reposted your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:507
+msgid "{firstAuthorName} reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:402
+msgid "{firstAuthorName} signed up with your starter pack"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:431
+msgid "{firstAuthorName} verified you"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:572
+msgid "{following} following"
+msgstr ""
+
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
+msgid "{handle} can’t be added"
+msgstr ""
+
+#: src/components/dialogs/SearchablePeopleList.tsx:459
+msgid "{handle} can't be messaged"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:880
+msgid "{handle} can’t be messaged"
+msgstr ""
+
+#: src/features/liveNow/utils.ts:15
+msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}"
+msgstr ""
+
+#: src/features/liveNow/utils.ts:19
+msgid "{hours, plural, one {# hour} other {# hours}}"
+msgstr ""
+
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
+#: src/components/StarterPack/StarterPackCard.tsx:102
+msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
+msgstr ""
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:138
+msgid "{MAX_ALT_TEXT, plural, other {Alt text must be less than # characters.}}"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:380
+msgid "{MAX_DESCRIPTION, plural, other {Description is too long. The maximum number of characters is #.}}"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:329
+msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394
+msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}"
+msgstr ""
+
+#. The number of group chat members out of the total number of permitted users.
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
+msgid "{memberCount}/{memberLimit}"
+msgstr ""
+
+#: src/features/liveNow/utils.ts:10
+msgid "{minutes, plural, one {# minute} other {# minutes}}"
+msgstr ""
+
+#. placeholder {0}: reaction.value
+#: src/components/dms/getReactionInfo.ts:45
+msgid "{name} reacted {0} to {target}"
+msgstr ""
+
+#. When the last message in a group chat came from someone other than you.
+#: src/components/dms/getMessageInfo.ts:50
+msgid "{name}: {message}"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:76
+msgid "{name}'s favorite feeds and people - join me!"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:49
+msgid "{name}'s starter pack"
+msgstr ""
+
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
+msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
+msgstr ""
+
+#: src/screens/Settings/FindContactsSettings.tsx:436
+msgid "{numMatches, plural, one {# contact found} other {# contacts found}}"
+msgstr ""
+
+#: src/components/NewskieDialog.tsx:115
+msgid "{profileName} joined Bluesky {timeAgoString} ago"
+msgstr ""
+
+#: src/components/NewskieDialog.tsx:112
+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:101
+msgid "{rank}."
+msgstr ""
+
+#. The number of requests to join a group chat.
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
+msgid "{requestCount, plural, one {# request} other {# requests}}"
+msgstr ""
+
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
+msgid "{requestCount}+ requests"
+msgstr ""
+
+#. trending topic time spent trending. should be as short as possible to fit in a pill
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191
+msgid "{type}h ago"
+msgstr ""
+
+#: src/components/verification/VerifierDialog.tsx:62
+msgid "{userName} is a trusted verifier"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:69
+msgid "{userName} is verified"
+msgstr ""
+
+#. Possessive, meaning "the verifications of {userName}"
+#: src/components/verification/VerificationsDialog.tsx:71
+msgid "{userName}'s verifications"
+msgstr ""
+
+#. Indicates the number of additional profiles are in the Starter Pack e.g. +12
+#: src/screens/Search/components/StarterPackCard.tsx:250
+msgid "+{computedTotal}"
+msgstr ""
+
+#. placeholder {0}: getName(items[0])
+#. placeholder {1}: getName(items[1])
+#. placeholder {2}: items.length - 2
+#: src/screens/StarterPack/Wizard/index.tsx:569
+msgctxt "feeds"
+msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
+msgstr ""
+
+#. placeholder {0}: getName(items[1] /* [0] is self, skip it */)
+#. placeholder {1}: getName(items[2])
+#. placeholder {2}: items.length - 2
+#: src/screens/StarterPack/Wizard/index.tsx:516
+msgctxt "profiles"
+msgid "<0>{0}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
+msgstr ""
+
+#. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0)
+#. placeholder {1}: profile?.followersCount || 0
+#: src/view/shell/Drawer.tsx:110
+msgid "<0>{0}0> {1, plural, one {follower} other {followers}}"
+msgstr ""
+
+#. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0)
+#. placeholder {1}: profile?.followsCount || 0
+#: src/view/shell/Drawer.tsx:121
+msgid "<0>{0}0> {1, plural, one {following} other {following}}"
+msgstr ""
+
+#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0)
+#. placeholder {0}: formatPostStatCount(post.likeCount)
+#. placeholder {1}: post.likeCount
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490
+msgid "<0>{0}0> {1, plural, one {like} other {likes}}"
+msgstr ""
+
+#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0)
+#. placeholder {0}: formatPostStatCount(post.quoteCount)
+#. placeholder {1}: post.quoteCount
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471
+msgid "<0>{0}0> {1, plural, one {quote} other {quotes}}"
+msgstr ""
+
+#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0)
+#. placeholder {0}: formatPostStatCount(post.repostCount)
+#. placeholder {1}: post.repostCount
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450
+msgid "<0>{0}0> {1, plural, one {repost} other {reposts}}"
+msgstr ""
+
+#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0)
+#. placeholder {0}: formatPostStatCount(post.bookmarkCount)
+#. placeholder {1}: post.bookmarkCount
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:508
+msgid "<0>{0}0> {1, plural, one {save} other {saves}}"
+msgstr ""
+
+#. placeholder {0}: getName(items[0])
+#. placeholder {1}: getName(items[1] /* [0] is self, skip it */)
+#. placeholder {1}: getName(items[1])
+#: src/screens/StarterPack/Wizard/index.tsx:503
+#: src/screens/StarterPack/Wizard/index.tsx:557
+msgid "<0>{0}0> and<1> 1><2>{1} 2>are included in your starter pack"
+msgstr ""
+
+#. placeholder {0}: getName(items[0])
+#: src/screens/StarterPack/Wizard/index.tsx:550
+msgid "<0>{0}0> is included in your starter pack"
+msgstr ""
+
+#. placeholder {0}: list.name
+#: src/components/WhoCanReply.tsx:353
+msgid "<0>{0}0> members"
+msgstr ""
+
+#. Text identifying the person who added you to a group chat
+#: src/screens/Messages/components/ChatStatusInfo.tsx:141
+msgid "<0>{displayName}0><1/><2> added you2>"
+msgstr ""
+
+#: src/screens/Hashtag.tsx:226
+#: src/screens/Search/SearchResults.tsx:315
+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/components/ageAssurance/AgeAssuranceAccountCard.tsx:276
+msgid "<0>Tap here to update your location with GPS.0>"
+msgstr ""
+
+#. placeholder {0}: getName(items[1] /* [0] is self, skip it */)
+#: src/screens/StarterPack/Wizard/index.tsx:494
+msgid "<0>You0> and<1> 1><2>{0} 2>are included in your starter pack"
+msgstr ""
+
+#: src/screens/Profile/Header/Handle.tsx:58
+msgid "⚠Invalid Handle"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:202
+#: src/components/dialogs/MutedWords.tsx:551
+#: src/components/dialogs/MutedWords.tsx:554
+msgid "24 hours"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:278
+msgid "2FA Confirmation"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:241
+#: src/components/dialogs/MutedWords.tsx:565
+#: src/components/dialogs/MutedWords.tsx:568
+msgid "30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:226
+#: src/components/dialogs/MutedWords.tsx:558
+#: src/components/dialogs/MutedWords.tsx:561
+msgid "7 days"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17
+msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens"
+msgstr ""
+
+#. If last message does not contain text, fall back to "{user} reacted to {a message}"
+#: src/components/dms/getReactionInfo.ts:33
+msgid "a message"
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:102
+msgid "A network error occurred. Please check your internet connection"
+msgstr ""
+
+#: src/components/contacts/screens/VerifyNumber.tsx:99
+#: src/components/contacts/screens/VerifyNumber.tsx:155
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
+msgid "A network error occurred. Please check your internet connection."
+msgstr ""
+
+#: src/components/contacts/screens/VerifyNumber.tsx:143
+msgid "A new code has been sent"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
+msgid "A new form of verification"
+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/LiveNowBetaDialog.tsx:147
+msgid "A screenshot of a post from @esb.lol, showing the user is currently livestreaming content on Twitch. The post reads: \"Hello! I'm live on Twitch, and I'm testing Bluesky's latest feature too!\""
+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/BookmarksAnnouncement.tsx:121
+msgid "A screenshot of a post with a new button next to the share button that allows you to save the post to your bookmarks. The post is from @jcsalterego.bsky.social and reads \"inventing a saturday that immediately follows monday\"."
+msgstr ""
+
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:114
+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:98
+msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:105
+msgid "A selected recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:459
+#: src/screens/Settings/AboutSettings.tsx:78
+#: src/screens/Settings/Settings.tsx:255
+#: src/screens/Settings/Settings.tsx:258
+msgid "About"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:100
+msgid "Abusive or discriminatory behavior"
+msgstr ""
+
+#. Accept a chat request
+#: src/screens/Messages/components/RequestButtons.tsx:286
+msgid "Accept"
+msgstr ""
+
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
+#: src/screens/Messages/components/RequestButtons.tsx:280
+msgid "Accept chat request"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
+#. Accept a chat request
+#: src/screens/Messages/components/RequestListItem.tsx:51
+msgid "Accept Request"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:460
+msgid "Accept this language suggestion"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
+#: src/screens/Settings/AccessibilitySettings.tsx:45
+#: src/screens/Settings/Settings.tsx:233
+#: src/screens/Settings/Settings.tsx:236
+msgid "Accessibility"
+msgstr ""
+
+#: src/Navigation.tsx:382
+msgid "Accessibility Settings"
+msgstr ""
+
+#: src/Navigation.tsx:398
+#: src/screens/Login/LoginForm.tsx:192
+#: src/screens/Settings/AccountSettings.tsx:56
+#: src/screens/Settings/Settings.tsx:173
+#: src/screens/Settings/Settings.tsx:176
+msgid "Account"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426
+#: src/screens/Messages/components/RequestButtons.tsx:97
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117
+#: src/view/com/profile/ProfileMenu.tsx:188
+msgctxt "toast"
+msgid "Account blocked"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:203
+msgctxt "toast"
+msgid "Account followed"
+msgstr ""
+
+#: src/lib/strings/errors.ts:34
+msgid "Account has been suspended"
+msgstr ""
+
+#: src/lib/strings/errors.ts:37
+msgid "Account is deactivated"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469
+#: src/view/com/profile/ProfileMenu.tsx:160
+msgctxt "toast"
+msgid "Account muted"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:107
+#: src/lib/moderation/useModerationCauseDescription.ts:99
+msgid "Account Muted"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:93
+msgid "Account Muted by List"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:637
+msgid "Account options"
+msgstr ""
+
+#: src/components/dialogs/ServerInput.tsx:138
+msgid "Account provider"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:671
+msgid "Account removed from quick access"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310
+#: src/view/com/profile/ProfileMenu.tsx:176
+msgctxt "toast"
+msgid "Account unblocked"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:217
+msgctxt "toast"
+msgid "Account unfollowed"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449
+#: src/view/com/profile/ProfileMenu.tsx:148
+msgctxt "toast"
+msgid "Account unmuted"
+msgstr ""
+
+#: src/components/verification/VerifierDialog.tsx:100
+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:216
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
+msgid "Activity from others"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
+#: src/components/dialogs/MutedWords.tsx:337
+#: src/components/dialogs/StarterPackDialog.tsx:376
+#: src/components/dialogs/StarterPackDialog.tsx:388
+#: src/components/dms/AddMembersFlow.tsx:403
+#: src/view/com/modals/UserAddRemoveLists.tsx:236
+msgid "Add"
+msgstr ""
+
+#. placeholder {0}: 8 - items.length
+#: src/screens/StarterPack/Wizard/index.tsx:605
+msgid "Add {0} more to continue"
+msgstr ""
+
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:63
+msgid "Add {displayName} to starter pack"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:103
+#: src/view/com/composer/labels/LabelsBtn.tsx:108
+msgid "Add a content warning"
+msgstr ""
+
+#: src/features/liveNow/components/GoLiveDialog.tsx:108
+msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event."
+msgstr ""
+
+#: src/screens/ProfileList/AboutSection.tsx:64
+#: src/screens/ProfileList/AboutSection.tsx:82
+msgid "Add a user to this list"
+msgstr ""
+
+#: src/components/dialogs/SwitchAccount.tsx:56
+#: src/screens/Deactivated.tsx:184
+msgid "Add account"
+msgstr ""
+
+#: src/view/com/composer/GifAltText.tsx:76
+#: src/view/com/composer/GifAltText.tsx:150
+#: src/view/com/composer/GifAltText.tsx:217
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
+msgid "Add alt text"
+msgstr ""
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:115
+msgid "Add alt text (optional)"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:575
+#: src/screens/Settings/Settings.tsx:578
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
+msgid "Add another account"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1454
+msgid "Add another post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2117
+msgid "Add another post to thread"
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102
+msgid "Add app password"
+msgstr ""
+
+#: src/screens/Settings/AppPasswords.tsx:75
+#: src/screens/Settings/AppPasswords.tsx:83
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111
+msgid "Add App Password"
+msgstr ""
+
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
+msgid "Add automation label to account"
+msgstr ""
+
+#: src/components/dms/EmojiReactionPicker.web.tsx:31
+msgid "Add emoji reaction"
+msgstr ""
+
+#: src/components/dms/AddMembersFlow.tsx:485
+msgid "Add group chat members"
+msgstr ""
+
+#: src/view/com/feeds/ComposerPrompt.tsx:224
+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:505
+msgid "Add media to post"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69
+#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103
+#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122
+msgid "Add members"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
+msgid "Add more details (optional)"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:218
+#: src/screens/Settings/LanguageSettings.tsx:223
+msgid "Add more languages…"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:330
+msgid "Add mute word with chosen settings"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:120
+msgid "Add muted words and tags"
+msgstr ""
+
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
+#: src/screens/ProfileList/AboutSection.tsx:72
+#: src/screens/ProfileList/AboutSection.tsx:90
+msgid "Add people"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:83
+msgid "Add people to list"
+msgstr ""
+
+#: src/components/dms/EmojiPopup.android.tsx:56
+msgid "Add Reaction"
+msgstr ""
+
+#: src/screens/Home/NoFeedsPinned.tsx:100
+msgid "Add recommended feeds"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:538
+msgid "Add some feeds to your starter pack!"
+msgstr ""
+
+#: src/screens/Feeds/NoFollowingFeed.tsx:40
+msgid "Add the default feed of only people you follow"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:419
+msgid "Add the following DNS record to your domain:"
+msgstr ""
+
+#: src/components/FeedCard.tsx:338
+msgid "Add this feed to your feeds"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:355
+#: src/view/com/profile/ProfileMenu.tsx:358
+msgid "Add to lists"
+msgstr ""
+
+#: src/components/PostControls/BookmarkButton.tsx:144
+msgid "Add to saved posts"
+msgstr ""
+
+#: src/components/dialogs/StarterPackDialog.tsx:184
+#: src/view/com/profile/ProfileMenu.tsx:346
+#: src/view/com/profile/ProfileMenu.tsx:349
+msgid "Add to starter packs"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:166
+msgid "Add user to list"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:234
+msgid "Add your birthdate"
+msgstr ""
+
+#. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), )
+#: src/screens/Messages/ConversationSettings/Member.tsx:97
+msgid "Added by {0}"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/Member.tsx:102
+msgid "Added by invite link"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:113
+#: src/view/com/modals/UserAddRemoveLists.tsx:163
+msgid "Added to list"
+msgstr ""
+
+#: src/components/dialogs/StarterPackDialog.tsx:274
+msgid "Added to starter pack"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:225
+#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:230
+msgid "Adding members to list..."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:116
+msgid "Additional details (limit 1000 characters)"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:546
+msgid "Additional details (limit 300 characters)"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/Member.tsx:82
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152
+msgid "Admin"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:155
+msgid "Adult"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:66
+msgid "Adult content"
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:131
+#: src/lib/moderation/useGlobalLabelStrings.ts:34
+#: src/lib/moderation/useModerationCauseDescription.ts:149
+#: src/view/com/composer/labels/LabelsBtn.tsx:123
+msgid "Adult Content"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:412
+msgid "Adult content can only be enabled via the Web at <0>bsky.app0>."
+msgstr ""
+
+#: src/components/moderation/LabelPreference.tsx:252
+msgid "Adult content is disabled."
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:134
+#: src/view/com/composer/labels/LabelsBtn.tsx:192
+msgid "Adult Content labels"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:76
+msgid "Adult sexual abuse content"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:457
+msgid "Advanced"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42
+msgid "Age Assurance"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:72
+msgid "Age assurance inquiry failed to send, please try again."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:82
+msgctxt "toast"
+msgid "Age assurance inquiry was submitted"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:383
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:207
+msgid "Age assurance only takes a few minutes"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
+msgid "alice@example.com"
+msgstr ""
+
+#. the default tab in the interests tab bar
+#: src/components/dms/ReactionsDialog.tsx:288
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
+#: src/view/screens/Notifications.tsx:86
+msgid "All"
+msgstr ""
+
+#. Tab label showing the total count of reactions on a chat message.
+#. placeholder {0}: tab.count
+#: src/components/dms/ReactionsDialog.tsx:385
+msgid "All {0}"
+msgstr ""
+
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:97
+#: src/screens/StarterPack/StarterPackScreen.tsx:400
+msgid "All accounts have been followed!"
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:144
+msgid "All friends followed!"
+msgstr ""
+
+#: src/components/dialogs/LanguageSelectDialog.tsx:255
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:65
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:100
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:102
+msgid "All languages"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:189
+msgid "All languages will be shown in your feeds."
+msgstr ""
+
+#: src/view/screens/Feeds.tsx:700
+msgid "All the feeds you've saved, right in one place."
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153
+msgid "Allow access to your direct messages"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:451
+msgid "Allow anyone to reply"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
+msgid "Allow direct messages from"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
+msgid "Allow group chat invites from"
+msgstr ""
+
+#: src/components/dialogs/DeviceLocationRequestDialog.tsx:128
+#: src/components/dialogs/DeviceLocationRequestDialog.tsx:134
+msgid "Allow location access"
+msgstr ""
+
+#: src/screens/Settings/ActivityPrivacySettings.tsx:53
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92
+msgid "Allow others to be notified of your posts"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:504
+msgid "Allow people you follow to reply"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:518
+msgid "Allow people you mention to reply"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:636
+msgid "Allow quote posts"
+msgstr ""
+
+#. placeholder {0}: list.name
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:598
+msgid "Allow users in {0} to reply"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:490
+msgid "Allow your followers to reply"
+msgstr ""
+
+#: src/screens/Settings/AppPasswords.tsx:201
+msgid "Allows access to direct messages"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:180
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:237
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:243
+msgid "Already have a code?"
+msgstr ""
+
+#: src/components/WelcomeModal.tsx:192
+msgid "Already have an account?"
+msgstr ""
+
+#. placeholder {0}: account.handle
+#: src/screens/Login/ChooseAccountForm.tsx:46
+msgid "Already signed in as @{0}"
+msgstr ""
+
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
+#: src/view/com/composer/GifAltText.tsx:100
+#: src/view/com/composer/photos/Gallery.tsx:211
+msgid "ALT"
+msgstr ""
+
+#: src/screens/Settings/AccessibilitySettings.tsx:55
+#: src/view/com/composer/GifAltText.tsx:160
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128
+#: src/view/com/composer/videos/SubtitleDialog.tsx:41
+#: src/view/com/composer/videos/SubtitleDialog.tsx:59
+#: src/view/com/composer/videos/SubtitleDialog.tsx:110
+#: src/view/com/composer/videos/SubtitleDialog.tsx:114
+msgid "Alt text"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:100
+msgid "Alt Text"
+msgstr ""
+
+#: src/view/com/composer/GifAltText.tsx:105
+#: src/view/com/composer/photos/Gallery.tsx:130
+msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
+msgstr ""
+
+#. placeholder {0}: i18n.number(MAX_ALT_TEXT)
+#: src/view/com/composer/GifAltText.tsx:185
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:149
+msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}"
+msgstr ""
+
+#. placeholder {0}: currentAccount?.email || '(no email)'
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:94
+msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below."
+msgstr ""
+
+#. Accessibility label for the dialog shown when the GIF picker hits an unexpected runtime error and falls back to its error boundary.
+#: src/components/dialogs/LanguageSelectDialog.tsx:344
+#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:15
+msgid "An error has occurred"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448
+msgid "An error occurred"
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:401
+msgid "An error occurred while compressing the video."
+msgstr ""
+
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:223
+#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:69
+msgid "An error occurred while fetching suggested accounts."
+msgstr ""
+
+#: src/state/queries/explore-feed-previews.tsx:183
+msgid "An error occurred while fetching the feed."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:374
+msgid "An error occurred while generating your starter pack. Want to try again?"
+msgstr ""
+
+#. placeholder {0}: cleanError(err)
+#: src/components/contacts/screens/ViewMatches.tsx:243
+msgid "An error occurred while hiding suggestion. {0}"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/index.tsx:149
+msgid "An error occurred while loading the video. Please try again later."
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239
+msgid "An error occurred while loading the video. Please try again."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:581
+msgid "An error occurred while loading your lists :/"
+msgstr ""
+
+#: src/components/StarterPack/QrCodeDialog.tsx:78
+msgid "An error occurred while saving the QR code!"
+msgstr ""
+
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:54
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:82
+#: src/screens/StarterPack/StarterPackScreen.tsx:359
+#: src/screens/StarterPack/StarterPackScreen.tsx:386
+msgid "An error occurred while trying to follow all"
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:453
+msgid "An error occurred while uploading the video. {message}"
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:445
+msgid "An error occurred while uploading the video. Please check your internet connection and try again."
+msgstr ""
+
+#. placeholder {0}: cleanError(err)
+#: src/components/contacts/screens/PhoneInput.tsx:120
+#: src/components/contacts/screens/VerifyNumber.tsx:131
+#: src/components/contacts/screens/VerifyNumber.tsx:184
+msgid "An error occurred. {0}"
+msgstr ""
+
+#: src/components/contacts/components/HeroImage.tsx:28
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:79
+msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35
+msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:86
+#: src/components/verification/VerifierDialog.tsx:88
+msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
+msgid "An issue not included in these options"
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
+msgid "An issue occurred creating the group chat, please try again."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
+msgid "An issue occurred starting the chat, please try again."
+msgstr ""
+
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
+msgid "An issue occurred while trying to open the chat"
+msgstr ""
+
+#: src/components/hooks/useFollowMethods.ts:35
+#: src/components/hooks/useFollowMethods.ts:52
+#: src/components/ProfileCard.tsx:508
+#: src/components/ProfileCard.tsx:530
+#: src/view/com/notifications/NotificationFeedItem.tsx:770
+#: src/view/com/notifications/NotificationFeedItem.tsx:792
+msgid "An issue occurred, please try again."
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
+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 ""
+
+#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:165
+msgid "An unknown error occurred."
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:138
+#: src/lib/moderation/useModerationCauseDescription.ts:145
+msgid "an unknown labeler"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:374
+msgid "and"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:88
+msgid "Animal sexual abuse"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:130
+msgid "Animal welfare"
+msgstr ""
+
+#: src/lib/interests.ts:52
+msgid "Animals"
+msgstr ""
+
+#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:97
+msgid "Animated GIF"
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/Badge.tsx:33
+msgid "Announcement"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:39
+msgid "Announcing verification on Bluesky"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:457
+msgid "Anyone"
+msgstr ""
+
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:137
+msgid "Anyone can interact"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
+#: src/screens/Messages/components/InviteLinkDialog.tsx:143
+msgid "Anyone can join instantly"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
+#: src/screens/Messages/components/InviteLinkDialog.tsx:148
+msgid "Anyone can request to join"
+msgstr ""
+
+#: src/screens/Settings/ActivityPrivacySettings.tsx:112
+#: src/screens/Settings/ActivityPrivacySettings.tsx:117
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163
+msgid "Anyone who follows me"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
+msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
+msgstr ""
+
+#: src/Navigation.tsx:467
+#: src/screens/Settings/AppIconSettings/index.tsx:65
+#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
+#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
+msgid "App Icon"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:107
+#: src/screens/Settings/LanguageSettings.tsx:123
+msgid "App language"
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122
+msgid "App Password"
+msgstr ""
+
+#: src/screens/Settings/AppPasswords.tsx:147
+msgctxt "toast"
+msgid "App password deleted"
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84
+msgid "App password name must be unique"
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62
+msgid "App password names can only contain letters, numbers, spaces, dashes, and underscores"
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80
+msgid "App password names must be at least 4 characters long"
+msgstr ""
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75
+msgid "App passwords"
+msgstr ""
+
+#: src/Navigation.tsx:350
+#: src/screens/Settings/AppPasswords.tsx:51
+msgid "App Passwords"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:155
+#: src/components/moderation/LabelsOnMeDialog.tsx:158
+msgid "Appeal"
+msgstr ""
+
+#. placeholder {0}: strings.name
+#: src/components/moderation/LabelsOnMeDialog.tsx:282
+msgid "Appeal \"{0}\" label"
+msgstr ""
+
+#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93
+msgid "Appeal livestream suspension"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:272
+#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
+#: src/screens/Messages/components/ChatDisabled.tsx:125
+msgctxt "toast"
+msgid "Appeal submitted"
+msgstr ""
+
+#: src/screens/Takendown.tsx:114
+#: src/screens/Takendown.tsx:140
+msgid "Appeal suspension"
+msgstr ""
+
+#: src/screens/Takendown.tsx:117
+msgid "Appeal Suspension"
+msgstr ""
+
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
+msgid "Appeal this decision"
+msgstr ""
+
+#: src/Navigation.tsx:390
+#: src/screens/Settings/AppearanceSettings.tsx:73
+#: src/screens/Settings/Settings.tsx:225
+#: src/screens/Settings/Settings.tsx:228
+msgid "Appearance"
+msgstr ""
+
+#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:52
+#: src/screens/Home/NoFeedsPinned.tsx:94
+msgid "Apply default recommended feeds"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:506
+#: src/screens/Settings/Settings.tsx:508
+msgid "Apply Pull Request"
+msgstr ""
+
+#. placeholder {0}: niceDate(i18n, createdAt, 'medium')
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630
+msgid "Archived from {0}"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639
+msgid "Archived post"
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:327
+msgid "Are you really, really sure?"
+msgstr ""
+
+#. placeholder {0}: appPassword.name
+#: src/screens/Settings/AppPasswords.tsx:210
+msgid "Are you sure you want to delete the app password \"{0}\"?"
+msgstr ""
+
+#: src/components/dms/MessageOverlays.tsx:183
+msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:684
+msgid "Are you sure you want to delete this starter pack?"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:99
+#: src/screens/Profile/Header/EditProfileDialog.tsx:77
+msgid "Are you sure you want to discard your changes?"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
+msgid "Are you sure you want to leave {groupName}?"
+msgstr ""
+
+#: src/components/dms/LeaveConvoPrompt.tsx:57
+msgid "Are you sure you want to leave this conversation?"
+msgstr ""
+
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
+
+#: src/components/FeedCard.tsx:374
+msgid "Are you sure you want to remove this from your feeds?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1590
+msgid "Are you sure you'd like to discard this post?"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:452
+msgid "Are you sure?"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:349
+msgid "Are you writing in <0>{suggestedLanguageName}0>?"
+msgstr ""
+
+#: src/lib/interests.ts:53
+msgid "Art"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:167
+msgid "Artistic or non-erotic nudity."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609
+msgid "Assign topic for algo"
+msgstr ""
+
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:209
+msgid "At least 8 characters"
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:338
+msgid "AT Protocol FAQ"
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48
+msgctxt "Name of app icon variant"
+msgid "Aurora"
+msgstr ""
+
+#: src/components/BotAccountAlert.tsx:32
+#: src/components/BotBadge.tsx:63
+msgid "Automated account"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:157
+#: src/screens/Settings/AccountSettings.tsx:160
+msgid "Automation label"
+msgstr ""
+
+#: src/Navigation.tsx:406
+#: src/screens/Settings/AutomationLabelSettings.tsx:103
+msgid "Automation Label"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:118
+#: src/screens/Settings/ContentAndMediaSettings.tsx:124
+msgid "Autoplay videos and GIFs"
+msgstr ""
+
+#. Shown next to an available username suggestion in the account creation flow
+#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:73
+msgid "Available"
+msgstr ""
+
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
+#: src/components/moderation/LabelsOnMeDialog.tsx:334
+#: src/components/moderation/LabelsOnMeDialog.tsx:335
+#: src/screens/Login/ChooseAccountForm.tsx:98
+#: src/screens/Login/ChooseAccountForm.tsx:102
+#: src/screens/Login/ForgotPasswordForm.tsx:127
+#: src/screens/Login/ForgotPasswordForm.tsx:132
+#: src/screens/Login/LoginForm.tsx:317
+#: src/screens/Login/LoginForm.tsx:322
+#: src/screens/Login/SetNewPasswordForm.tsx:172
+#: src/screens/Login/SetNewPasswordForm.tsx:178
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
+#: src/screens/Profile/Header/Shell.tsx:174
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
+#: src/screens/Signup/BackNextButtons.tsx:42
+#: src/screens/StarterPack/Wizard/index.tsx:315
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:87
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:93
+msgid "Back"
+msgstr ""
+
+#: src/screens/Messages/Inbox.tsx:231
+msgid "Back to Chats"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:216
+msgid "Banned activities or security violations"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:227
+msgid "Banned user returning"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:259
+msgid "Based on your device's location, we think you're in <0>{region}0>. This estimate may be inaccurate if you're using a VPN."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:265
+msgid "Based on your network, we think you're in <0>{region}0>. This estimate may be inaccurate if you're using a VPN."
+msgstr ""
+
+#: src/view/screens/Lists.tsx:35
+#: src/view/screens/ModerationModlists.tsx:35
+msgid "Before creating a list, you must first verify your email."
+msgstr ""
+
+#: src/lib/hooks/useOpenComposer.tsx:14
+msgid "Before creating a post or replying, you must first verify your email."
+msgstr ""
+
+#: src/components/dialogs/StarterPackDialog.tsx:72
+#: src/components/StarterPack/ProfileStarterPacks.tsx:264
+#: src/components/StarterPack/ProfileStarterPacks.tsx:274
+#: src/view/screens/Profile.tsx:350
+msgid "Before creating a starter pack, you must first verify your email."
+msgstr ""
+
+#: src/screens/Messages/components/RequestButtons.tsx:259
+msgid "Before you can accept this chat request, you must first verify your email."
+msgstr ""
+
+#: src/components/activity-notifications/SubscribeProfileButton.tsx:59
+msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
+#: src/components/dms/MessageProfileButton.tsx:60
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
+msgid "Before you can message another user, you must first verify your email."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318
+msgid "Begin"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312
+msgid "Begin age assurance process"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51
+msgid "Begin the age assurance process by completing the fields below."
+msgstr ""
+
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:99
+msgid "Beta Feature"
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:163
+msgid "Birthdate"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:147
+msgid "Birthday"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
+#: src/screens/Messages/components/ChatStatusInfo.tsx:67
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
+#: src/view/com/profile/ProfileMenu.tsx:563
+msgid "Block"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211
+msgid "Block {displayName}"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749
+#: src/screens/Messages/components/RequestButtons.tsx:149
+#: src/screens/Messages/components/RequestButtons.tsx:151
+#: src/view/com/profile/ProfileMenu.tsx:469
+#: src/view/com/profile/ProfileMenu.tsx:476
+msgid "Block account"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
+msgid "Block account?"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850
+#: src/view/com/profile/ProfileMenu.tsx:546
+msgid "Block Account?"
+msgstr ""
+
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:91
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:94
+msgid "Block accounts"
+msgstr ""
+
+#: src/components/dms/AfterReportDialog.tsx:148
+msgid "Block and delete"
+msgstr ""
+
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:167
+msgctxt "button"
+msgid "Block and leave"
+msgstr ""
+
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
+msgid "Block list"
+msgstr ""
+
+#: src/screens/Messages/components/ChatStatusInfo.tsx:67
+msgid "Block or report"
+msgstr ""
+
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:114
+msgid "Block these accounts?"
+msgstr ""
+
+#: src/components/dms/AfterReportConversationDialog.tsx:221
+#: src/components/dms/AfterReportConversationDialog.tsx:224
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
+msgid "Block user"
+msgstr ""
+
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:182
+msgctxt "button"
+msgid "Block user"
+msgstr ""
+
+#: src/components/dms/AfterReportDialog.tsx:185
+msgid "Block user and/or delete this conversation"
+msgstr ""
+
+#: src/components/dms/AfterReportConversationDialog.tsx:217
+msgid "Block user and/or leave this conversation"
+msgstr ""
+
+#: src/components/Post/Embed/index.tsx:216
+msgid "Blocked"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:329
+msgid "Blocked accounts"
+msgstr ""
+
+#: src/Navigation.tsx:191
+#: src/view/screens/ModerationBlockedAccounts.tsx:95
+msgid "Blocked Accounts"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
+#: src/view/com/profile/ProfileMenu.tsx:558
+msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
+msgstr ""
+
+#: src/view/screens/ModerationBlockedAccounts.tsx:181
+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 ""
+
+#: src/screens/Profile/Sections/Labels.tsx:203
+msgid "Blocking does not prevent this labeler from placing labels on your account."
+msgstr ""
+
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:116
+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:555
+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 ""
+
+#: src/view/com/auth/SplashScreen.web.tsx:174
+msgid "Blog"
+msgstr ""
+
+#: src/components/dialogs/ServerInput.tsx:144
+#: src/components/dialogs/ServerInput.tsx:146
+msgid "Bluesky"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655
+msgid "Bluesky cannot confirm the authenticity of the claimed date."
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165
+msgctxt "Name of app icon variant"
+msgid "Bluesky Classic™"
+msgstr ""
+
+#: src/components/contacts/screens/GetContacts.tsx:235
+msgid "Bluesky helps friends find each other by creating an encoded digital fingerprint, called a \"hash\", and then looking for matching hashes."
+msgstr ""
+
+#: src/components/dialogs/ServerInput.tsx:214
+msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server."
+msgstr ""
+
+#: src/components/dialogs/ServerInput.tsx:162
+msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option."
+msgstr ""
+
+#: src/components/ProgressGuide/List.tsx:117
+msgid "Bluesky is better with friends!"
+msgstr ""
+
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:43
+msgid "Bluesky is more fun with friends"
+msgstr ""
+
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
+msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:315
+msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>"
+msgstr ""
+
+#: src/screens/Takendown.tsx:213
+msgid "Bluesky Social Terms of Service"
+msgstr ""
+
+#: src/screens/Settings/FindContactsSettings.tsx:549
+msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:340
+msgid "Bluesky will choose a set of recommended accounts from people in your network."
+msgstr ""
+
+#: src/screens/Settings/components/PwiOptOut.tsx:100
+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:136
+msgid "Bluesky will proactively verify notable and authentic accounts."
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/index.tsx:97
+msgid "Bluesky+"
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/index.tsx:100
+msgid "Bluesky+ icons"
+msgstr ""
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:56
+msgid "Blur images"
+msgstr ""
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:54
+msgid "Blur images and filter from feeds"
+msgstr ""
+
+#: src/lib/interests.ts:54
+msgid "Books"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:215
+msgid "Breaking site rules"
+msgstr ""
+
+#: src/view/com/feeds/ProfileFeedgens.tsx:167
+#: src/view/com/feeds/ProfileFeedgens.tsx:168
+msgid "Browse custom feeds"
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:535
+msgid "Browse more accounts"
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:665
+msgid "Browse more feeds on the Explore page"
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:646
+#: src/components/FeedInterstitials.tsx:649
+msgid "Browse more suggestions"
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:674
+msgid "Browse more suggestions on the Explore page"
+msgstr ""
+
+#: src/screens/Home/NoFeedsPinned.tsx:104
+#: src/screens/Home/NoFeedsPinned.tsx:110
+msgid "Browse other feeds"
+msgstr ""
+
+#: src/components/TrendingTopics.tsx:179
+msgid "Browse posts about {displayName}"
+msgstr ""
+
+#: src/components/TrendingTopics.tsx:187
+msgid "Browse posts tagged with {displayName}"
+msgstr ""
+
+#: src/components/TrendingTopics.tsx:196
+msgid "Browse starter pack {displayName}"
+msgstr ""
+
+#. placeholder {0}: trend.displayName
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83
+msgid "Browse topic {0}"
+msgstr ""
+
+#: src/components/TrendingTopics.tsx:233
+msgid "Browse topic {displayName}"
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.web.tsx:169
+msgid "Business"
+msgstr ""
+
+#: src/screens/Bookmarks/index.tsx:302
+msgid "Button to go back to the home timeline"
+msgstr ""
+
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#. placeholder {0}: sanitizeHandle(handle, '@')
+#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
+#: src/components/LabelingServiceCard/index.tsx:62
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
+#: src/screens/Search/components/StarterPackCard.tsx:107
+#: src/screens/Search/Explore.tsx:971
+msgid "By {0}"
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
+msgid "By <0>{0}0>"
+msgstr ""
+
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
+#. placeholder {0}: authorProfile.handle
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
+msgid "by <0>@{0}0>"
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182
+msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates."
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:297
+msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more0>"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:76
+msgid "By creating an account you agree to the <0>Privacy Policy0>."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:43
+msgid "By creating an account you agree to the <0>Terms of Service0> and <1>Privacy Policy1>."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:63
+msgid "By creating an account you agree to the <0>Terms of Service0>."
+msgstr ""
+
+#: src/screens/Search/components/StarterPackCard.tsx:106
+msgid "By you"
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
+msgid "Camera"
+msgstr ""
+
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:213
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139
+#: src/components/contacts/screens/GetContacts.tsx:292
+#: src/components/contacts/screens/GetContacts.tsx:297
+#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
+#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
+#: src/components/dialogs/InAppBrowserConsent.tsx:99
+#: src/components/dialogs/InAppBrowserConsent.tsx:105
+#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
+#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:200
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:291
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:299
+#: src/components/Menu/index.tsx:367
+#: src/components/PostControls/RepostButton.tsx:210
+#: src/components/Prompt.tsx:152
+#: src/components/Prompt.tsx:154
+#: src/components/SendErrorReportDialog.tsx:98
+#: src/components/SendErrorReportDialog.tsx:102
+#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:152
+#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:157
+#: src/features/liveNow/components/GoLiveDialog.tsx:248
+#: src/features/liveNow/components/GoLiveDialog.tsx:254
+#: src/lib/media/picker.tsx:38
+#: src/screens/Deactivated.tsx:150
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
+#: src/screens/Profile/Header/EditProfileDialog.tsx:215
+#: src/screens/Profile/Header/EditProfileDialog.tsx:223
+#: src/screens/Search/Shell.tsx:405
+#: src/screens/Settings/AppIconSettings/index.tsx:42
+#: src/screens/Settings/AppIconSettings/index.tsx:228
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:80
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:87
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:248
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:254
+#: src/screens/Settings/Settings.tsx:300
+#: src/screens/Takendown.tsx:102
+#: src/screens/Takendown.tsx:105
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
+#: src/view/shell/desktop/LeftNav.tsx:228
+msgid "Cancel"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.tsx:205
+msgid "Cancel quote post"
+msgstr ""
+
+#: src/screens/Deactivated.tsx:144
+msgid "Cancel reactivation and sign out"
+msgstr ""
+
+#: src/screens/Search/Shell.tsx:396
+msgid "Cancel search"
+msgstr ""
+
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
+#: src/state/shell/composer/index.tsx:105
+msgid "Cannot interact with a blocked user"
+msgstr ""
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:156
+msgid "Captions (.vtt)"
+msgstr ""
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:41
+#: src/view/com/composer/videos/SubtitleDialog.tsx:57
+msgid "Captions & alt text"
+msgstr ""
+
+#: src/components/images/Gallery/index.tsx:263
+msgid "carousel"
+msgstr ""
+
+#: src/components/RichTextTag.tsx:53
+msgid "Cashtag {tag}"
+msgstr ""
+
+#: src/components/Post/Translated/index.tsx:439
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
+msgid "Change"
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/index.tsx:37
+msgid "Change app icon"
+msgstr ""
+
+#. placeholder {0}: icon.name
+#. placeholder {0}: next.name
+#: src/screens/Settings/AppIconSettings/index.tsx:36
+#: src/screens/Settings/AppIconSettings/index.tsx:224
+msgid "Change app icon to \"{0}\""
+msgstr ""
+
+#: src/components/AppLanguageDropdown.tsx:40
+msgid "Change app language"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:96
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:100
+msgid "Change Handle"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:445
+msgid "Change moderation service"
+msgstr ""
+
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:262
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:268
+msgid "Change password"
+msgstr ""
+
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:165
+msgid "Change password dialog"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:312
+msgid "Change report category"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:390
+msgid "Change report reason"
+msgstr ""
+
+#: src/components/Post/Translated/index.tsx:424
+msgid "Change the source language"
+msgstr ""
+
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:58
+msgid "Change your password"
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/index.tsx:219
+msgid "Changes app icon"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:50
+#: src/components/forms/HostingProvider.tsx:70
+msgid "Changes hosting provider"
+msgstr ""
+
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:179
+msgid "Changes saved"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:164
+msgid "Changes to the starter pack will not be reflected in the list after creation. The list will be an independent copy."
+msgstr ""
+
+#: src/lib/hooks/useNotificationHandler.ts:133
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
+#: src/view/shell/Drawer.tsx:469
+msgid "Chat"
+msgstr ""
+
+#: src/screens/Messages/components/RequestButtons.tsx:84
+#: src/screens/Messages/components/RequestButtons.tsx:330
+msgctxt "toast"
+msgid "Chat deleted"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:108
+msgid "Chat ended"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:104
+msgid "Chat locked"
+msgstr ""
+
+#: src/lib/hooks/useNotificationHandler.ts:148
+msgid "Chat messages - silent"
+msgstr ""
+
+#: src/lib/hooks/useNotificationHandler.ts:139
+msgid "Chat messages - sound"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:216
+msgctxt "toast"
+msgid "Chat muted"
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
+msgid "Chat recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:505
+msgid "Chat request inbox"
+msgstr ""
+
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
+msgid "Chat requests"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:84
+#: src/Navigation.tsx:500
+#: src/screens/Messages/ChatList.tsx:83
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
+msgid "Chat settings"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:131
+msgid "Chat Settings"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:115
+msgid "Chat title changed"
+msgstr ""
+
+#. placeholder {0}: data.newName
+#: src/components/dms/getSystemMessageInfo.ts:114
+msgid "Chat title changed to {0}"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:106
+msgid "Chat unlocked"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:218
+msgctxt "toast"
+msgid "Chat unmuted"
+msgstr ""
+
+#: src/screens/Messages/ChatList.tsx:77
+#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
+msgid "Chats"
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:233
+msgid "Check <0>{currentEmail}0> for an email with the confirmation code to enter below:"
+msgstr ""
+
+#: src/screens/SignupQueued.tsx:79
+#: src/screens/SignupQueued.tsx:83
+msgid "Check my status"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:307
+msgid "Check your email for a sign in code and enter it here."
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:161
+msgid "Child safety"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:165
+msgid "Child Sexual Abuse Material (CSAM)"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:401
+msgid "Choose domain verification method"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:205
+msgid "Choose Feeds"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:349
+msgid "Choose for me"
+msgstr ""
+
+#: src/components/dialogs/LanguageSelectDialog.tsx:199
+msgid "Choose languages"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:201
+msgid "Choose People"
+msgstr ""
+
+#: src/view/com/composer/select-language/PostLanguageSelect.tsx:75
+#: src/view/com/composer/select-language/PostLanguageSelect.tsx:136
+msgid "Choose post languages"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108
+msgid "Choose this color as your avatar"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
+msgid "Choose who can join this group chat and how."
+msgstr ""
+
+#: src/components/contacts/components/InviteInfo.tsx:57
+msgid "Choose who to invite"
+msgstr ""
+
+#: src/components/dialogs/ServerInput.tsx:134
+msgid "Choose your account provider"
+msgstr ""
+
+#: src/view/screens/Feeds.tsx:726
+msgid "Choose your own timeline! Feeds built by the community help you find content you love."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:268
+msgid "Choose your password"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:192
+msgid "Choose your username"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:498
+msgid "Clear all storage data"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:500
+msgid "Clear all storage data (restart after this)"
+msgstr ""
+
+#. Accessibility label for the X button inside the search input that clears the typed query and returns to the trending feed.
+#: src/features/gifPicker/components/GifPickerHeader.tsx:67
+msgid "Clear GIF search"
+msgstr ""
+
+#: src/screens/Settings/AboutSettings.tsx:127
+#: src/screens/Settings/AboutSettings.tsx:131
+msgid "Clear image cache"
+msgstr ""
+
+#: src/components/forms/SearchInput.tsx:87
+msgid "Clear search query"
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:88
+msgid "Click for information"
+msgstr ""
+
+#: src/view/screens/Support.tsx:35
+msgid "click here"
+msgstr ""
+
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
+msgid "Click here to add people to this group chat"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:129
+msgid "Click here to contact our support team"
+msgstr ""
+
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
+msgid "Click here to create or manage an invite link for this group chat"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:263
+msgid "Click here to delete your account"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:254
+msgid "Click here to log out"
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:263
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:272
+msgid "Click here to resend the email"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
+msgid "Click here to restart the verification process."
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:109
+#: src/ageAssurance/components/NoAccessScreen.tsx:231
+msgid "Click here to update your birthdate"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
+msgid "Click here to update your email"
+msgstr ""
+
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+msgid "Click here to view the invite link for this group chat"
+msgstr ""
+
+#. placeholder {0}: isCashtag ? tag : `#${tag}`
+#: src/components/RichTextTag.tsx:56
+msgid "Click to open tag menu for {0}"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:541
+msgid "Click to retry failed message"
+msgstr ""
+
+#. Visible label of the button that dismisses the GIF picker error dialog.
+#: src/ageAssurance/components/RedirectOverlay.tsx:265
+#: src/ageAssurance/components/RedirectOverlay.tsx:271
+#: src/ageAssurance/components/RedirectOverlay.tsx:321
+#: src/ageAssurance/components/RedirectOverlay.tsx:327
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:174
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:180
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
+#: src/components/dialogs/LanguageSelectDialog.tsx:359
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
+#: src/components/dialogs/SearchablePeopleList.tsx:340
+#: src/components/dialogs/StarterPackDialog.tsx:187
+#: src/components/dms/AddMembersFlow.tsx:377
+#: src/components/dms/AfterReportConversationDialog.tsx:91
+#: src/components/dms/AfterReportConversationDialog.tsx:96
+#: src/components/dms/AfterReportConversationDialog.tsx:247
+#: src/components/dms/AfterReportConversationDialog.tsx:252
+#: src/components/dms/AfterReportDialog.tsx:94
+#: src/components/dms/AfterReportDialog.tsx:99
+#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
+#: src/components/dms/EmojiPopup.android.tsx:59
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
+#: src/components/NewskieDialog.tsx:169
+#: src/components/NewskieDialog.tsx:175
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
+#: src/components/ProgressGuide/FollowDialog.tsx:462
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
+#: src/components/verification/VerificationsDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
+#: src/components/WhoCanReply.tsx:236
+#: src/components/WhoCanReply.tsx:243
+#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
+#: src/features/liveNow/components/EditLiveDialog.tsx:217
+#: src/features/liveNow/components/EditLiveDialog.tsx:223
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
+#: src/view/com/feeds/MissingFeed.tsx:211
+#: src/view/com/feeds/MissingFeed.tsx:218
+msgid "Close"
+msgstr ""
+
+#: src/components/Dialog/index.web.tsx:127
+#: src/components/Dialog/index.web.tsx:313
+msgid "Close active dialog"
+msgstr ""
+
+#: src/screens/Login/PasswordUpdatedForm.tsx:32
+msgid "Close alert"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
+#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
+msgid "Close bottom drawer"
+msgstr ""
+
+#. Accessibility label for the button that dismisses the GIF picker error dialog.
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:223
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:229
+#: src/components/dialogs/LanguageSelectDialog.tsx:221
+#: src/components/dialogs/LanguageSelectDialog.tsx:322
+#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
+#: src/components/verification/VerificationsDialog.tsx:138
+#: src/components/verification/VerifierDialog.tsx:140
+#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
+msgid "Close dialog"
+msgstr ""
+
+#: src/view/shell/index.web.tsx:129
+msgid "Close drawer menu"
+msgstr ""
+
+#: src/components/Lightbox/chrome/Header.tsx:47
+msgid "Close image"
+msgstr ""
+
+#: src/components/Lightbox/Lightbox.web.tsx:73
+#: src/components/Lightbox/Lightbox.web.tsx:334
+msgid "Close image viewer"
+msgstr ""
+
+#: src/components/ContextMenu/Backdrop.ios.tsx:53
+#: src/components/ContextMenu/Backdrop.ios.tsx:79
+#: src/components/ContextMenu/Backdrop.tsx:45
+#: src/components/Lightbox/chrome/ImageMenu.tsx:85
+msgid "Close menu"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
+#: src/components/Menu/index.tsx:361
+msgid "Close this dialog"
+msgstr ""
+
+#: src/components/WelcomeModal.tsx:217
+msgid "Close welcome modal"
+msgstr ""
+
+#: src/screens/Login/PasswordUpdatedForm.tsx:33
+msgid "Closes password update alert"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1676
+msgid "Closes post composer and discards post draft"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:592
+msgid "Collapse list of users"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:921
+msgid "Collapses list of users for a given notification"
+msgstr ""
+
+#: src/components/dialogs/Embed.tsx:150
+#: src/screens/Settings/AppearanceSettings.tsx:81
+msgid "Color mode"
+msgstr ""
+
+#: src/components/dialogs/Embed.tsx:147
+msgid "Color theme"
+msgstr ""
+
+#: src/lib/interests.ts:55
+msgid "Comedy"
+msgstr ""
+
+#: src/lib/interests.ts:56
+msgid "Comics"
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
+#: src/Navigation.tsx:340
+#: src/view/screens/CommunityGuidelines.tsx:28
+msgid "Community Guidelines"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished/index.tsx:329
+msgid "Complete onboarding and start using your account"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:194
+msgid "Complete the challenge"
+msgstr ""
+
+#: src/lib/hotkeys/index.tsx:66
+#: src/view/com/feeds/ComposerPrompt.tsx:147
+#: src/view/shell/desktop/LeftNav.tsx:587
+msgid "Compose new post"
+msgstr ""
+
+#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
+#: src/view/com/composer/Composer.tsx:1552
+msgid "Compose posts up to {0, plural, other {# characters}} in length"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadComposePrompt.tsx:63
+msgid "Compose reply"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2514
+msgid "Compressing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2516
+msgid "Compressing video..."
+msgstr ""
+
+#: src/components/moderation/LabelPreference.tsx:88
+msgid "Configure content filtering setting for category: {name}"
+msgstr ""
+
+#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:37
+msgid "Configure live event banner"
+msgstr ""
+
+#: src/components/moderation/LabelPreference.tsx:254
+msgid "Configured in <0>moderation settings0>."
+msgstr ""
+
+#: src/components/Prompt.tsx:211
+#: src/components/Prompt.tsx:214
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:186
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:189
+msgid "Confirm"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
+#: src/screens/Login/LoginForm.tsx:284
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:244
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:145
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:151
+msgid "Confirmation code"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:140
+#: src/screens/Login/LoginForm.tsx:340
+msgid "Connecting to service..."
+msgstr ""
+
+#: src/ageAssurance/components/RedirectOverlay.tsx:297
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209
+msgid "Connection issue"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:334
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:146
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:31
+msgid "Contact our moderation team"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:127
+msgid "Contact our support team"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156
+#: src/screens/Signup/index.tsx:233
+#: src/screens/Signup/index.tsx:236
+msgid "Contact support"
+msgstr ""
+
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65
+#: src/screens/Settings/FindContactsSettings.tsx:157
+msgid "Contact sync is not available on this device, as the app is unable to access your contacts."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98
+msgid "Contact us"
+msgstr ""
+
+#: src/screens/Settings/FindContactsSettings.tsx:505
+msgid "Contacts imported"
+msgstr ""
+
+#: src/screens/Settings/FindContactsSettings.tsx:478
+msgid "Contacts removed"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:53
+msgid "Content & Media"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:205
+#: src/screens/Settings/Settings.tsx:208
+msgid "Content and media"
+msgstr ""
+
+#: src/Navigation.tsx:443
+msgid "Content and Media"
+msgstr ""
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:18
+msgid "Content Blocked"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:362
+msgid "Content filters"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreRecommendations.tsx:60
+msgid "Content from across the network we think you might like."
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:177
+msgid "Content languages"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:86
+#: src/lib/moderation/useModerationCauseDescription.ts:83
+msgid "Content Not Available"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:192
+msgid "Content promoting or depicting self-harm"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:54
+#: src/components/moderation/ScreenHider.tsx:100
+#: src/lib/moderation/useGlobalLabelStrings.ts:22
+#: src/lib/moderation/useModerationCauseDescription.ts:46
+msgid "Content Warning"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:61
+msgid "Content warnings"
+msgstr ""
+
+#: src/components/Menu/index.web.tsx:91
+msgid "Context menu backdrop, click to close the menu."
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
+#: src/screens/Onboarding/StepInterests/index.tsx:93
+#: src/screens/Onboarding/StepProfile/index.tsx:304
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
+#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
+msgid "Continue"
+msgstr ""
+
+#. placeholder {0}: account.handle
+#: src/components/AccountList.tsx:134
+msgid "Continue as {0} (currently signed in)"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28
+msgid "Continue thread"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:64
+msgid "Continue thread..."
+msgstr ""
+
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
+msgid "Continue to group name"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:90
+#: src/screens/Onboarding/StepProfile/index.tsx:301
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
+#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
+#: src/screens/Signup/BackNextButtons.tsx:61
+msgid "Continue to next step"
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:67
+msgid "Conversation"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:329
+msgid "Conversation deleted"
+msgstr ""
+
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
+msgctxt "toast"
+msgid "Conversation deleted"
+msgstr ""
+
+#: src/components/dms/AfterReportConversationDialog.tsx:172
+#: src/components/dms/AfterReportConversationDialog.tsx:179
+msgctxt "toast"
+msgid "Conversation left"
+msgstr ""
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
+#: src/screens/Settings/AboutSettings.tsx:162
+msgid "Copied build version to clipboard"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
+#: src/components/PostControls/DiscoverDebug.tsx:36
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
+#: src/lib/sharing.ts:24
+#: src/lib/sharing.ts:42
+msgid "Copied to clipboard"
+msgstr ""
+
+#: src/components/dialogs/Embed.tsx:197
+#: src/screens/Messages/components/CopyTextButton.tsx:71
+#: src/screens/Settings/components/CopyButton.tsx:66
+msgid "Copied!"
+msgstr ""
+
+#: src/screens/Settings/AboutSettings.tsx:138
+msgid "Copies build version to clipboard"
+msgstr ""
+
+#: src/components/StarterPack/QrCodeDialog.tsx:195
+msgid "Copy"
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196
+msgid "Copy App Password"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:506
+#: src/view/com/profile/ProfileMenu.tsx:509
+msgid "Copy at:// URI"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157
+msgid "Copy author DID"
+msgstr ""
+
+#: src/components/dialogs/Embed.tsx:186
+#: src/components/dialogs/Embed.tsx:202
+msgid "Copy code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:504
+#: src/view/com/profile/ProfileMenu.tsx:515
+#: src/view/com/profile/ProfileMenu.tsx:518
+msgid "Copy DID"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:436
+msgid "Copy host"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:74
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/screens/StarterPack/StarterPackScreen.tsx:644
+msgid "Copy link"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:122
+msgid "Copy Link"
+msgstr ""
+
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:164
+msgid "Copy link to list"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91
+msgid "Copy link to post"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:282
+#: src/view/com/profile/ProfileMenu.tsx:293
+msgid "Copy link to profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:637
+msgid "Copy link to starter pack"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
+msgid "Copy message text"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148
+msgid "Copy post at:// URI"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564
+msgid "Copy post text"
+msgstr ""
+
+#: src/components/StarterPack/QrCodeDialog.tsx:181
+msgid "Copy QR code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:457
+msgid "Copy TXT record value"
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
+#: src/Navigation.tsx:345
+#: src/view/screens/CopyrightPolicy.tsx:25
+msgid "Copyright Policy"
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:42
+msgid "Could not connect to custom feed"
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:134
+msgid "Could not connect to feed service"
+msgstr ""
+
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
+msgid "Could not fetch post"
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:183
+msgid "Could not find profile"
+msgstr ""
+
+#: src/screens/Settings/FindContactsSettings.tsx:212
+#: src/screens/Settings/FindContactsSettings.tsx:403
+msgid "Could not follow all matches - please check your network connection."
+msgstr ""
+
+#. placeholder {0}: cleanError(err)
+#: src/screens/Settings/FindContactsSettings.tsx:218
+#: src/screens/Settings/FindContactsSettings.tsx:409
+msgid "Could not follow all matches. {0}"
+msgstr ""
+
+#: src/components/dms/AfterReportConversationDialog.tsx:158
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
+msgid "Could not leave chat"
+msgstr ""
+
+#: src/screens/Profile/ProfileFeed/index.tsx:73
+msgid "Could not load feed"
+msgstr ""
+
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
+#: src/screens/ProfileList/components/ErrorScreen.tsx:27
+#: src/screens/ProfileList/index.tsx:80
+#: src/screens/ProfileList/index.tsx:102
+msgid "Could not load list"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:222
+msgid "Could not mute chat"
+msgstr ""
+
+#: src/view/com/composer/videos/VideoPreview.web.tsx:66
+msgid "Could not process your video"
+msgstr ""
+
+#. placeholder {0}: cleanError(error)
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:295
+msgid "Could not save changes: {0}"
+msgstr ""
+
+#: src/state/queries/notifications/settings.ts:49
+msgid "Could not update notification settings"
+msgstr ""
+
+#. placeholder {0}: cleanError(err)
+#: src/components/contacts/screens/GetContacts.tsx:171
+msgid "Could not upload contacts. {0}"
+msgstr ""
+
+#: src/components/contacts/screens/GetContacts.tsx:165
+msgid "Could not upload contacts. You need to re-verify your phone number to proceed"
+msgstr ""
+
+#. Title of the error screen shown when the GIF provider request fails.
+#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:51
+msgid "Couldn’t load GIFs"
+msgstr ""
+
+#: src/components/InternationalPhoneCodeSelect.tsx:80
+msgid "Country code"
+msgstr ""
+
+#. Text on button to create a new starter pack
+#. Text on button to create a new starter pack
+#: src/components/dialogs/StarterPackDialog.tsx:113
+#: src/components/dialogs/StarterPackDialog.tsx:210
+#: src/components/dms/InitiateChatFlow.tsx:478
+#: src/components/StarterPack/ProfileStarterPacks.tsx:329
+msgid "Create"
+msgstr ""
+
+#: src/view/com/lists/ProfileLists.tsx:166
+#: src/view/com/lists/ProfileLists.tsx:167
+msgid "Create a list"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:620
+msgid "Create a list from this starter pack"
+msgstr ""
+
+#: src/components/StarterPack/QrCodeDialog.tsx:166
+msgid "Create a QR code for a starter pack"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:207
+#: src/components/StarterPack/ProfileStarterPacks.tsx:316
+#: src/Navigation.tsx:536
+msgid "Create a starter pack"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:562
+#: src/view/screens/Profile.tsx:563
+msgid "Create a Starter Pack"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:303
+msgid "Create a starter pack for me"
+msgstr ""
+
+#: src/components/WelcomeModal.tsx:158
+#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
+#: src/screens/Signup/index.tsx:135
+#: src/view/com/auth/SplashScreen.tsx:107
+#: src/view/com/auth/SplashScreen.web.tsx:116
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/NavSignupCard.tsx:48
+#: src/view/shell/NavSignupCard.tsx:53
+msgid "Create account"
+msgstr ""
+
+#: src/components/dialogs/Signin.tsx:87
+#: src/components/dialogs/Signin.tsx:89
+#: src/screens/Hashtag.tsx:235
+#: src/screens/Search/SearchResults.tsx:321
+msgid "Create an account"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317
+msgid "Create an account without using this starter pack"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:317
+msgid "Create an avatar instead"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:214
+msgid "Create another"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:477
+msgid "Create group chat"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:180
+#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:188
+msgid "Create list"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:626
+msgid "Create list from members"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:148
+#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:152
+msgid "Create list from starter pack"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:367
+msgid "Create moderation list"
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:294
+#: src/view/com/auth/SplashScreen.tsx:100
+#: src/view/com/auth/SplashScreen.web.tsx:108
+msgid "Create new account"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:487
+msgid "Create or modify an invite link for this group chat"
+msgstr ""
+
+#. Accessibility label for button to create a moderation report for the selected option
+#. placeholder {0}: option.title
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
+msgid "Create report for {0}"
+msgstr ""
+
+#: src/components/dialogs/StarterPackDialog.tsx:108
+#: src/components/dialogs/StarterPackDialog.tsx:205
+msgid "Create starter pack"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:366
+msgid "Create user list"
+msgstr ""
+
+#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
+#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
+#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
+#: src/screens/Settings/AppPasswords.tsx:174
+msgid "Created {0}"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:131
+msgid "Creator has been blocked"
+msgstr ""
+
+#: src/lib/interests.ts:57
+msgid "Culture"
+msgstr ""
+
+#: src/components/dialogs/ServerInput.tsx:152
+#: src/components/dialogs/ServerInput.tsx:154
+msgid "Custom"
+msgstr ""
+
+#: src/components/dialogs/Embed.tsx:140
+msgid "Customization options"
+msgstr ""
+
+#: src/screens/Onboarding/Layout.tsx:60
+msgid "Customizes your Bluesky experience"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:200
+msgid "Dangerous challenges or activities"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:204
+msgid "Dangerous substances or drug abuse"
+msgstr ""
+
+#: src/components/dialogs/Embed.tsx:164
+#: src/components/dialogs/Embed.tsx:166
+#: src/screens/Settings/AppearanceSettings.tsx:93
+#: src/screens/Settings/AppearanceSettings.tsx:114
+msgid "Dark"
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28
+msgctxt "Name of app icon variant"
+msgid "Dark"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:106
+msgid "Dark theme"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:296
+msgid "Date of birth"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:179
+#: src/screens/Settings/AccountSettings.tsx:184
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73
+msgid "Deactivate account"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:463
+msgid "Debug Moderation"
+msgstr ""
+
+#: src/view/screens/Debug.tsx:75
+msgid "Debug panel"
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:469
+msgid "Decline this language suggestion"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:84
+msgid "Deepfake adult content"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:156
+msgid "Default"
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/index.tsx:73
+msgid "Default icons"
+msgstr ""
+
+#: src/components/dms/MessageOverlays.tsx:184
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
+#: src/screens/Settings/AppPasswords.tsx:213
+#: src/screens/StarterPack/StarterPackScreen.tsx:615
+#: src/screens/StarterPack/StarterPackScreen.tsx:715
+#: src/screens/StarterPack/StarterPackScreen.tsx:794
+msgid "Delete"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:189
+#: src/screens/Settings/AccountSettings.tsx:194
+msgid "Delete account"
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:183
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:230
+msgid "Delete account “{currentHandle}”"
+msgstr ""
+
+#: src/screens/Settings/AppPasswords.tsx:187
+msgid "Delete app password"
+msgstr ""
+
+#: src/screens/Settings/AppPasswords.tsx:208
+msgid "Delete app password?"
+msgstr ""
+
+#: src/screens/Messages/components/RequestButtons.tsx:343
+#: src/screens/Messages/components/RequestButtons.tsx:349
+msgid "Delete chat"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:470
+msgid "Delete chat declaration record"
+msgstr ""
+
+#: src/screens/Settings/FindContactsSettings.tsx:546
+msgid "Delete contacts"
+msgstr ""
+
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
+#: src/screens/Messages/components/RequestButtons.tsx:142
+#: src/screens/Messages/components/RequestButtons.tsx:144
+msgid "Delete conversation"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:167
+msgid "Delete for me"
+msgstr ""
+
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:199
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:202
+msgid "Delete list"
+msgstr ""
+
+#: src/components/dms/MessageOverlays.tsx:182
+msgid "Delete message"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:164
+msgid "Delete message for me"
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:309
+msgid "Delete my account"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
+#: src/view/com/composer/Composer.tsx:1564
+msgid "Delete post"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:609
+#: src/screens/StarterPack/StarterPackScreen.tsx:785
+msgid "Delete starter pack"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:681
+msgid "Delete starter pack?"
+msgstr ""
+
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:270
+msgid "Delete this list?"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800
+msgid "Delete this post?"
+msgstr ""
+
+#: src/components/Post/Embed/index.tsx:209
+msgid "Deleted"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
+#: src/screens/Messages/ConversationSettings/Member.tsx:75
+msgid "Deleted Account"
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:286
+msgid "Deleted by Plivo after verification"
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:43
+#: src/view/com/feeds/MissingFeed.tsx:76
+#: src/view/com/feeds/MissingFeed.tsx:128
+#: src/view/com/feeds/MissingFeed.tsx:136
+msgid "Deleted list"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:453
+#: src/components/SendErrorReportDialog.tsx:78
+#: src/screens/Profile/Header/EditProfileDialog.tsx:360
+#: src/screens/Profile/Header/EditProfileDialog.tsx:367
+msgid "Description"
+msgstr ""
+
+#: src/components/SendErrorReportDialog.tsx:82
+msgid "Description (1000 characters max)"
+msgstr ""
+
+#: src/view/com/composer/GifAltText.tsx:156
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:124
+msgid "Descriptive alt text"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701
+msgid "Detach quote"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836
+msgid "Detach quote post?"
+msgstr ""
+
+#: src/screens/Settings/AboutSettings.tsx:151
+msgctxt "toast"
+msgid "Developer mode disabled"
+msgstr ""
+
+#: src/screens/Settings/AboutSettings.tsx:145
+msgctxt "toast"
+msgid "Developer mode enabled"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:282
+#: src/screens/Settings/Settings.tsx:285
+msgid "Developer options"
+msgstr ""
+
+#: src/lib/translation/index.tsx:303
+msgid "Device failed to translate :("
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:222
+msgid "Dialog: adjust who can interact with this post"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:110
+msgid "Dim"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
+msgid "Disable"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
+msgid "Disable 2FA"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414
+msgid "Disable captions"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
+msgid "Disable email 2FA"
+msgstr ""
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:90
+msgid "Disable Email 2FA"
+msgstr ""
+
+#: src/screens/Settings/AccessibilitySettings.tsx:90
+#: src/screens/Settings/AccessibilitySettings.tsx:95
+msgid "Disable haptic feedback"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
+msgid "Disable link"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:628
+msgid "Disable quote posts of this post"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:465
+msgid "Disable replies entirely"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
+msgid "Disable this invite link?"
+msgstr ""
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:35
+#: src/lib/moderation/useLabelBehaviorDescription.ts:45
+#: src/lib/moderation/useLabelBehaviorDescription.ts:71
+#: src/screens/Moderation/index.tsx:402
+msgid "Disabled"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
+#: src/screens/Profile/Header/EditProfileDialog.tsx:79
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
+#: src/view/com/composer/drafts/DraftItem.tsx:242
+#: src/view/com/composer/drafts/DraftsButton.tsx:131
+msgid "Discard"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:98
+#: src/screens/Profile/Header/EditProfileDialog.tsx:76
+msgid "Discard changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1345
+#: src/view/com/composer/drafts/DraftItem.tsx:239
+#: src/view/com/composer/drafts/DraftsButton.tsx:98
+msgid "Discard draft?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
+msgid "Discard post?"
+msgstr ""
+
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
+msgid "Disconnect Germ DM"
+msgstr ""
+
+#: src/screens/Settings/components/PwiOptOut.tsx:88
+#: src/screens/Settings/components/PwiOptOut.tsx:92
+msgid "Discourage apps from showing my account to logged-out users"
+msgstr ""
+
+#: src/view/com/posts/FollowingEmptyState.tsx:64
+#: src/view/com/posts/FollowingEmptyState.tsx:69
+#: src/view/com/posts/FollowingEndOfFeed.tsx:65
+#: src/view/com/posts/FollowingEndOfFeed.tsx:70
+msgid "Discover new custom feeds"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:453
+msgid "Discover new feeds"
+msgstr ""
+
+#: src/view/screens/Feeds.tsx:723
+msgid "Discover New Feeds"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:408
+msgid "Dismiss"
+msgstr ""
+
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
+msgid "Dismiss banner"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2435
+msgid "Dismiss error"
+msgstr ""
+
+#: src/components/ProgressGuide/List.tsx:82
+msgid "Dismiss getting started guide"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:44
+msgid "Dismiss interests"
+msgstr ""
+
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64
+msgid "Dismiss live event banner"
+msgstr ""
+
+#: src/components/interstitials/TrendingVideos.tsx:90
+msgid "Dismiss this section"
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:349
+msgid "Dismiss this suggestion"
+msgstr ""
+
+#: src/screens/Settings/AccessibilitySettings.tsx:70
+#: src/screens/Settings/AccessibilitySettings.tsx:75
+msgid "Display larger alt text badges"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:310
+#: src/screens/Profile/Header/EditProfileDialog.tsx:316
+msgid "Display name"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23
+msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:405
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:407
+msgid "DNS Panel"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:311
+msgid "Do not apply this mute word to users you follow"
+msgstr ""
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:39
+msgid "Does not include nudity."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:525
+msgid "Domain verified!"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
+msgid "Don't have a code or need a new one? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:269
+msgid "Don’t see a code? <0>Click here to resend.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
+msgid "Don't see an email? <0>Click here to resend.0>"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:105
+#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:38
+msgid "Don't show again"
+msgstr ""
+
+#: src/components/ageAssurance/useAgeAssuranceCopy.ts:26
+msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult."
+msgstr ""
+
+#: src/components/contacts/components/InviteInfo.tsx:73
+#: src/components/contacts/components/InviteInfo.tsx:79
+#: src/components/contacts/screens/ViewMatches.tsx:395
+#: src/components/contacts/screens/ViewMatches.tsx:412
+#: src/components/dialogs/BirthDateSettings.tsx:193
+#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
+#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
+#: src/components/dialogs/ServerInput.tsx:237
+#: src/components/dialogs/ServerInput.tsx:239
+#: src/components/dms/AfterReportConversationDialog.tsx:164
+#: src/components/dms/AfterReportDialog.tsx:145
+#: src/components/forms/DateField/index.tsx:104
+#: src/components/forms/DateField/index.tsx:110
+#: src/lib/media/picker.tsx:37
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
+#: src/view/com/composer/labels/LabelsBtn.tsx:219
+#: src/view/com/composer/labels/LabelsBtn.tsx:226
+#: src/view/com/composer/videos/SubtitleDialog.tsx:192
+#: src/view/com/composer/videos/SubtitleDialog.tsx:203
+msgid "Done"
+msgstr ""
+
+#: src/view/com/modals/UserAddRemoveLists.tsx:114
+#: src/view/com/modals/UserAddRemoveLists.tsx:117
+msgctxt "action"
+msgid "Done"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:445
+msgid "Double tap or long press the message to add a reaction"
+msgstr ""
+
+#: src/components/Dialog/index.tsx:409
+msgid "Double tap to close the dialog"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:1107
+msgid "Double tap to like"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329
+msgid "Download Bluesky"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:149
+msgid "Download chat data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:154
+msgctxt "button"
+msgid "Download chat data"
+msgstr ""
+
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
+msgid "Download image"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
+msgid "Doxxing"
+msgstr ""
+
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
+#: src/view/com/composer/drafts/DraftsButton.tsx:70
+#: src/view/com/composer/drafts/DraftsButton.tsx:79
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
+msgid "Drafts"
+msgstr ""
+
+#: src/view/com/composer/text-input/TextInput.web.tsx:366
+msgid "Drop to add images"
+msgstr ""
+
+#: src/components/ageAssurance/useAgeAssuranceCopy.ts:20
+msgid "Due to laws in your region, certain features on Bluesky are currently restricted until you're able to verify you're an adult."
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:162
+msgid "Duration:"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:237
+msgid "e.g. alice"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:317
+msgid "e.g. Alice Lastname"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:388
+msgid "e.g. alice.com"
+msgstr ""
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:43
+msgid "E.g. artistic nudes."
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:370
+msgid "e.g. Great Posters"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:371
+msgid "e.g. Spammers"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:374
+msgid "e.g. The posters who never miss."
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:375
+msgid "e.g. Users that repeatedly reply with ads."
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:196
+msgid "Eating disorders"
+msgstr ""
+
+#: src/screens/Messages/components/EditTextButton.tsx:52
+#: src/screens/Settings/AccountSettings.tsx:150
+#: src/screens/StarterPack/StarterPackScreen.tsx:604
+#: src/screens/StarterPack/Wizard/index.tsx:331
+#: src/screens/StarterPack/Wizard/index.tsx:336
+msgid "Edit"
+msgstr ""
+
+#: src/view/com/lists/ListMembers.tsx:188
+#: src/view/com/lists/ListMembers.tsx:194
+msgctxt "action"
+msgid "Edit"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
+msgid "Edit avatar"
+msgstr ""
+
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:116
+msgid "Edit Feeds"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
+msgid "Edit group name"
+msgstr ""
+
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
+#: src/view/com/composer/photos/Gallery.tsx:218
+msgid "Edit image"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781
+msgid "Edit interaction settings"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:99
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:106
+msgid "Edit interests"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
+msgid "Edit link settings"
+msgstr ""
+
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:191
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:194
+msgid "Edit list details"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:369
+#: src/view/com/profile/ProfileMenu.tsx:389
+msgid "Edit live status"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:364
+msgid "Edit moderation list"
+msgstr ""
+
+#: src/Navigation.tsx:355
+#: src/view/screens/Feeds.tsx:511
+msgid "Edit My Feeds"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:474
+msgid "Edit name"
+msgstr ""
+
+#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
+msgid "Edit People"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:116
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:266
+msgid "Edit post interaction settings"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:265
+#: src/screens/Profile/Header/EditProfileDialog.tsx:271
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345
+msgid "Edit profile"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347
+msgid "Edit Profile"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:596
+msgid "Edit starter pack"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:473
+msgid "Edit this group chat’s name"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:363
+msgid "Edit user list"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:116
+msgid "Edit who can reply"
+msgstr ""
+
+#: src/Navigation.tsx:541
+msgid "Edit your starter pack"
+msgstr ""
+
+#: src/lib/interests.ts:59
+msgid "Education"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:145
+msgid "Either the creator of this list has blocked you or you have blocked the creator."
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:71
+#: src/screens/Signup/StepInfo/index.tsx:220
+msgid "Email"
+msgstr ""
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:65
+msgctxt "toast"
+msgid "Email 2FA disabled"
+msgstr ""
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63
+msgid "Email 2FA enabled"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:95
+msgid "Email address"
+msgstr ""
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:99
+msgid "Email Resent"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
+msgid "Email sent!"
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:260
+msgid "Email sent! <0>Click here to resend.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:183
+msgid "Email verification complete!"
+msgstr ""
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:74
+msgid "Email Verified"
+msgstr ""
+
+#: src/components/dialogs/Embed.tsx:178
+msgid "Embed HTML code"
+msgstr ""
+
+#: src/components/dialogs/Embed.tsx:105
+#: src/components/dialogs/Embed.tsx:109
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125
+msgid "Embed post"
+msgstr ""
+
+#: src/components/dialogs/Embed.tsx:113
+msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website."
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:57
+msgid "Embedded video player"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
+#: src/screens/Settings/components/Email2FAToggle.tsx:31
+msgid "Enable"
+msgstr ""
+
+#. placeholder {0}: externalEmbedLabels[source]
+#: src/components/dialogs/EmbedConsent.tsx:96
+msgid "Enable {0} only"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:389
+msgid "Enable adult content"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415
+msgid "Enable captions"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
+msgid "Enable email 2FA"
+msgstr ""
+
+#: src/components/dialogs/EmbedConsent.tsx:80
+#: src/components/dialogs/EmbedConsent.tsx:86
+msgid "Enable external media"
+msgstr ""
+
+#: src/screens/Settings/ExternalMediaPreferences.tsx:53
+msgid "Enable media players for"
+msgstr ""
+
+#: src/view/screens/Storybook/Admonitions.tsx:76
+msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
+msgid "Enable push notifications"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:629
+msgid "Enable quote posts of this post"
+msgstr ""
+
+#: src/components/dialogs/EmbedConsent.tsx:90
+msgid "Enable this source only"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:134
+#: src/screens/Settings/ContentAndMediaSettings.tsx:148
+msgid "Enable trending topics"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:155
+#: src/screens/Settings/ContentAndMediaSettings.tsx:169
+msgid "Enable trending videos in your Discover feed"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:400
+msgid "Enabled"
+msgstr ""
+
+#: src/screens/Profile/Sections/Feed.tsx:131
+msgid "End of feed"
+msgstr ""
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:182
+msgid "Ensure you have selected a language for each caption file."
+msgstr ""
+
+#: src/components/contacts/screens/VerifyNumber.tsx:231
+msgid "Enter 6-digit code that was sent to your phone number"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:149
+msgid "Enter a password"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:136
+#: src/components/dialogs/MutedWords.tsx:137
+msgid "Enter a word or tag"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
+msgid "Enter code"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433
+msgid "Enter fullscreen"
+msgstr ""
+
+#: src/components/contacts/screens/VerifyNumber.tsx:226
+msgid "Enter the 6-digit code sent to {prettyNumber}"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:382
+msgid "Enter the domain you want to use"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:115
+msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password."
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:218
+msgid "Enter the username or email address you used when you created your account"
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:164
+msgid "Enter your birthdate"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:101
+#: src/screens/Signup/StepInfo/index.tsx:240
+msgid "Enter your email address"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:243
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:291
+msgid "Enter your password"
+msgstr ""
+
+#: src/screens/Login/index.tsx:141
+msgid "Enter your username and password"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:150
+msgid "Enters full screen"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224
+msgid "Entertainment"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2534
+#: src/view/com/util/error/ErrorScreen.tsx:40
+msgid "Error"
+msgstr ""
+
+#: src/screens/Settings/FindContactsSettings.tsx:93
+msgid "Error getting the latest data."
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadError.tsx:27
+msgid "Error loading post"
+msgstr ""
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154
+msgid "Error loading preference"
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:201
+msgid "Error message"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:47
+#: src/screens/Settings/components/ExportCarDialog.tsx:80
+msgid "Error occurred while saving file"
+msgstr ""
+
+#: src/screens/Signup/StepCaptcha/index.tsx:127
+msgid "Error receiving captcha response."
+msgstr ""
+
+#: src/screens/Search/SearchResults.tsx:154
+msgid "Error: {error}"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:85
+msgid "Everybody can reply"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:279
+msgid "Everybody can reply to this post."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
+msgid "Everyone"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:77
+msgctxt "allow group chat invites from"
+msgid "Everyone"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:62
+msgctxt "allow messages from"
+msgid "Everyone"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
+msgid "Everything else"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:320
+msgid "Exclude users you follow"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:605
+msgid "Excludes users you follow"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432
+msgid "Exit fullscreen"
+msgstr ""
+
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
+msgid "Expand alt text"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:593
+msgid "Expand list of users"
+msgstr ""
+
+#: src/view/com/composer/ComposerReplyTo.tsx:92
+msgid "Expand or collapse the full post you are replying to"
+msgstr ""
+
+#: src/components/Post/ShowMoreTextButton.tsx:33
+msgid "Expand post text"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:983
+msgid "Expands or collapses post text"
+msgstr ""
+
+#: src/lib/api/index.ts:487
+msgid "Expected uri to resolve to a record"
+msgstr ""
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:127
+msgid "Experimental"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:520
+msgid "Expired"
+msgstr ""
+
+#. placeholder {0}: formatDistance(expiryDate, new Date(), { addSuffix: true, })
+#: src/components/dialogs/MutedWords.tsx:589
+msgid "Expires {0}"
+msgstr ""
+
+#. placeholder {0}: timeDiff(Date.now(), label.exp)
+#. placeholder {0}: timeDiff(Date.now(), modcause.label.exp)
+#: src/components/moderation/LabelsOnMeDialog.tsx:204
+#: src/components/moderation/ModerationDetailsDialog.tsx:224
+msgid "Expires in {0}"
+msgstr ""
+
+#. placeholder {0}: displayDuration(i18n, minutesUntilExpiry)
+#. placeholder {1}: i18n.date(expiryDateTime, { hour: 'numeric', minute: '2-digit', hour12: true, })
+#: src/features/liveNow/components/EditLiveDialog.tsx:132
+msgid "Expires in {0} at {1}"
+msgstr ""
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:47
+#: src/lib/moderation/useGlobalLabelStrings.ts:51
+msgid "Explicit or potentially disturbing media."
+msgstr ""
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:35
+msgid "Explicit sexual images."
+msgstr ""
+
+#: src/Navigation.tsx:745
+#: src/screens/Search/Shell.tsx:362
+#: src/view/shell/desktop/LeftNav.tsx:677
+#: src/view/shell/Drawer.tsx:417
+msgid "Explore"
+msgstr ""
+
+#: src/components/WelcomeModal.tsx:171
+#: src/components/WelcomeModal.tsx:180
+msgid "Explore the app"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
+#: src/screens/Settings/components/ExportCarDialog.tsx:130
+msgid "Export my chat data"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:170
+#: src/screens/Settings/AccountSettings.tsx:174
+msgid "Export my data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:97
+msgid "Export my profile data"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:86
+#: src/screens/Settings/ContentAndMediaSettings.tsx:89
+msgid "External media"
+msgstr ""
+
+#: src/components/dialogs/EmbedConsent.tsx:54
+#: src/components/dialogs/EmbedConsent.tsx:58
+msgid "External Media"
+msgstr ""
+
+#: src/components/dialogs/EmbedConsent.tsx:70
+#: src/screens/Settings/ExternalMediaPreferences.tsx:44
+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:374
+#: src/screens/Settings/ExternalMediaPreferences.tsx:35
+msgid "External Media Preferences"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:146
+msgid "Extremist content"
+msgstr ""
+
+#: src/screens/Messages/components/RequestButtons.tsx:243
+msgctxt "toast"
+msgid "Failed to accept chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
+#: src/components/dms/ActionsWrapper.web.tsx:77
+#: src/components/dms/MessageContextMenu.tsx:103
+msgid "Failed to add emoji reaction"
+msgstr ""
+
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42
+#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60
+msgid "Failed to add members"
+msgstr ""
+
+#: src/components/dialogs/StarterPackDialog.tsx:280
+msgid "Failed to add to starter pack"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:605
+msgid "Failed to change handle. Please try again."
+msgstr ""
+
+#: src/components/Lightbox/Lightbox.web.tsx:302
+msgid "Failed to copy link"
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173
+msgid "Failed to create app password. Please try again."
+msgstr ""
+
+#: src/components/dms/MessageProfileButton.tsx:38
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64
+msgid "Failed to create conversation"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
+msgid "Failed to create invite link"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:250
+#: src/screens/StarterPack/Wizard/index.tsx:260
+msgid "Failed to create starter pack"
+msgstr ""
+
+#: src/screens/Messages/components/RequestButtons.tsx:70
+#: src/screens/Messages/components/RequestButtons.tsx:317
+msgctxt "toast"
+msgid "Failed to delete chat"
+msgstr ""
+
+#: src/components/dms/MessageOverlays.tsx:112
+msgid "Failed to delete message"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219
+msgid "Failed to delete post, please try again"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:754
+msgid "Failed to delete starter pack"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
+msgid "Failed to disable invite link"
+msgstr ""
+
+#. placeholder {0}: error?.message
+#: src/screens/Profile/components/GermButton.tsx:196
+msgid "Failed to disconnect Germ DM. Error: {0}"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:344
+msgid "Failed to edit group chat name"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
+msgid "Failed to edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
+msgid "Failed to enable invite link"
+msgstr ""
+
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:143
+msgid "Failed to follow all suggested accounts, please try again"
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:148
+msgid "Failed to follow all your friends, please try again"
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:236
+msgid "Failed to hide suggestion, please check your internet connection"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:582
+msgid "Failed to launch SMS app"
+msgstr ""
+
+#: src/screens/Messages/components/ChatEnded.tsx:42
+#: src/screens/Messages/components/ChatLocked.tsx:53
+#: src/screens/Messages/ConversationSettings/index.tsx:371
+msgctxt "toast"
+msgid "Failed to leave group chat"
+msgstr ""
+
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
+msgid "Failed to load conversations"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:530
+#: src/screens/Search/Explore.tsx:575
+#: src/screens/Search/Explore.tsx:621
+msgid "Failed to load feeds"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:489
+#: src/screens/Search/Explore.tsx:544
+#: src/screens/Search/Explore.tsx:589
+#: src/screens/Search/Explore.tsx:635
+msgid "Failed to load feeds preferences"
+msgstr ""
+
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
+msgid "Failed to load notification settings."
+msgstr ""
+
+#: src/screens/Messages/components/MessageListError.tsx:22
+msgid "Failed to load past messages"
+msgstr ""
+
+#: src/screens/Settings/ActivityPrivacySettings.tsx:66
+msgid "Failed to load preference."
+msgstr ""
+
+#: src/components/dialogs/SearchablePeopleList.tsx:292
+msgid "Failed to load profiles"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:482
+#: src/screens/Search/Explore.tsx:537
+#: src/screens/Search/Explore.tsx:582
+#: src/screens/Search/Explore.tsx:628
+msgid "Failed to load suggested feeds"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:391
+msgid "Failed to load suggested follows"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:392
+msgid "Failed to lock group chat"
+msgstr ""
+
+#: src/screens/Messages/Inbox.tsx:299
+msgid "Failed to mark all requests as read"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:358
+msgid "Failed to mute group chat"
+msgstr ""
+
+#: src/state/queries/pinned-post.ts:75
+msgid "Failed to pin post"
+msgstr ""
+
+#. placeholder {0}: e?.message
+#: src/screens/Profile/components/GermButton.tsx:164
+msgid "Failed to reconnect Germ DM. Error: {0}"
+msgstr ""
+
+#: src/screens/Settings/FindContactsSettings.tsx:488
+msgid "Failed to remove data due to a network error, please check your internet connection."
+msgstr ""
+
+#. placeholder {0}: cleanError(err)
+#: src/screens/Settings/FindContactsSettings.tsx:494
+msgid "Failed to remove data. {0}"
+msgstr ""
+
+#: src/components/dms/ActionsWrapper.web.tsx:73
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
+msgid "Failed to remove emoji reaction"
+msgstr ""
+
+#: src/components/dialogs/StarterPackDialog.tsx:293
+msgid "Failed to remove from starter pack"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71
+msgid "Failed to remove group chat member"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:34
+msgid "Failed to remove verification"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
+#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
+msgid "Failed to resolve location. Please try again."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:639
+msgid "Failed to save draft"
+msgstr ""
+
+#: src/components/Lightbox/Lightbox.web.tsx:319
+msgid "Failed to save image"
+msgstr ""
+
+#. placeholder {0}: String(e)
+#: src/lib/media/save-image.ios.ts:27
+#: src/lib/media/save-image.ts:31
+msgid "Failed to save image: {0}"
+msgstr ""
+
+#: src/screens/ModerationInteractionSettings/index.tsx:109
+msgid "Failed to save settings. Please try again."
+msgstr ""
+
+#: src/screens/Settings/InterestsSettings.tsx:147
+msgctxt "toast"
+msgid "Failed to save your interests."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
+msgid "Failed to send email, please try again."
+msgstr ""
+
+#: src/components/SendErrorReportDialog.tsx:52
+msgid "Failed to send report"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:266
+#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
+#: src/screens/Messages/components/ChatDisabled.tsx:119
+msgid "Failed to submit appeal, please try again."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251
+msgid "Failed to toggle thread mute, please try again"
+msgstr ""
+
+#: src/screens/Messages/components/ChatLocked.tsx:42
+#: src/screens/Messages/ConversationSettings/index.tsx:395
+msgid "Failed to unlock group chat"
+msgstr ""
+
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107
+msgid "Failed to unpin list"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
+msgid "Failed to update email 2FA settings"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
+msgid "Failed to update email, please try again."
+msgstr ""
+
+#: src/components/FeedCard.tsx:316
+msgid "Failed to update feeds"
+msgstr ""
+
+#: src/state/queries/activity-subscriptions.ts:101
+msgid "Failed to update notification declaration"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:94
+msgid "Failed to update settings"
+msgstr ""
+
+#: src/lib/media/video/upload.ts:73
+#: src/lib/media/video/upload.web.ts:73
+#: src/lib/media/video/upload.web.ts:77
+#: src/lib/media/video/upload.web.ts:87
+msgid "Failed to upload video"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:169
+msgid "Failed to verify email, please try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:372
+msgid "Failed to verify handle. Please try again."
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47
+msgid "Fake account or bot"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55
+msgid "False information about elections"
+msgstr ""
+
+#: src/Navigation.tsx:290
+msgid "Feed"
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle(creator.handle, '@')
+#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
+#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
+#: src/components/FeedCard.tsx:170
+#: src/state/queries/feed.ts:127
+#: src/view/com/feeds/FeedSourceCard.tsx:151
+msgid "Feed by {0}"
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:153
+msgid "Feed creator"
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:190
+msgid "Feed identifier"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
+msgid "Feed menu"
+msgstr ""
+
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:59
+msgid "Feed toggle"
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:74
+msgid "Feed unavailable"
+msgstr ""
+
+#: src/view/shell/desktop/RightNav.tsx:109
+#: src/view/shell/desktop/RightNav.tsx:110
+#: src/view/shell/Drawer.tsx:371
+msgid "Feedback"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330
+msgctxt "toast"
+msgid "Feedback sent to feed operator"
+msgstr ""
+
+#: src/Navigation.tsx:521
+#: src/screens/SavedFeeds.tsx:112
+#: src/screens/SavedFeeds.tsx:303
+#: src/screens/Search/SearchResults.tsx:80
+#: src/screens/StarterPack/StarterPackScreen.tsx:196
+#: src/view/screens/Feeds.tsx:504
+#: src/view/screens/Profile.tsx:239
+#: src/view/shell/desktop/LeftNav.tsx:712
+#: src/view/shell/Drawer.tsx:533
+msgid "Feeds"
+msgstr ""
+
+#: src/screens/SavedFeeds.tsx:227
+#: src/screens/SavedFeeds.tsx:398
+msgid "Feeds are custom algorithms that users build with a little coding expertise. <0>See this guide0> for more information."
+msgstr ""
+
+#: src/components/FeedCard.tsx:313
+#: src/screens/SavedFeeds.tsx:92
+#: src/screens/SavedFeeds.tsx:271
+msgctxt "toast"
+msgid "Feeds updated!"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreRecommendations.tsx:66
+msgid "Feeds we think you might like."
+msgstr ""
+
+#: src/screens/Settings/components/OTAInfo.tsx:61
+msgid "Fetch update"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:43
+#: src/screens/Settings/components/ExportCarDialog.tsx:76
+msgid "File saved successfully!"
+msgstr ""
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:69
+msgid "Filter from feeds"
+msgstr ""
+
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:98
+msgid "Filter search by language"
+msgstr ""
+
+#: src/screens/Search/components/SearchLanguageDropdown.tsx:71
+msgid "Filter search by language (currently: {currentLanguageLabel})"
+msgstr ""
+
+#: src/screens/Settings/ActivityPrivacySettings.tsx:106
+msgid "Filter who can opt to receive notifications for your activity"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
+msgid "Filter who you receive notifications from"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished/index.tsx:335
+msgid "Finalizing"
+msgstr ""
+
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
+msgid "Finally!"
+msgstr ""
+
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
+msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
+msgstr ""
+
+#: src/lib/interests.ts:60
+msgid "Finance"
+msgstr ""
+
+#: src/view/com/posts/CustomFeedEmptyState.tsx:67
+#: src/view/com/posts/CustomFeedEmptyState.tsx:72
+#: src/view/com/posts/FollowingEmptyState.tsx:48
+#: src/view/com/posts/FollowingEmptyState.tsx:53
+#: src/view/com/posts/FollowingEndOfFeed.tsx:49
+#: src/view/com/posts/FollowingEndOfFeed.tsx:54
+msgid "Find accounts to follow"
+msgstr ""
+
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
+msgid "Find Contacts"
+msgstr ""
+
+#: src/screens/Settings/FindContactsSettings.tsx:79
+msgid "Find Friends"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:216
+#: src/screens/Settings/Settings.tsx:219
+msgid "Find friends from contacts"
+msgstr ""
+
+#: src/components/contacts/screens/GetContacts.tsx:273
+#: src/components/contacts/screens/GetContacts.tsx:287
+msgid "Find my friends"
+msgstr ""
+
+#. Starter packs suggested to the user for them to follow
+#: src/components/ProgressGuide/FollowDialog.tsx:72
+#: src/components/ProgressGuide/FollowDialog.tsx:80
+#: src/components/ProgressGuide/FollowDialog.tsx:448
+#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:43
+msgid "Find people to follow"
+msgstr ""
+
+#: src/screens/Search/Shell.tsx:537
+msgid "Find posts, users, and feeds on Bluesky"
+msgstr ""
+
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
+msgid "Find your friends"
+msgstr ""
+
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46
+#: src/screens/Settings/FindContactsSettings.tsx:126
+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 ""
+
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21
+msgid "Find your people"
+msgstr ""
+
+#: src/components/contacts/screens/GetContacts.tsx:281
+msgid "Finding friends..."
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:206
+msgid "Finish"
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149
+msgctxt "Name of app icon variant"
+msgid "Flat Black"
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117
+msgctxt "Name of app icon variant"
+msgid "Flat Blue"
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133
+msgctxt "Name of app icon variant"
+msgid "Flat White"
+msgstr ""
+
+#: src/components/contacts/components/OTPInput.tsx:55
+msgid "Focus code input"
+msgstr ""
+
+#: src/lib/hotkeys/index.tsx:73
+msgid "Focus the search field"
+msgstr ""
+
+#. User is not following this account, click to follow
+#: src/components/ProfileCard.tsx:546
+#: src/components/ProfileHoverCard/index.web.tsx:495
+#: src/components/ProfileHoverCard/index.web.tsx:506
+#: src/screens/Messages/ConversationSettings/Member.tsx:145
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402
+#: src/screens/VideoFeed/index.tsx:866
+#: src/view/com/notifications/NotificationFeedItem.tsx:836
+#: src/view/com/notifications/NotificationFeedItem.tsx:843
+msgid "Follow"
+msgstr ""
+
+#. placeholder {0}: profile.handle
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390
+msgid "Follow {0}"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/Member.tsx:142
+msgid "Follow {displayName}"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:845
+msgid "Follow {handle}"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:232
+msgid "Follow 10 accounts"
+msgstr ""
+
+#: src/components/ProgressGuide/List.tsx:75
+msgid "Follow 10 people to get started"
+msgstr ""
+
+#: src/components/ProgressGuide/List.tsx:116
+msgid "Follow 7 accounts"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:325
+#: src/view/com/profile/ProfileMenu.tsx:336
+msgid "Follow account"
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:276
+#: src/components/contacts/screens/ViewMatches.tsx:291
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:294
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:162
+#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:169
+#: src/screens/Settings/FindContactsSettings.tsx:444
+#: src/screens/Settings/FindContactsSettings.tsx:454
+#: src/screens/StarterPack/StarterPackScreen.tsx:452
+#: src/screens/StarterPack/StarterPackScreen.tsx:460
+msgid "Follow all"
+msgstr ""
+
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:291
+msgid "Follow all accounts"
+msgstr ""
+
+#. User is not following this account, click to follow back
+#: src/components/ProfileCard.tsx:542
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400
+#: src/view/com/notifications/NotificationFeedItem.tsx:836
+#: src/view/com/notifications/NotificationFeedItem.tsx:843
+msgid "Follow back"
+msgstr ""
+
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:132
+msgid "Followed all accounts!"
+msgstr ""
+
+#: src/screens/Settings/FindContactsSettings.tsx:397
+msgid "Followed all matches"
+msgstr ""
+
+#. placeholder {0}: slice[0].profile.displayName
+#: src/components/KnownFollowers.tsx:233
+msgid "Followed by <0>{0}0>"
+msgstr ""
+
+#. placeholder {0}: slice[0].profile.displayName
+#. placeholder {1}: serverCount - 1
+#: src/components/KnownFollowers.tsx:219
+msgid "Followed by <0>{0}0> and {1, plural, one {# other} other {# others}}"
+msgstr ""
+
+#. placeholder {0}: slice[0].profile.displayName
+#. placeholder {1}: slice[1].profile.displayName
+#: src/components/KnownFollowers.tsx:206
+msgid "Followed by <0>{0}0> and <1>{1}1>"
+msgstr ""
+
+#. placeholder {0}: slice[0].profile.displayName
+#. placeholder {1}: slice[1].profile.displayName
+#. placeholder {2}: serverCount - 2
+#: src/components/KnownFollowers.tsx:189
+msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
+#. placeholder {0}: route.params.name
+#: src/Navigation.tsx:244
+msgid "Followers of @{0} that you know"
+msgstr ""
+
+#: src/screens/Profile/KnownFollowers.tsx:98
+#: src/screens/Profile/KnownFollowers.tsx:115
+msgid "Followers you know"
+msgstr ""
+
+#. User is following this account, click to unfollow
+#. User is following this account, click to unfollow
+#: src/components/ProfileCard.tsx:537
+#: src/components/ProfileHoverCard/index.web.tsx:494
+#: src/components/ProfileHoverCard/index.web.tsx:505
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:398
+#: src/screens/VideoFeed/index.tsx:864
+#: src/view/com/notifications/NotificationFeedItem.tsx:814
+#: src/view/com/notifications/NotificationFeedItem.tsx:831
+msgid "Following"
+msgstr ""
+
+#: src/screens/SavedFeeds.tsx:618
+#: src/view/screens/Feeds.tsx:596
+msgctxt "feed-name"
+msgid "Following"
+msgstr ""
+
+#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), )
+#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, )
+#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), )
+#: src/components/ProfileCard.tsx:498
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262
+#: src/view/com/notifications/NotificationFeedItem.tsx:763
+msgid "Following {0}"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/Member.tsx:54
+msgid "Following {displayName}"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:844
+msgid "Following {handle}"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:78
+#: src/screens/Settings/ContentAndMediaSettings.tsx:81
+msgid "Following feed preferences"
+msgstr ""
+
+#: src/Navigation.tsx:361
+#: src/screens/Settings/FollowingFeedPreferences.tsx:57
+msgid "Following Feed Preferences"
+msgstr ""
+
+#: src/components/Pills.tsx:175
+#: src/screens/Profile/Header/Handle.tsx:33
+msgid "Follows you"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:128
+msgid "Font"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:148
+msgid "Font size"
+msgstr ""
+
+#: src/lib/interests.ts:61
+msgid "Food"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:96
+msgid "For organizational accounts, use the birthdate of the person who is responsible for the account."
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:186
+msgid "For security reasons, we’ll need to send a confirmation code to your email address <0>{currentEmail}0>."
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:208
+msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one."
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:130
+msgid "For the best experience, we recommend using the theme font."
+msgstr ""
+
+#: src/components/ProgressGuide/FollowDialog.tsx:131
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349
+#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88
+msgid "For You"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:187
+#: src/components/dialogs/MutedWords.tsx:572
+#: src/components/dialogs/MutedWords.tsx:575
+msgid "Forever"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30
+msgid "Forget the noise"
+msgstr ""
+
+#: src/screens/Login/index.tsx:172
+#: src/screens/Login/index.tsx:188
+msgid "Forgot Password"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:258
+msgid "Forgot password?"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:269
+msgid "Forgot?"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12
+msgid "Free your feed"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
+msgid "From"
+msgstr ""
+
+#: src/screens/Hashtag.tsx:124
+msgid "From @{sanitizedAuthor}"
+msgstr ""
+
+#: src/view/com/posts/PostFeedReason.tsx:48
+msgctxt "from-feed"
+msgid "From <0/>"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:337
+msgid "Generate a starter pack"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
+msgid "Generate invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
+msgid "Generate new invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
+msgid "Generate new link"
+msgstr ""
+
+#: src/screens/Profile/components/GermButton.tsx:86
+#: src/screens/Profile/components/GermButton.tsx:225
+msgid "Germ DM"
+msgstr ""
+
+#: src/screens/Profile/components/GermButton.tsx:183
+msgid "Germ DM disconnected"
+msgstr ""
+
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
+msgid "Germ DM Link"
+msgstr ""
+
+#: src/screens/Profile/components/GermButton.tsx:160
+msgid "Germ DM reconnected"
+msgstr ""
+
+#: src/view/shell/Drawer.tsx:375
+msgid "Get help"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
+msgid "Get notifications when people follow you."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:261
+msgid "Get notifications when people like your posts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
+msgid "Get notifications when people mention you."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:293
+msgid "Get notifications when people quote your posts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:277
+msgid "Get notifications when people reply to your posts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr ""
+
+#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
+msgid "Get notified about new posts"
+msgstr ""
+
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
+msgid "Get notified of new posts from {name}"
+msgstr ""
+
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:233
+msgid "Get notified of this account’s activity"
+msgstr ""
+
+#: src/components/activity-notifications/SubscribeProfileButton.tsx:87
+msgid "Get notified when {name} posts"
+msgstr ""
+
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
+msgid "Get notified when someone posts"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
+msgid "Get started"
+msgstr ""
+
+#: src/components/MediaPreview.tsx:180
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
+msgid "GIF"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2539
+msgid "GIF uploaded"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:259
+msgid "Give your profile a face"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:142
+msgid "Glorification of violence"
+msgstr ""
+
+#: src/components/dialogs/LinkWarning.tsx:127
+#: src/components/dialogs/LinkWarning.tsx:133
+#: src/components/Layout/Header/index.tsx:133
+#: src/components/moderation/ScreenHider.tsx:161
+#: src/components/moderation/ScreenHider.tsx:170
+#: src/screens/Login/components/AuthLayout/Header/index.tsx:75
+#: src/screens/ProfileList/components/ErrorScreen.tsx:35
+#: src/screens/ProfileList/components/ErrorScreen.tsx:41
+#: src/screens/VideoFeed/components/Header.tsx:163
+#: src/screens/VideoFeed/index.tsx:1168
+#: src/screens/VideoFeed/index.tsx:1172
+#: src/view/com/auth/LoggedOut.tsx:103
+#: src/view/com/profile/ProfileFollowers.tsx:178
+#: src/view/com/profile/ProfileFollowers.tsx:179
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
+msgid "Go back"
+msgstr ""
+
+#: src/components/Error.tsx:77
+#: src/screens/List/ListHiddenScreen.tsx:228
+#: src/screens/Messages/Conversation.tsx:371
+#: src/screens/Profile/ErrorState.tsx:63
+#: src/screens/Profile/ErrorState.tsx:67
+#: src/screens/StarterPack/StarterPackScreen.tsx:807
+msgid "Go Back"
+msgstr ""
+
+#: src/screens/Onboarding/Layout.tsx:97
+#: src/screens/Onboarding/Layout.tsx:198
+#: src/screens/Signup/BackNextButtons.tsx:36
+msgid "Go back to previous step"
+msgstr ""
+
+#: src/screens/Bookmarks/index.tsx:303
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
+msgid "Go home"
+msgstr ""
+
+#: src/screens/Bookmarks/components/EmptyState.tsx:44
+#: src/screens/Bookmarks/components/EmptyState.tsx:52
+msgctxt "Button to go back to the home timeline"
+msgid "Go home"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:370
+#: src/view/com/profile/ProfileMenu.tsx:391
+msgid "Go live"
+msgstr ""
+
+#: src/features/liveNow/components/GoLiveDialog.tsx:100
+#: src/features/liveNow/components/GoLiveDialog.tsx:105
+#: src/features/liveNow/components/GoLiveDialog.tsx:233
+#: src/features/liveNow/components/GoLiveDialog.tsx:242
+msgid "Go Live"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:367
+#: src/view/com/profile/ProfileMenu.tsx:387
+msgid "Go live (disabled)"
+msgstr ""
+
+#: src/features/liveNow/components/GoLiveDialog.tsx:175
+msgid "Go live for"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:241
+msgid "Go to {firstAuthorName}'s profile"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:93
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:73
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:82
+#: src/screens/Moderation/index.tsx:237
+msgid "Go to account settings"
+msgstr ""
+
+#. placeholder {0}: profile.handle
+#: src/screens/Messages/components/ChatListItem.tsx:155
+msgid "Go to conversation with {0}"
+msgstr ""
+
+#: src/view/com/posts/PostFeedReason.tsx:39
+msgid "Go to feed"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:174
+msgid "Go to next"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:272
+#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
+msgid "Go to profile"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:213
+msgid "Go to the group chat named \"{chatName}\""
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:268
+msgid "Go to user's profile"
+msgstr ""
+
+#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87
+msgid "Go to user’s profile"
+msgstr ""
+
+#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:105
+msgid "Going live is currently disabled for your account"
+msgstr ""
+
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
+msgid "Got it"
+msgstr ""
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:46
+#: src/lib/moderation/useGlobalLabelStrings.ts:50
+#: src/view/com/composer/labels/LabelsBtn.tsx:197
+#: src/view/com/composer/labels/LabelsBtn.tsx:200
+msgid "Graphic Media"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:138
+msgid "Graphic violent content"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:169
+msgid "Grooming or predatory behavior"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
+msgid "Group chat invite link dialog"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:384
+msgctxt "toast"
+msgid "Group chat locked"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:351
+msgctxt "toast"
+msgid "Group chat muted"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:339
+msgctxt "toast"
+msgid "Group chat name updated"
+msgstr ""
+
+#: src/Navigation.tsx:490
+#: src/screens/Messages/ConversationSettings/index.tsx:91
+msgid "Group chat settings"
+msgstr ""
+
+#: src/screens/Messages/components/ChatLocked.tsx:38
+#: src/screens/Messages/ConversationSettings/index.tsx:386
+msgctxt "toast"
+msgid "Group chat unlocked"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:353
+msgctxt "toast"
+msgid "Group chat unmuted"
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:355
+msgid "Group chats are not yet available"
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:353
+msgid "Group chats are now available"
+msgstr ""
+
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
+#: src/components/dialogs/SearchablePeopleList.tsx:569
+msgid "Group is locked"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
+msgid "Group name"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
+msgid "Hacking or system attacks"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:221
+#: src/state/shell/progress-guide.tsx:231
+msgid "Half way there!"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:135
+#: src/screens/Settings/AccountSettings.tsx:140
+msgid "Handle"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:609
+msgid "Handle already taken. Please try a different one."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:197
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:356
+msgid "Handle changed!"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:613
+msgid "Handle too long. Please try a shorter one."
+msgstr ""
+
+#: src/components/FeedCard.tsx:156
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
+msgid "Happening now"
+msgstr ""
+
+#. Accessibility label for the icon-only pill that filters the GIF picker to happy/joyful GIFs.
+#: src/features/gifPicker/components/GifCategoryPills.tsx:65
+msgid "Happy GIFs"
+msgstr ""
+
+#: src/screens/Settings/AccessibilitySettings.tsx:86
+msgid "Haptics"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99
+msgid "Harassment or hate"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:189
+msgid "Harmful or high-risk activities"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:162
+msgid "Harming or endangering minors"
+msgstr ""
+
+#: src/Navigation.tsx:474
+msgid "Hashtag"
+msgstr ""
+
+#: src/components/RichTextTag.tsx:53
+msgid "Hashtag {tag}"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:111
+msgid "Hate speech"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
+msgid "Have a code? <0>Click here.0>"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:320
+msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
+msgstr ""
+
+#: src/screens/Signup/index.tsx:231
+msgid "Having trouble?"
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:290
+msgid "Held by Bluesky for 7 days to prevent abuse, then deleted"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:247
+#: src/screens/Settings/Settings.tsx:251
+#: src/view/shell/desktop/RightNav.tsx:130
+#: src/view/shell/desktop/RightNav.tsx:133
+#: src/view/shell/Drawer.tsx:384
+msgid "Help"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:262
+msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187
+msgid "Here is your app password!"
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:74
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:120
+msgid "Hey there 👋"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:173
+msgid "Hey there!"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:213
+msgid "Hi there!"
+msgstr ""
+
+#: src/components/VideoPostCard.tsx:178
+#: src/components/VideoPostCard.tsx:462
+msgid "Hidden"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:643
+msgid "Hidden by your moderation settings."
+msgstr ""
+
+#: src/components/ListCard.tsx:133
+msgid "Hidden list"
+msgstr ""
+
+#: src/components/interstitials/Trending.tsx:133
+#: src/components/interstitials/TrendingVideos.tsx:139
+#: src/components/moderation/ContentHider.tsx:220
+#: src/components/moderation/LabelPreference.tsx:141
+#: src/components/moderation/PostHider.tsx:140
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811
+#: 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:131
+msgid "Hide"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:928
+msgctxt "action"
+msgid "Hide"
+msgstr ""
+
+#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:139
+#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:146
+msgid "Hide all events"
+msgstr ""
+
+#: src/components/dialogs/Embed.tsx:124
+msgid "Hide customization options"
+msgstr ""
+
+#: src/components/dms/SystemMessageGroup.tsx:57
+msgid "Hide group chat updates"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:533
+msgid "Hide lists"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654
+msgid "Hide post for me"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675
+msgid "Hide reply for everyone"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654
+msgid "Hide reply for me"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:111
+msgid "Hide this card"
+msgstr ""
+
+#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:127
+#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:134
+msgid "Hide this event"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808
+msgid "Hide this post?"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843
+msgid "Hide this reply?"
+msgstr ""
+
+#: src/components/Post/Translated/index.tsx:216
+#: src/components/Post/Translated/index.tsx:350
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547
+msgid "Hide translation"
+msgstr ""
+
+#: src/components/interstitials/Trending.tsx:115
+msgid "Hide trending topics"
+msgstr ""
+
+#: src/components/interstitials/Trending.tsx:131
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:129
+msgid "Hide trending topics?"
+msgstr ""
+
+#: src/components/interstitials/TrendingVideos.tsx:137
+msgid "Hide trending videos?"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:919
+msgid "Hide user list"
+msgstr ""
+
+#: src/screens/Moderation/VerificationSettings.tsx:88
+#: src/screens/Moderation/VerificationSettings.tsx:97
+msgid "Hide verification badges"
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:171
+#: src/components/moderation/PostHider.tsx:94
+msgid "Hides the content"
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:76
+msgid "Hmm, it looks like you're signed in with an <0>App Password0>. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so."
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:125
+msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue."
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:113
+msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue."
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:119
+msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue."
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:116
+msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue."
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:110
+msgid "Hmm, we're having trouble finding this feed. It may have been deleted."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:61
+msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us."
+msgstr ""
+
+#: src/screens/Profile/ErrorState.tsx:32
+msgid "Hmmmm, we couldn't load that moderation service."
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:415
+msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:362
+msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
+msgstr ""
+
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
+#: src/view/shell/Drawer.tsx:443
+msgid "Home"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:430
+msgid "Host:"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:85
+#: src/screens/Login/LoginForm.tsx:182
+msgid "Hosting provider"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179
+msgid "Hot"
+msgstr ""
+
+#: src/components/contacts/components/InviteInfo.tsx:54
+msgid "How it works:"
+msgstr ""
+
+#: src/components/dialogs/InAppBrowserConsent.tsx:63
+#: src/components/dialogs/InAppBrowserConsent.tsx:67
+msgid "How should we open this link?"
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:279
+msgid "How we use your number:"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:150
+msgid "Human trafficking"
+msgstr ""
+
+#: src/components/contacts/screens/GetContacts.tsx:267
+msgid "I consent to Bluesky using my contacts for mutual friend discovery and to retain hashed data for matching until I opt out."
+msgstr ""
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:134
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:137
+msgid "I have a code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:292
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:298
+msgid "I have my own domain"
+msgstr ""
+
+#: src/components/dms/BlockedByListDialog.tsx:55
+msgid "I understand"
+msgstr ""
+
+#. placeholder {0}: currentAccount.handle
+#: src/components/contacts/screens/ViewMatches.tsx:578
+msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
+msgstr ""
+
+#: src/components/Lightbox/Lightbox.web.tsx:246
+msgid "If alt text is long, toggles alt text expanded state"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:235
+msgid "If none are selected, all languages will be shown in your feeds."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:121
+msgid "If you are 18 years of age or older and want to try again, click the button below and use a different verification method if one is available in your region. If you have questions or concerns, <0>our support team can help.0>"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:337
+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:125
+msgid "If you believe your birthdate is incorrect, please <0>contact our support team0>."
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:106
+msgid "If you believe your birthdate is incorrect, you can update it by <0>clicking here0>."
+msgstr ""
+
+#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:118
+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:272
+msgid "If you delete this list, you won't be able to recover it."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:274
+msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
+msgid "If you need to update your email, <0>click here0>."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801
+msgid "If you remove this post, you won't be able to recover it."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
+msgid "If you update your email address, email 2FA will be disabled."
+msgstr ""
+
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:60
+msgid "If you want to change your password, we will send you a code to verify that this is your account."
+msgstr ""
+
+#: src/view/screens/Storybook/Admonitions.tsx:90
+msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
+msgstr ""
+
+#: src/components/dialogs/ServerInput.tsx:210
+msgid "If you're a developer, you can host your own server."
+msgstr ""
+
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92
+msgid "If you're trying to change your handle or email, do so before you deactivate."
+msgstr ""
+
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
+msgid "Image"
+msgstr ""
+
+#. placeholder {0}: index + 1
+#: src/components/images/Gallery/index.tsx:451
+msgid "Image {0}"
+msgstr ""
+
+#. placeholder {0}: index + 1
+#. placeholder {1}: imgs.length
+#: src/components/Lightbox/Lightbox.web.tsx:261
+msgid "Image {0} of {1}"
+msgstr ""
+
+#. placeholder {0}: index + 1
+#: src/components/images/Gallery/index.tsx:436
+msgid "Image {0} of {imageCount}"
+msgstr ""
+
+#: src/screens/Settings/AboutSettings.tsx:67
+msgid "Image cache cleared"
+msgstr ""
+
+#. Android-only toast message which includes amount of space freed using localized number formatting
+#. placeholder {0}: i18n.number( Math.abs(sizeDiffBytes / 1024 / 1024), { notation: 'compact', style: 'unit', unit: 'megabyte', }, )
+#: src/screens/Settings/AboutSettings.tsx:53
+msgid "Image cache cleared, freed {0}"
+msgstr ""
+
+#. placeholder {0}: images.length
+#: src/components/images/Gallery/index.tsx:264
+msgid "Image gallery, {0} images"
+msgstr ""
+
+#. Image has been moderated and user has the option of showing it temporarily
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
+msgid "Image is hidden due to your moderation settings."
+msgstr ""
+
+#. Image has been moderated and is not visible to the user
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
+msgid "Image is unavailable."
+msgstr ""
+
+#: src/components/Lightbox/chrome/ImageMenu.tsx:73
+#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
+msgid "Image options"
+msgstr ""
+
+#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/lib/media/save-image.ios.ts:25
+#: src/lib/media/save-image.ts:29
+msgid "Image saved"
+msgstr ""
+
+#: src/components/Lightbox/Lightbox.web.tsx:82
+msgid "Image viewer"
+msgstr ""
+
+#: src/lib/media/save-image.ts:51
+msgid "Images cannot be saved unless permission is granted to access your photo library."
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:51
+msgid "Impersonation"
+msgstr ""
+
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81
+#: src/screens/Settings/FindContactsSettings.tsx:146
+#: src/screens/Settings/FindContactsSettings.tsx:151
+msgid "Import contacts"
+msgstr ""
+
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
+msgid "Import Contacts"
+msgstr ""
+
+#: src/components/contacts/FindContactsBannerNUX.tsx:33
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
+msgid "Import contacts to find your friends"
+msgstr ""
+
+#. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', })
+#: src/screens/Settings/FindContactsSettings.tsx:514
+msgid "Imported on {0}"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:216
+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 ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:387
+msgid "In-app"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
+msgid "In-app notifications"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr ""
+
+#: src/screens/Messages/ChatList.tsx:362
+msgid "Inbox empty"
+msgstr ""
+
+#. Title message shown in chat requests inbox when it's empty
+#: src/screens/Messages/Inbox.tsx:218
+msgid "Inbox zero!"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:162
+msgid "Incorrect username or password"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:135
+msgid "Input code sent to your email for password reset"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:161
+msgid "Input new password"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:299
+msgid "Input the code which has been emailed to you"
+msgstr ""
+
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:138
+msgid "Interaction limited"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:269
+msgid "Interaction settings"
+msgstr ""
+
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:33
+msgid "Introducing activity notifications"
+msgstr ""
+
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:49
+msgid "Introducing drafts"
+msgstr ""
+
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:56
+msgid "Introducing finding friends via contacts"
+msgstr ""
+
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38
+msgid "Introducing saved posts AKA bookmarks"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:153
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:71
+msgid "Invalid 2FA confirmation code."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
+msgid "Invalid handle. Please try a different one."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400
+msgctxt "toast"
+msgid "Invalid interaction settings."
+msgstr ""
+
+#: src/components/contacts/phone-number.ts:33
+#: src/components/contacts/screens/PhoneInput.tsx:142
+msgid "Invalid phone number"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:100
+msgid "Invalid report subject"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:86
+msgid "Invalid Verification Code"
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:587
+msgid "Invite"
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:567
+msgid "Invite {name} to join Bluesky"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:190
+msgid "Invite code"
+msgstr ""
+
+#: src/screens/Signup/state.ts:347
+msgid "Invite code not accepted. Check that you input it correctly and try again."
+msgstr ""
+
+#: src/components/contacts/components/InviteInfo.tsx:42
+#: src/components/contacts/components/InviteInfo.tsx:44
+msgid "Invite Friends"
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:301
+msgid "Invite friends <0/>"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
+msgid "Invite link"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:120
+msgid "Invite link created"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:138
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+msgid "Invite link disabled"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:126
+msgid "Invite link edited"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:132
+msgid "Invite link enabled"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:83
+msgid "Invite people to this starter pack!"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:37
+msgid "Invite your friends to follow your favorite feeds and people"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152
+msgid "Invited"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:34
+msgid "Invites, but personal"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:394
+msgid "Is your location not accurate? <0>Tap here to update your location with GPS.0> "
+msgstr ""
+
+#: src/components/contacts/components/InviteInfo.tsx:47
+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:370
+msgid "It's correct"
+msgstr ""
+
+#. placeholder {0}: getName(items[0])
+#: src/screens/StarterPack/Wizard/index.tsx:483
+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:478
+msgid "It's just you right now! Add more people to your starter pack by searching above."
+msgstr ""
+
+#. placeholder {0}: videoState.jobId
+#: src/view/com/composer/Composer.tsx:2454
+msgid "Job ID: {0}"
+msgstr ""
+
+#. Link to a page with job openings at Bluesky
+#: src/view/com/auth/SplashScreen.web.tsx:179
+msgid "Jobs"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
+#: src/screens/StarterPack/StarterPackScreen.tsx:478
+#: src/screens/StarterPack/StarterPackScreen.tsx:488
+msgid "Join Bluesky"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
+#: src/components/StarterPack/QrCode.tsx:72
+#: src/view/shell/NavSignupCard.tsx:41
+msgid "Join the conversation"
+msgstr ""
+
+#: src/lib/interests.ts:63
+msgid "Journalism"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
+#: src/view/com/composer/drafts/DraftsButton.tsx:135
+msgid "Keep editing"
+msgstr ""
+
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:230
+msgid "Keep me posted"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200
+msgid "KWS website"
+msgstr ""
+
+#. placeholder {0}: sanitizeDisplayName(desc.source!)
+#: src/components/moderation/ContentHider.tsx:251
+msgid "Labeled by {0}."
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:249
+msgid "Labeled by the author."
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:70
+#: src/view/screens/Profile.tsx:232
+msgid "Labels"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:68
+msgid "Labels added"
+msgstr ""
+
+#: src/screens/Profile/Sections/Labels.tsx:194
+msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:77
+msgid "Labels on your account"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:79
+msgid "Labels on your content"
+msgstr ""
+
+#: src/Navigation.tsx:217
+msgid "Language Settings"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:98
+#: src/screens/Settings/Settings.tsx:239
+#: src/screens/Settings/Settings.tsx:242
+msgid "Languages"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:160
+msgid "Larger"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:377
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:201
+msgid "Last initiated {timeAgo} ago"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:375
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:199
+msgid "Last initiated just now"
+msgstr ""
+
+#: src/screens/Hashtag.tsx:99
+#: src/screens/Search/SearchResults.tsx:64
+#: src/screens/Topic.tsx:65
+msgid "Latest"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:168
+#: src/components/verification/VerifierDialog.tsx:136
+#: src/screens/Moderation/VerificationSettings.tsx:50
+#: src/screens/Profile/Header/EditProfileDialog.tsx:346
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:279
+msgctxt "english-only-resource"
+msgid "Learn more"
+msgstr ""
+
+#: src/components/moderation/ScreenHider.tsx:147
+msgid "Learn More"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66
+msgid "Learn more about age assurance"
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.web.tsx:167
+msgid "Learn more about Bluesky"
+msgstr ""
+
+#: src/components/contacts/components/InviteInfo.tsx:33
+msgid "Learn more about how inviting friends works"
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:303
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53
+#: src/screens/Settings/FindContactsSettings.tsx:133
+msgctxt "english-only-resource"
+msgid "Learn more about importing contacts"
+msgstr ""
+
+#: src/components/dialogs/ServerInput.tsx:220
+msgid "Learn more about self hosting your PDS."
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:169
+#: src/components/moderation/ContentHider.tsx:235
+msgid "Learn more about the moderation applied to this content"
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:150
+msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post.0>"
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:90
+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:116
+#: src/components/moderation/ScreenHider.tsx:134
+msgid "Learn more about this warning"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:153
+#: src/components/verification/VerifierDialog.tsx:122
+msgctxt "english-only-resource"
+msgid "Learn more about verification on Bluesky"
+msgstr ""
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131
+msgid "Learn more about what is public on Bluesky."
+msgstr ""
+
+#: src/screens/Profile/components/GermButton.tsx:212
+msgid "Learn more about your Germ DM link"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:90
+msgid "Learn more in your <0>account settings.0>"
+msgstr ""
+
+#: src/components/dialogs/ServerInput.tsx:222
+#: src/components/moderation/ContentHider.tsx:259
+msgid "Learn more."
+msgstr ""
+
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
+msgid "Leave"
+msgstr ""
+
+#. Leave a conversation (reject a chat invitation)
+#: src/screens/Messages/components/ChatStatusInfo.tsx:78
+msgctxt "Button"
+msgid "Leave"
+msgstr ""
+
+#: src/components/dms/MessagesListBlockedFooter.tsx:109
+#: src/components/dms/MessagesListBlockedFooter.tsx:116
+#: src/screens/Messages/components/ChatEnded.tsx:67
+#: src/screens/Messages/components/ChatLocked.tsx:100
+msgid "Leave chat"
+msgstr ""
+
+#: src/components/dms/AfterReportConversationDialog.tsx:229
+#: src/components/dms/AfterReportConversationDialog.tsx:233
+#: src/components/dms/ConvoMenu.tsx:246
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/dms/ConvoMenu.tsx:316
+#: src/components/dms/ConvoMenu.tsx:320
+#: src/components/dms/LeaveConvoPrompt.tsx:53
+msgid "Leave conversation"
+msgstr ""
+
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:174
+msgctxt "button"
+msgid "Leave conversation"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
+msgid "Leave group chat"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:525
+msgid "Leave this group chat"
+msgstr ""
+
+#: src/components/dialogs/LinkWarning.tsx:83
+#: src/components/dialogs/LinkWarning.tsx:91
+msgid "Leaving Bluesky"
+msgstr ""
+
+#: src/screens/SignupQueued.tsx:158
+msgid "left to go."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:354
+msgid "Let me choose"
+msgstr ""
+
+#: src/screens/Login/index.tsx:173
+#: src/screens/Login/index.tsx:189
+msgid "Let's get your password reset!"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished/index.tsx:337
+msgid "Let's go!"
+msgstr ""
+
+#: src/components/dialogs/Embed.tsx:159
+#: src/components/dialogs/Embed.tsx:161
+#: src/screens/Settings/AppearanceSettings.tsx:89
+msgid "Light"
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14
+msgctxt "Name of app icon variant"
+msgid "Light"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
+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
+#. placeholder {0}: post.likeCount || 0
+#: src/components/PostControls/index.tsx:284
+msgid "Like ({0, plural, one {# like} other {# likes}})"
+msgstr ""
+
+#: src/components/ProgressGuide/List.tsx:110
+msgid "Like 10 posts"
+msgstr ""
+
+#: 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/screens/Profile/components/ProfileFeedHeader.tsx:497
+msgid "Like this feed"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:148
+msgid "Like this labeler"
+msgstr ""
+
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
+msgid "Liked by"
+msgstr ""
+
+#: src/screens/Post/PostLikedBy.tsx:31
+#: src/screens/Profile/ProfileLabelerLikedBy.tsx:22
+#: src/view/screens/ProfileFeedLikedBy.tsx:22
+msgid "Liked By"
+msgstr ""
+
+#. placeholder {0}: count || 0
+#. placeholder {0}: feed.likeCount || 0
+#: src/components/FeedCard.tsx:249
+#: src/view/com/feeds/FeedSourceCard.tsx:173
+msgid "Liked by {0, plural, one {# user} other {# users}}"
+msgstr ""
+
+#: src/components/LabelingServiceCard/index.tsx:96
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
+msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
+msgstr ""
+
+#: src/lib/hooks/useNotificationHandler.ts:160
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
+#: src/view/screens/Profile.tsx:238
+msgid "Likes"
+msgstr ""
+
+#: src/lib/hooks/useNotificationHandler.ts:202
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
+msgid "Likes of your reposts"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
+msgid "Likes on this post"
+msgstr ""
+
+#: src/screens/PostThread/components/HeaderDropdown.tsx:49
+#: src/screens/PostThread/components/HeaderDropdown.tsx:54
+msgid "Linear"
+msgstr ""
+
+#: src/components/Lightbox/Lightbox.web.tsx:300
+msgid "Link copied to clipboard"
+msgstr ""
+
+#: src/Navigation.tsx:250
+msgid "List"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:397
+msgid "List avatar"
+msgstr ""
+
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:48
+msgctxt "toast"
+msgid "List blocked"
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle(creator.handle, '@')
+#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
+#: src/components/ListCard.tsx:153
+#: src/view/com/feeds/FeedSourceCard.tsx:153
+msgid "List by {0}"
+msgstr ""
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:145
+msgid "List by <0/>"
+msgstr ""
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:143
+msgid "List by you"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:127
+msgid "List created, but failed to add some members"
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:155
+msgid "List creator"
+msgstr ""
+
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:93
+msgctxt "toast"
+msgid "List deleted"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:446
+msgid "List description"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:466
+msgid "List description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:133
+msgid "List has been hidden"
+msgstr ""
+
+#: src/screens/ProfileList/index.tsx:175
+msgid "List Hidden"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:438
+msgid "List must have a name."
+msgstr ""
+
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:33
+msgctxt "toast"
+msgid "List muted"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:410
+msgid "List name"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:430
+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:115
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:130
+msgctxt "toast"
+msgid "List unblocked"
+msgstr ""
+
+#: src/screens/ProfileList/components/Header.tsx:101
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:116
+msgctxt "toast"
+msgid "List unmuted"
+msgstr ""
+
+#: src/Navigation.tsx:171
+#: src/view/screens/Lists.tsx:60
+#: src/view/screens/Profile.tsx:233
+#: src/view/screens/Profile.tsx:241
+#: src/view/shell/desktop/LeftNav.tsx:722
+#: src/view/shell/Drawer.tsx:548
+msgid "Lists"
+msgstr ""
+
+#: src/view/com/lists/MyLists.tsx:72
+msgid "Lists allow you to see content from your favorite people."
+msgstr ""
+
+#: src/components/dms/BlockedByListDialog.tsx:38
+msgid "Lists blocking this user:"
+msgstr ""
+
+#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters
+#: src/features/liveNow/components/LiveIndicator.tsx:46
+msgid "LIVE"
+msgstr ""
+
+#. placeholder {0}: feed.title
+#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:53
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:54
+msgid "Live event happening now: {0}"
+msgstr ""
+
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33
+msgid "Live event hidden"
+msgstr ""
+
+#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:106
+msgid "Live event options"
+msgstr ""
+
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35
+msgid "Live event unhidden"
+msgstr ""
+
+#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:110
+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/features/liveNow/components/LiveStatusDialog.tsx:245
+msgid "Live feature is in beta"
+msgstr ""
+
+#: src/features/liveNow/components/EditLiveDialog.tsx:149
+#: src/features/liveNow/components/EditLiveDialog.tsx:153
+#: src/features/liveNow/components/GoLiveDialog.tsx:131
+#: src/features/liveNow/components/GoLiveDialog.tsx:135
+msgid "Live link"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:90
+msgid "Load more"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:519
+#: src/screens/Search/Explore.tsx:610
+msgid "Load more suggested feeds"
+msgstr ""
+
+#: src/view/screens/Notifications.tsx:271
+msgid "Load new notifications"
+msgstr ""
+
+#: src/screens/Profile/ProfileFeed/index.tsx:206
+#: src/screens/Profile/Sections/Feed.tsx:117
+#: src/screens/ProfileList/FeedSection.tsx:113
+#: src/view/com/feeds/FeedPage.tsx:168
+msgid "Load new posts"
+msgstr ""
+
+#: src/screens/Messages/components/MessageComposer.tsx:217
+#: src/screens/Messages/components/MessageInput.tsx:234
+#: src/screens/Messages/components/MessageInput.web.tsx:202
+msgctxt "placeholder"
+msgid "Loading chat…"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:575
+msgid "Loading lists..."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:279
+msgid "Loading post interaction settings..."
+msgstr ""
+
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60
+msgid "Loading..."
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:504
+msgid "Lock"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
+msgid "Lock group chat"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+msgid "Lock group chat?"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:502
+msgid "Lock this group chat"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:504
+msgid "Locked"
+msgstr ""
+
+#: src/Navigation.tsx:320
+msgid "Log"
+msgstr ""
+
+#: src/components/AccountList.tsx:189
+msgid "Logged out"
+msgstr ""
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107
+msgid "Logged-out visibility"
+msgstr ""
+
+#: src/view/shell/desktop/RightNav.tsx:142
+msgid "Logo by @sawaratsuki.bsky.social"
+msgstr ""
+
+#: src/view/shell/desktop/RightNav.tsx:139
+#: src/view/shell/Drawer.tsx:712
+msgid "Logo by <0>@sawaratsuki.bsky.social0>"
+msgstr ""
+
+#. placeholder {0}: isCashtag ? tag : `#${tag}`
+#: src/components/RichTextTag.tsx:55
+msgid "Long press to open tag menu for {0}"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:124
+msgid "Looks like XXXXX-XXXXX"
+msgstr ""
+
+#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:44
+msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below."
+msgstr ""
+
+#: src/screens/Home/NoFeedsPinned.tsx:84
+msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄"
+msgstr ""
+
+#: src/screens/Feeds/NoFollowingFeed.tsx:36
+msgid "Looks like you're missing a following feed. <0>Click here to add one.0>"
+msgstr ""
+
+#. Accessibility label for the icon-only pill that filters the GIF picker to GIFs about love/affection.
+#: src/features/gifPicker/components/GifCategoryPills.tsx:55
+msgid "Love GIFs"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/index.tsx:39
+msgid "Make adjustments to email settings for your account"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:311
+msgid "Make one for me"
+msgstr ""
+
+#: src/components/dialogs/LinkWarning.tsx:101
+msgid "Make sure this is where you intend to go!"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:62
+#: src/screens/Settings/ContentAndMediaSettings.tsx:65
+msgid "Manage saved feeds"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:339
+msgid "Manage verification settings"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:111
+msgid "Manage your muted words and tags"
+msgstr ""
+
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
+msgid "Mark all as read"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:258
+#: src/components/dms/ConvoMenu.tsx:262
+msgid "Mark as read"
+msgstr ""
+
+#: src/screens/Messages/Inbox.tsx:294
+msgid "Marked all as read"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+msgid "Maybe later"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:236
+msgid "Media"
+msgstr ""
+
+#. Example: "Media stored on John's iPhone"
+#. placeholder {0}: draft.draft.deviceName
+#: src/view/com/composer/drafts/DraftItem.tsx:119
+msgid "Media stored on {0}"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:117
+msgid "Media stored on another device"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:206
+msgid "Media that may be disturbing or inappropriate for some audiences."
+msgstr ""
+
+#. The heading above the list of chat members.
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+msgid "Members"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
+msgid "Members can still read chat history but can’t send new messages."
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:320
+msgid "mentioned users"
+msgstr ""
+
+#: src/lib/hooks/useNotificationHandler.ts:181
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
+#: src/view/screens/Notifications.tsx:99
+msgid "Mentions"
+msgstr ""
+
+#: src/components/Menu/index.tsx:113
+msgid "Menu"
+msgstr ""
+
+#: src/screens/Messages/components/MessageInput.tsx:178
+msgid "Message"
+msgstr ""
+
+#: src/screens/Messages/components/MessageComposer.tsx:218
+#: src/screens/Messages/components/MessageInput.tsx:235
+#: src/screens/Messages/components/MessageInput.web.tsx:203
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199
+msgctxt "action"
+msgid "Message"
+msgstr ""
+
+#. placeholder {0}: profile.handle
+#: src/components/dms/MessageProfileButton.tsx:99
+msgid "Message {0}"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195
+msgid "Message {displayName}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:330
+msgid "Message deleted"
+msgstr ""
+
+#: src/components/dms/MessageOverlays.tsx:111
+msgctxt "toast"
+msgid "Message deleted"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:535
+msgid "Message failed to send."
+msgstr ""
+
+#. placeholder {0}: sender?.handle ?? 'unknown'
+#. placeholder {1}: message.text
+#: src/components/dms/MessageContextMenu.tsx:129
+msgid "Message from @{0}: {1}"
+msgstr ""
+
+#. placeholder {0}: rawError.message
+#: src/view/com/posts/PostFeedErrorMessage.tsx:209
+msgid "Message from server: {0}"
+msgstr ""
+
+#: src/screens/Messages/components/MessageComposer.tsx:214
+#: src/screens/Messages/components/MessageInput.tsx:176
+msgid "Message input field"
+msgstr ""
+
+#: src/screens/Messages/components/MessageInput.tsx:86
+#: src/screens/Messages/components/MessageInput.web.tsx:55
+msgid "Message is too long"
+msgstr ""
+
+#: src/screens/Messages/components/MessageComposer.tsx:89
+msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:128
+msgid "Message options"
+msgstr ""
+
+#: src/Navigation.tsx:755
+msgid "Messages"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:634
+msgid "Messages from this person are hidden while they are blocking you."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:629
+msgid "Messages from this person are hidden while you are blocking them."
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101
+msgctxt "Name of app icon variant"
+msgid "Midnight"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:177
+msgid "Minor harassment or bullying"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
+msgid "Misleading"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:131
+msgid "Missing media"
+msgstr ""
+
+#: src/Navigation.tsx:176
+#: src/screens/Moderation/index.tsx:100
+msgid "Moderation"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:189
+#: src/screens/Settings/Settings.tsx:192
+msgid "Moderation and content filters"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:142
+msgid "Moderation details"
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle(creator.handle, '@')
+#. placeholder {0}: sanitizeHandle(list.creator.handle, '@')
+#: src/components/ListCard.tsx:152
+#: src/view/com/modals/UserAddRemoveLists.tsx:223
+msgid "Moderation list by {0}"
+msgstr ""
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:158
+msgid "Moderation list by <0/>"
+msgstr ""
+
+#: src/view/com/modals/UserAddRemoveLists.tsx:221
+#: src/view/com/profile/ProfileSubpageHeader.tsx:156
+msgid "Moderation list by you"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:256
+msgctxt "toast"
+msgid "Moderation list created"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:242
+msgctxt "toast"
+msgid "Moderation list updated"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:299
+msgid "Moderation lists"
+msgstr ""
+
+#: src/Navigation.tsx:181
+#: src/view/screens/ModerationModlists.tsx:60
+msgid "Moderation Lists"
+msgstr ""
+
+#: src/components/moderation/LabelPreference.tsx:257
+msgid "moderation settings"
+msgstr ""
+
+#: src/Navigation.tsx:310
+msgid "Moderation states"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:253
+msgid "Moderation tools"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:56
+#: src/lib/moderation/useModerationCauseDescription.ts:48
+msgid "Moderator has chosen to set a general warning on the content."
+msgstr ""
+
+#: src/view/shell/desktop/Feeds.tsx:106
+#: src/view/shell/desktop/Feeds.tsx:153
+msgid "More feeds"
+msgstr ""
+
+#: src/view/com/composer/select-language/PostLanguageSelect.tsx:125
+#: src/view/com/composer/select-language/PostLanguageSelect.tsx:128
+msgid "More languages..."
+msgstr ""
+
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144
+#: src/view/com/composer/drafts/DraftItem.tsx:190
+#: src/view/com/profile/ProfileMenu.tsx:254
+#: src/view/com/profile/ProfileMenu.tsx:261
+msgid "More options"
+msgstr ""
+
+#: src/screens/SavedFeeds.tsx:488
+msgid "Move feed down"
+msgstr ""
+
+#: src/screens/SavedFeeds.tsx:478
+msgid "Move feed up"
+msgstr ""
+
+#: src/lib/interests.ts:64
+msgid "Movies"
+msgstr ""
+
+#: src/lib/interests.ts:65
+msgid "Music"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:466
+msgid "Mute"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:171
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97
+msgctxt "video"
+msgid "Mute"
+msgstr ""
+
+#. placeholder {0}: isCashtag ? tag : `#${tag}`
+#: src/components/RichTextTag.tsx:154
+#: src/components/RichTextTag.tsx:170
+msgid "Mute {0}"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736
+#: src/view/com/profile/ProfileMenu.tsx:448
+#: src/view/com/profile/ProfileMenu.tsx:455
+msgid "Mute account"
+msgstr ""
+
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:83
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:86
+msgid "Mute accounts"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:277
+#: src/components/dms/ConvoMenu.tsx:284
+msgid "Mute conversation"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:262
+msgid "Mute in:"
+msgstr ""
+
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:109
+msgid "Mute list"
+msgstr ""
+
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:104
+msgid "Mute these accounts?"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:464
+msgid "Mute this group chat"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:194
+msgid "Mute this word for 24 hours"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:233
+msgid "Mute this word for 30 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:218
+msgid "Mute this word for 7 days"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:267
+msgid "Mute this word in post text and tags"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:283
+msgid "Mute this word in tags only"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:179
+msgid "Mute this word until you unmute it"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624
+msgid "Mute thread"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636
+msgid "Mute words & tags"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:466
+msgid "Muted"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:314
+msgid "Muted accounts"
+msgstr ""
+
+#: src/Navigation.tsx:186
+#: src/view/screens/ModerationMutedAccounts.tsx:107
+msgid "Muted Accounts"
+msgstr ""
+
+#: src/view/screens/ModerationMutedAccounts.tsx:193
+msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private."
+msgstr ""
+
+#. placeholder {0}: cause.source.list.name
+#: src/lib/moderation/useModerationCauseDescription.ts:93
+msgid "Muted by \"{0}\""
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:284
+msgid "Muted words & tags"
+msgstr ""
+
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:106
+msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them."
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:54
+#: src/components/dialogs/BirthDateSettings.tsx:58
+msgid "My birthdate"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:77
+msgid "My favorite feeds and people - join me!"
+msgstr ""
+
+#: src/view/screens/Feeds.tsx:697
+msgid "My Feeds"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:49
+msgid "My starter pack"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:416
+msgid "Name"
+msgstr ""
+
+#: src/lib/interests.ts:66
+msgid "Nature"
+msgstr ""
+
+#. placeholder {0}: record.name
+#. placeholder {0}: view.record.name
+#: src/components/StarterPack/StarterPackCard.tsx:134
+#: src/components/StarterPack/StarterPackCard.tsx:169
+msgid "Navigate to {0}"
+msgstr ""
+
+#: src/components/StarterPack/StarterPackCard.tsx:135
+msgid "Navigate to starter pack"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:150
+#: src/screens/Login/ForgotPasswordForm.tsx:175
+#: src/screens/Login/LoginForm.tsx:351
+msgid "Navigates to the next screen"
+msgstr ""
+
+#: src/view/shell/Drawer.tsx:81
+msgid "Navigates to your profile"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
+msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:585
+msgid "Nevermind, create a handle for me"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184
+#: src/view/com/profile/ProfileMenu.tsx:403
+msgid "New"
+msgstr ""
+
+#: src/view/screens/Lists.tsx:71
+#: src/view/screens/ModerationModlists.tsx:72
+msgctxt "action"
+msgid "New"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:554
+msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:537
+msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
+msgid "New chat"
+msgstr ""
+
+#. placeholder {0}: createSanitizedDisplayName(members[0])
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
+msgid "New chat with {0}"
+msgstr ""
+
+#. placeholder {0}: createSanitizedDisplayName(members[0])
+#. placeholder {1}: createSanitizedDisplayName(members[1])
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
+msgid "New chat with {0} and {1}"
+msgstr ""
+
+#. placeholder {0}: createSanitizedDisplayName(members[0])
+#. placeholder {1}: createSanitizedDisplayName(members[1])
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
+msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
+msgid "New email address"
+msgstr ""
+
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:75
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:74
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:85
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:65
+msgid "New Feature"
+msgstr ""
+
+#: src/lib/hooks/useNotificationHandler.ts:195
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
+msgid "New followers"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:239
+msgid "New group chat"
+msgstr ""
+
+#. Button used to create a new group chat.
+#. Button used to create a new group chat.
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
+msgctxt "action"
+msgid "New group chat"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:276
+msgid "New group chat with:"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:228
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:236
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:387
+msgid "New handle"
+msgstr ""
+
+#: src/view/screens/Lists.tsx:64
+#: src/view/screens/ModerationModlists.tsx:64
+msgid "New list"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:143
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:204
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:208
+msgid "New password"
+msgstr ""
+
+#: src/screens/Profile/ProfileFeed/index.tsx:217
+#: src/screens/ProfileList/index.tsx:237
+#: src/screens/ProfileList/index.tsx:280
+#: src/view/screens/Feeds.tsx:545
+#: src/view/screens/Notifications.tsx:165
+#: src/view/screens/Profile.tsx:593
+msgid "New post"
+msgstr ""
+
+#: src/view/com/feeds/FeedPage.tsx:179
+#: src/view/shell/desktop/LeftNav.tsx:598
+msgctxt "action"
+msgid "New post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:543
+msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> "
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:528
+msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}"
+msgstr ""
+
+#: src/components/dialogs/StarterPackDialog.tsx:202
+msgid "New starter pack"
+msgstr ""
+
+#: src/components/NewskieDialog.tsx:122
+msgid "New user info dialog"
+msgstr ""
+
+#: src/screens/PostThread/components/HeaderDropdown.tsx:95
+#: src/screens/PostThread/components/HeaderDropdown.tsx:100
+#: src/screens/Settings/ThreadPreferences.tsx:73
+#: src/screens/Settings/ThreadPreferences.tsx:76
+msgid "Newest replies first"
+msgstr ""
+
+#: src/lib/interests.ts:67
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226
+msgid "News"
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:395
+#: src/components/contacts/screens/ViewMatches.tsx:410
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
+#: src/screens/Login/ForgotPasswordForm.tsx:149
+#: src/screens/Login/ForgotPasswordForm.tsx:156
+#: src/screens/Login/SetNewPasswordForm.tsx:186
+#: src/screens/Login/SetNewPasswordForm.tsx:192
+#: src/screens/Onboarding/StepFinished/index.tsx:330
+#: src/screens/Onboarding/StepFinished/index.tsx:339
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165
+#: src/screens/Signup/BackNextButtons.tsx:68
+#: src/screens/StarterPack/Wizard/index.tsx:198
+#: src/screens/StarterPack/Wizard/index.tsx:202
+#: src/screens/StarterPack/Wizard/index.tsx:384
+#: src/screens/StarterPack/Wizard/index.tsx:391
+msgid "Next"
+msgstr ""
+
+#: src/components/Lightbox/Lightbox.web.tsx:218
+msgid "Next image"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32
+msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention."
+msgstr ""
+
+#: src/screens/Settings/AppPasswords.tsx:108
+msgid "No app passwords yet"
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:681
+msgid "No contacts found"
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:659
+msgid "No contacts with the name “{query}” found"
+msgstr ""
+
+#: src/view/com/feeds/ProfileFeedgens.tsx:161
+msgid "No custom feeds yet"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:410
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:412
+msgid "No DNS Panel"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:143
+msgid "No drafts yet"
+msgstr ""
+
+#: src/features/liveNow/components/EditLiveDialog.tsx:141
+msgid "No expiry set"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepFeeds.tsx:122
+msgid "No feeds found. Try searching for something else."
+msgstr ""
+
+#: src/view/com/profile/ProfileFollowers.tsx:169
+msgid "No followers yet"
+msgstr ""
+
+#. Empty-state message shown in the GIF picker when a search returns zero results. Placeholder is the user’s search query.
+#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:25
+msgid "No GIFs found for \"{query}\"."
+msgstr ""
+
+#. Empty-state message shown when the trending/featured GIF feed returns no results (rare, usually a transient provider issue).
+#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:36
+msgid "No GIFs to show right now. Try again in a moment."
+msgstr ""
+
+#: src/features/liveNow/components/LinkPreview.tsx:64
+msgid "No image"
+msgstr ""
+
+#: src/components/LikedByList.tsx:84
+#: src/view/com/post-thread/PostLikedBy.tsx:84
+#: src/view/screens/Profile.tsx:525
+msgid "No likes yet"
+msgstr ""
+
+#: src/view/com/lists/ProfileLists.tsx:160
+msgid "No lists"
+msgstr ""
+
+#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), )
+#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, )
+#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), )
+#: src/components/ProfileCard.tsx:521
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288
+#: src/view/com/notifications/NotificationFeedItem.tsx:785
+msgid "No longer following {0}"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:471
+msgid "No media yet"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:316
+msgid "No messages yet"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14
+msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you."
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:563
+msgid "No name"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeed.tsx:125
+msgid "No notifications yet!"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:88
+msgctxt "allow group chat invites from"
+msgid "No one"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:70
+msgctxt "allow messages from"
+msgid "No one"
+msgstr ""
+
+#: src/screens/Settings/ActivityPrivacySettings.tsx:130
+#: src/screens/Settings/ActivityPrivacySettings.tsx:135
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160
+msgctxt "enable for"
+msgid "No one"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:303
+msgid "No one but the author can quote this post."
+msgstr ""
+
+#: src/screens/Messages/components/ChatLocked.tsx:62
+msgid "No one can send messages"
+msgstr ""
+
+#: src/screens/Notifications/ActivityList.tsx:43
+msgid "No posts here"
+msgstr ""
+
+#: src/screens/Profile/Sections/Feed.tsx:81
+#: src/view/screens/Profile.tsx:430
+msgid "No posts yet"
+msgstr ""
+
+#: src/view/com/post-thread/PostQuotes.tsx:107
+msgid "No quotes yet"
+msgstr ""
+
+#. Empty-state message shown in the GIF picker’s Recents tab before the user has selected any GIFs.
+#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:31
+msgid "No recent GIFs yet. Pick one to see it here."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:456
+msgid "No replies yet"
+msgstr ""
+
+#: src/view/com/post-thread/PostRepostedBy.tsx:90
+msgid "No reposts yet"
+msgstr ""
+
+#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60
+#: src/view/com/composer/text-input/web/Autocomplete.tsx:192
+msgid "No result"
+msgstr ""
+
+#: src/components/dialogs/SearchablePeopleList.tsx:250
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
+#: src/components/ProgressGuide/FollowDialog.tsx:221
+msgid "No results"
+msgstr ""
+
+#. placeholder {0}: interestsDisplayNames[selectedInterest]
+#: src/screens/Search/Explore.tsx:828
+msgid "No results for \"{0}\"."
+msgstr ""
+
+#: src/components/Lists.tsx:204
+#: src/components/Lists.tsx:219
+msgid "No results found"
+msgstr ""
+
+#: src/view/screens/Feeds.tsx:466
+msgid "No results found for \"{query}\""
+msgstr ""
+
+#: src/screens/Search/SearchResults.tsx:178
+msgid "No results found for “<0>{query}0>”."
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:832
+msgid "No results."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:557
+msgid "No Starter Packs yet"
+msgstr ""
+
+#: src/components/dialogs/EmbedConsent.tsx:100
+#: src/components/dialogs/EmbedConsent.tsx:107
+msgid "No thanks"
+msgstr ""
+
+#: src/lib/translation/index.tsx:308
+msgid "No translation received from your device."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:498
+msgid "No video posts yet"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:471
+msgid "Nobody"
+msgstr ""
+
+#: src/components/LikedByList.tsx:86
+#: src/view/com/post-thread/PostLikedBy.tsx:86
+msgid "Nobody has liked this yet. Maybe you should be the first!"
+msgstr ""
+
+#: src/view/com/post-thread/PostQuotes.tsx:109
+msgid "Nobody has quoted this yet. Maybe you should be the first!"
+msgstr ""
+
+#: src/view/com/post-thread/PostRepostedBy.tsx:92
+msgid "Nobody has reposted this yet. Maybe you should be the first!"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepProfiles.tsx:107
+msgid "Nobody was found. Try searching for someone else."
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:80
+msgid "Non-consensual intimate imagery"
+msgstr ""
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:42
+msgid "Non-sexual Nudity"
+msgstr ""
+
+#: src/screens/FindContactsFlowScreen.tsx:62
+#: src/screens/Settings/FindContactsSettings.tsx:104
+msgid "Not available on this platform."
+msgstr ""
+
+#: src/components/KnownFollowers.tsx:254
+msgid "Not followed by anyone you’re following"
+msgstr ""
+
+#: src/Navigation.tsx:166
+#: src/view/screens/Profile.tsx:132
+msgid "Not Found"
+msgstr ""
+
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
+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:570
+msgid "Note about sharing"
+msgstr ""
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117
+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:135
+msgid "Note: This post is only visible to logged-in users."
+msgstr ""
+
+#: src/screens/Bookmarks/components/EmptyState.tsx:36
+#: src/screens/Bookmarks/index.tsx:299
+msgid "Nothing saved yet"
+msgstr ""
+
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
+#: src/view/screens/Notifications.tsx:134
+msgid "Notification settings"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
+msgid "Notification sounds"
+msgstr ""
+
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
+#: src/screens/Notifications/ActivityList.tsx:31
+#: src/screens/Settings/NotificationSettings/index.tsx:104
+#: src/screens/Settings/Settings.tsx:197
+#: src/screens/Settings/Settings.tsx:200
+#: src/view/screens/Notifications.tsx:128
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
+#: src/view/shell/Drawer.tsx:496
+msgid "Notifications"
+msgstr ""
+
+#: src/lib/hooks/useTimeAgo.ts:135
+msgid "now"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:146
+#: src/view/com/composer/labels/LabelsBtn.tsx:149
+msgid "Nudity"
+msgstr ""
+
+#: src/components/contacts/phone-number.ts:43
+msgid "Number should be a mobile number"
+msgstr ""
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:14
+#: src/screens/Settings/AccountSettings.tsx:164
+#: src/screens/Settings/NotificationSettings/index.tsx:394
+msgid "Off"
+msgstr ""
+
+#. Title of the error screen shown when the GIF picker crashes unexpectedly.
+#: src/components/dialogs/LanguageSelectDialog.tsx:347
+#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:22
+#: src/view/com/util/ErrorBoundary.tsx:57
+msgid "Oh no!"
+msgstr ""
+
+#. Confirm button text.
+#: src/components/contacts/screens/GetContacts.tsx:317
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:226
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:49
+#: src/screens/Settings/AppIconSettings/index.tsx:46
+#: src/screens/Settings/AppIconSettings/index.tsx:232
+msgid "OK"
+msgstr ""
+
+#: src/components/BotAccountAlert.tsx:52
+#: src/components/BotAccountAlert.tsx:57
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
+#: src/screens/Login/PasswordUpdatedForm.tsx:37
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
+msgid "Okay"
+msgstr ""
+
+#: src/screens/PostThread/components/HeaderDropdown.tsx:85
+#: src/screens/PostThread/components/HeaderDropdown.tsx:90
+#: src/screens/Settings/ThreadPreferences.tsx:65
+#: src/screens/Settings/ThreadPreferences.tsx:68
+msgid "Oldest replies first"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:164
+msgid "On"
+msgstr ""
+
+#: src/components/StarterPack/QrCode.tsx:86
+msgid "on<0><1/><2><3/>2>0>"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:396
+msgid "Onboarding reset"
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
+msgid "One of the selected recipients does not allow group chats."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
+msgid "One of the selected recipients has blocked you and cannot be messaged."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:855
+msgid "One or more GIFs is missing alt text."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:852
+msgid "One or more images is missing alt text."
+msgstr ""
+
+#: src/view/com/composer/SelectMediaButton.tsx:417
+msgid "One or more of your selected files are not supported."
+msgstr ""
+
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:650
+msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:862
+msgid "One or more videos is missing alt text."
+msgstr ""
+
+#. placeholder {0}: settings.map((rule, i) => ( ))
+#: src/components/WhoCanReply.tsx:283
+msgid "Only {0} can reply."
+msgstr ""
+
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
+#: src/screens/Settings/ActivityPrivacySettings.tsx:121
+#: src/screens/Settings/ActivityPrivacySettings.tsx:126
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
+msgid "Only followers who I follow"
+msgstr ""
+
+#: src/lib/media/picker.shared.ts:34
+msgid "Only image files are supported"
+msgstr ""
+
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
+#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
+msgid "Only WebVTT (.vtt) files are supported"
+msgstr ""
+
+#: src/components/Lists.tsx:99
+msgid "Oops, something went wrong!"
+msgstr ""
+
+#: src/components/Lists.tsx:184
+#: src/components/StarterPack/ProfileStarterPacks.tsx:363
+#: src/components/StarterPack/ProfileStarterPacks.tsx:372
+#: src/screens/Settings/AppPasswords.tsx:59
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:108
+#: src/view/screens/Profile.tsx:132
+msgid "Oops!"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:311
+msgid "Open avatar creator"
+msgstr ""
+
+#: src/view/com/feeds/ComposerPrompt.tsx:202
+msgid "Open camera"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
+msgid "Open chat member options for {displayName}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
+msgid "Open conversation options"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:69
+msgid "Open draft"
+msgstr ""
+
+#: src/components/Layout/Header/index.tsx:167
+msgid "Open drawer menu"
+msgstr ""
+
+#: src/screens/Messages/components/MessageComposer.tsx:176
+#: src/screens/Messages/components/MessageInput.web.tsx:148
+#: src/view/com/composer/Composer.tsx:2094
+msgid "Open emoji picker"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
+msgid "Open feed info screen"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
+msgid "Open feed options menu"
+msgstr ""
+
+#: src/components/dms/EmojiPopup.android.tsx:28
+msgid "Open full emoji list"
+msgstr ""
+
+#: src/screens/Profile/components/GermButton.tsx:75
+msgid "Open Germ DM"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
+msgid "Open group chat settings"
+msgstr ""
+
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
+msgid "Open link to {niceUrl}"
+msgstr ""
+
+#: src/components/dms/ActionsWrapper.tsx:43
+msgid "Open message options"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:461
+msgid "Open moderation debug page"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:280
+msgid "Open muted words and tags settings"
+msgstr ""
+
+#: src/screens/Search/components/StarterPackCard.tsx:120
+msgid "Open pack"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/index.tsx:67
+msgid "Open post options menu"
+msgstr ""
+
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
+msgid "Open profile"
+msgstr ""
+
+#: src/components/BotAccountAlert.tsx:62
+#: src/components/BotAccountAlert.tsx:71
+msgid "Open settings"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/index.tsx:98
+msgid "Open share menu"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:582
+msgid "Open starter pack menu"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:454
+#: src/screens/Settings/Settings.tsx:468
+msgid "Open storybook page"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:447
+msgid "Open system log"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
+#. placeholder {0}: feedInfo.displayName
+#: src/view/shell/desktop/Feeds.tsx:185
+msgid "Opens {0} feed"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:63
+msgid "Opens a dialog to add a content warning to your post"
+msgstr ""
+
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:154
+msgid "Opens a dialog to choose who can interact with this post"
+msgstr ""
+
+#: src/screens/Log.tsx:74
+msgid "Opens additional details for a debug entry"
+msgstr ""
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:45
+msgid "Opens alt text dialog"
+msgstr ""
+
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+msgid "Opens camera on device"
+msgstr ""
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:44
+msgid "Opens captions and alt text dialog"
+msgstr ""
+
+#: src/screens/Settings/AccountSettings.tsx:136
+msgid "Opens change handle dialog"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadComposePrompt.tsx:64
+msgid "Opens composer"
+msgstr ""
+
+#: src/view/com/feeds/ComposerPrompt.tsx:203
+msgid "Opens device camera"
+msgstr ""
+
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:295
+#: src/view/com/auth/SplashScreen.tsx:102
+#: src/view/com/auth/SplashScreen.web.tsx:110
+msgid "Opens flow to create a new Bluesky account"
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:281
+#: src/view/com/auth/SplashScreen.tsx:120
+#: src/view/com/auth/SplashScreen.web.tsx:124
+msgid "Opens flow to sign in to your existing Bluesky account"
+msgstr ""
+
+#: src/components/images/Gallery/index.tsx:452
+msgid "Opens full image"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:248
+msgid "Opens helpdesk in browser"
+msgstr ""
+
+#: src/view/com/feeds/ComposerPrompt.tsx:225
+msgid "Opens image picker"
+msgstr ""
+
+#. placeholder {0}: link?.href ?? ''
+#: src/components/dialogs/LinkWarning.tsx:113
+msgid "Opens link {0}"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:603
+msgid "Opens live status dialog"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:259
+msgid "Opens password reset form"
+msgstr ""
+
+#: src/view/com/composer/select-language/PostLanguageSelect.tsx:200
+msgid "Opens post language settings"
+msgstr ""
+
+#: src/components/dms/SystemMessageItem.tsx:60
+msgid "Opens profile"
+msgstr ""
+
+#. Accessibility hint announced after the GIF picker button label, describing what activating it will do.
+#: src/view/com/composer/photos/SelectGifBtn.tsx:45
+msgid "Opens the GIF picker dialog"
+msgstr ""
+
+#: src/view/com/feeds/ComposerPrompt.tsx:148
+msgid "Opens the post composer"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:70
+msgid "Opens this draft in the composer"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:233
+#: src/view/com/notifications/NotificationFeedItem.tsx:1019
+#: src/view/com/util/UserAvatar.tsx:621
+msgid "Opens this profile"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:308
+msgid "Options:"
+msgstr ""
+
+#: src/screens/Deactivated.tsx:192
+msgid "Or, continue with another account."
+msgstr ""
+
+#: src/screens/Deactivated.tsx:179
+msgid "Or, sign in to one of your other accounts."
+msgstr ""
+
+#: src/screens/Settings/components/OTAInfo.tsx:55
+msgid "OTA status: ..."
+msgstr ""
+
+#: src/screens/Settings/components/OTAInfo.tsx:51
+msgid "OTA status: Available!"
+msgstr ""
+
+#: src/screens/Settings/components/OTAInfo.tsx:53
+msgid "OTA status: Error fetching update"
+msgstr ""
+
+#: src/screens/Settings/components/OTAInfo.tsx:57
+msgid "OTA status: None available"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242
+#: src/view/com/composer/labels/LabelsBtn.tsx:181
+msgid "Other"
+msgstr ""
+
+#: src/components/AccountList.tsx:93
+msgid "Other account"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:181
+msgid "Other child safety issue"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:208
+msgid "Other dangerous content"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:119
+msgid "Other harassing or hateful content"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59
+msgid "Other misleading content"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:231
+msgid "Other network rule-breaking"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:92
+msgid "Other sexual violence content"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:154
+msgid "Other violent content"
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:51
+msgid "Our blog post"
+msgstr ""
+
+#: src/components/dms/AfterReportConversationDialog.tsx:86
+#: src/components/dms/AfterReportConversationDialog.tsx:213
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
+msgid "Our moderation team has received your report."
+msgstr ""
+
+#: src/screens/Messages/components/ChatDisabled.tsx:54
+msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
+msgstr ""
+
+#: src/components/dialogs/StarterPackDialog.tsx:384
+msgid "Owner"
+msgstr ""
+
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
+#: src/components/Lists.tsx:205
+#: src/components/Lists.tsx:220
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
+msgid "Page not found"
+msgstr ""
+
+#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
+#: src/features/gifPicker/components/GifCategoryPills.tsx:85
+msgid "Party GIFs"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:228
+#: src/screens/Settings/AccountSettings.tsx:126
+#: src/screens/Settings/AccountSettings.tsx:130
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:284
+#: src/screens/Signup/StepInfo/index.tsx:255
+msgid "Password"
+msgstr ""
+
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:70
+msgid "Password changed"
+msgstr ""
+
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:125
+msgid "Password must be at least 8 characters long."
+msgstr ""
+
+#: src/screens/Login/index.tsx:202
+msgid "Password updated"
+msgstr ""
+
+#: src/screens/Login/PasswordUpdatedForm.tsx:24
+msgid "Password updated!"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395
+msgid "Pause"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:36
+msgid "Pause GIF"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346
+msgid "Pause video"
+msgstr ""
+
+#: src/screens/ProfileList/index.tsx:167
+#: src/screens/Search/SearchResults.tsx:74
+#: src/screens/StarterPack/StarterPackScreen.tsx:195
+msgid "People"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+msgid "People {ownerName} follows can join instantly"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+msgid "People {ownerName} follows can request to join"
+msgstr ""
+
+#. placeholder {0}: route.params.name
+#: src/Navigation.tsx:237
+msgid "People followed by @{0}"
+msgstr ""
+
+#. placeholder {0}: route.params.name
+#: src/Navigation.tsx:230
+msgid "People following @{0}"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
+msgid "People I follow"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
+msgid "People I follow can join instantly"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
+msgid "People I follow can request to join"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:510
+msgid "People you follow"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:524
+msgid "People you mention"
+msgstr ""
+
+#: src/lib/media/save-image.ts:59
+msgid "Permission to access your photo library was denied. Please enable it in your system settings."
+msgstr ""
+
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:59
+msgid "Person toggle"
+msgstr ""
+
+#: src/components/contacts/components/InviteInfo.tsx:60
+msgid "Personalize the message"
+msgstr ""
+
+#: src/lib/interests.ts:68
+msgid "Pets"
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:192
+#: src/components/contacts/screens/PhoneInput.tsx:204
+msgid "Phone number"
+msgstr ""
+
+#: src/components/contacts/screens/VerifyNumber.tsx:304
+msgid "Phone number verified"
+msgstr ""
+
+#: src/lib/interests.ts:69
+msgid "Photography"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:165
+msgid "Pictures meant for adults."
+msgstr ""
+
+#: src/components/FeedCard.tsx:364
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
+#: src/screens/SavedFeeds.tsx:559
+msgid "Pin feed"
+msgstr ""
+
+#: src/screens/ProfileList/components/Header.tsx:151
+#: src/screens/ProfileList/components/Header.tsx:158
+msgid "Pin to home"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
+msgid "Pin to Home"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519
+msgid "Pin to your profile"
+msgstr ""
+
+#: src/view/com/posts/PostFeedReason.tsx:116
+msgid "Pinned"
+msgstr ""
+
+#. placeholder {0}: info.displayName
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
+msgid "Pinned {0} to Home"
+msgstr ""
+
+#: src/screens/SavedFeeds.tsx:146
+#: src/screens/SavedFeeds.tsx:337
+msgid "Pinned Feeds"
+msgstr ""
+
+#: src/screens/ProfileList/components/Header.tsx:77
+msgid "Pinned to your feeds"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396
+msgid "Play"
+msgstr ""
+
+#. placeholder {0}: link.title
+#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110
+msgid "Play {0}"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:36
+msgid "Play GIF"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/index.tsx:130
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347
+msgid "Play video"
+msgstr ""
+
+#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61
+msgid "Play Video"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:37
+msgid "Plays or pauses the GIF"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:156
+msgid "Plays or pauses the video"
+msgstr ""
+
+#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:109
+msgid "Plays the GIF"
+msgstr ""
+
+#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62
+msgid "Plays the video"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:111
+msgid "Please add any content warning labels that are applicable for the media you are posting."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:189
+msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive."
+msgstr ""
+
+#: src/screens/Signup/state.ts:294
+msgid "Please choose your handle."
+msgstr ""
+
+#: src/screens/Signup/state.ts:286
+#: src/screens/Signup/StepInfo/index.tsx:150
+msgid "Please choose your password."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
+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:309
+msgid "Please complete the verification captcha."
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:439
+msgid "Please confirm your email address to upload videos."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:102
+#: src/screens/Signup/StepInfo/index.tsx:140
+msgid "Please double-check that you have entered your email address correctly."
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:60
+msgid "Please enter a password."
+msgstr ""
+
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:120
+msgid "Please enter a password. It must be at least 8 characters long."
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114
+msgid "Please enter a unique name for this app password or use our randomly generated one."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
+msgid "Please enter a valid code."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
+msgid "Please enter a valid email address."
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:89
+msgid "Please enter a valid word, tag, or phrase to mute"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:145
+msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future."
+msgstr ""
+
+#. placeholder {0}: currentAccount!.email
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
+msgid "Please enter the code we sent to <0>{0}0> below."
+msgstr ""
+
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:66
+msgid "Please enter the code you received and the new password you would like to use."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+msgid "Please enter the security code we sent to your previous email address."
+msgstr ""
+
+#: src/screens/Signup/state.ts:270
+#: src/screens/Signup/StepInfo/index.tsx:123
+msgid "Please enter your email."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:116
+msgid "Please enter your invite code."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
+msgid "Please enter your new email address."
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:96
+msgid "Please enter your password"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:90
+msgid "Please enter your username"
+msgstr ""
+
+#. placeholder {0}: labeler ? sanitizeHandle(labeler.creator.handle, '@') : label.src
+#: src/components/moderation/LabelsOnMeDialog.tsx:309
+msgid "Please explain why you think this label was incorrectly applied by {0}"
+msgstr ""
+
+#: src/screens/Messages/components/ChatDisabled.tsx:143
+msgid "Please explain why you think your chats were incorrectly disabled"
+msgstr ""
+
+#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:124
+msgid "Please explain why you think your Go Live access was incorrectly disabled."
+msgstr ""
+
+#: src/components/FocusScope/index.tsx:91
+#: src/components/FocusScope/index.tsx:115
+msgid "Please go back, or activate this element to return to the start of the active content."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:102
+msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303
+msgid "Please select a language"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/action.ts:32
+msgid "Please select a moderation service"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/action.ts:29
+msgid "Please select a reason for this report"
+msgstr ""
+
+#. placeholder {0}: account.handle
+#: src/lib/hooks/useAccountSwitcher.ts:45
+#: src/lib/hooks/useAccountSwitcher.ts:54
+msgid "Please sign in as @{0}"
+msgstr ""
+
+#: src/screens/Settings/FindContactsSettings.tsx:105
+msgid "Please use the native app to import your contacts."
+msgstr ""
+
+#: src/screens/FindContactsFlowScreen.tsx:63
+msgid "Please use the native app to sync your contacts."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
+msgid "Please verify your email"
+msgstr ""
+
+#: src/lib/hooks/useCreateSupportLink.ts:29
+msgid "Please write your message below:"
+msgstr ""
+
+#: src/lib/interests.ts:70
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220
+msgid "Politics"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:152
+msgid "Porn"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1742
+msgctxt "action"
+msgid "Post"
+msgstr ""
+
+#: src/screens/PostThread/index.tsx:553
+msgctxt "description"
+msgid "Post"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:475
+#: src/view/screens/Profile.tsx:476
+msgid "Post a photo"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:502
+#: src/view/screens/Profile.tsx:503
+msgid "Post a video"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1740
+msgctxt "action"
+msgid "Post All"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1404
+msgid "Post anyway"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22
+msgid "Post blocked"
+msgstr ""
+
+#. placeholder {0}: route.params.name
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
+msgid "Post by @{0}"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199
+msgctxt "toast"
+msgid "Post deleted"
+msgstr ""
+
+#: src/lib/api/index.ts:189
+msgid "Post failed to upload. Please check your Internet connection and try again."
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132
+#: src/screens/PostThread/components/ThreadItemPost.tsx:117
+#: src/screens/PostThread/components/ThreadItemTreePost.tsx:110
+#: src/screens/VideoFeed/index.tsx:547
+msgid "Post has been deleted"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:111
+#: src/lib/moderation/useModerationCauseDescription.ts:107
+msgid "Post Hidden by Muted Word"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:114
+#: src/lib/moderation/useModerationCauseDescription.ts:116
+msgid "Post Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:685
+msgid "Post interaction settings"
+msgstr ""
+
+#: src/Navigation.tsx:197
+#: src/screens/ModerationInteractionSettings/index.tsx:35
+msgid "Post Interaction Settings"
+msgstr ""
+
+#. Accessibility label for button that opens dialog to choose post language settings
+#: src/view/com/composer/select-language/PostLanguageSelect.tsx:195
+msgid "Post language selection"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
+msgid "Post link"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadError.tsx:33
+#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25
+msgid "Post not found"
+msgstr ""
+
+#: src/state/queries/pinned-post.ts:59
+msgctxt "toast"
+msgid "Post pinned"
+msgstr ""
+
+#: src/components/PostControls/BookmarkButton.tsx:67
+msgid "Post saved"
+msgstr ""
+
+#: src/state/queries/pinned-post.ts:61
+msgctxt "toast"
+msgid "Post unpinned"
+msgstr ""
+
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
+#: src/screens/ProfileList/index.tsx:167
+#: src/screens/StarterPack/StarterPackScreen.tsx:197
+#: src/view/screens/Profile.tsx:234
+msgid "Posts"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:123
+msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown."
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:76
+msgid "Posts hidden"
+msgstr ""
+
+#: src/components/dialogs/LinkWarning.tsx:89
+msgid "Potentially misleading link"
+msgstr ""
+
+#: src/components/dialogs/LinkWarning.tsx:82
+msgid "Potentially misleading link warning"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:292
+msgid "Preferred language"
+msgstr ""
+
+#: src/screens/Messages/components/MessageListError.tsx:18
+msgid "Press to attempt reconnection"
+msgstr ""
+
+#: src/components/Error.tsx:61
+#: src/components/Lists.tsx:104
+#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
+#: src/screens/Signup/BackNextButtons.tsx:48
+msgid "Press to retry"
+msgstr ""
+
+#: src/components/KnownFollowers.tsx:125
+msgid "Press to view followers of this account that you also follow"
+msgstr ""
+
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
+msgid "Preview"
+msgstr ""
+
+#: src/components/Lightbox/Lightbox.web.tsx:197
+msgid "Previous image"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:141
+#: src/screens/Settings/LanguageSettings.tsx:157
+msgid "Primary language"
+msgstr ""
+
+#: src/view/shell/desktop/RightNav.tsx:118
+#: src/view/shell/desktop/RightNav.tsx:119
+msgid "Privacy"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:181
+#: src/screens/Settings/Settings.tsx:184
+msgid "Privacy and security"
+msgstr ""
+
+#: src/Navigation.tsx:414
+#: src/Navigation.tsx:422
+#: src/screens/Settings/ActivityPrivacySettings.tsx:41
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
+msgid "Privacy and Security"
+msgstr ""
+
+#: src/view/screens/Storybook/Admonitions.tsx:94
+msgid "Privacy and Security settings"
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
+#: src/Navigation.tsx:330
+#: src/screens/Settings/AboutSettings.tsx:95
+#: src/screens/Settings/AboutSettings.tsx:98
+#: src/view/screens/PrivacyPolicy.tsx:25
+#: src/view/shell/Drawer.tsx:707
+#: src/view/shell/Drawer.tsx:708
+msgid "Privacy Policy"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:173
+msgid "Privacy violation of a minor"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2528
+msgid "Processing GIF..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2530
+msgid "Processing video..."
+msgstr ""
+
+#: src/lib/api/index.ts:62
+msgid "Processing..."
+msgstr ""
+
+#: src/view/screens/DebugMod.tsx:956
+msgid "profile"
+msgstr ""
+
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
+#: src/view/shell/Drawer.tsx:80
+#: src/view/shell/Drawer.tsx:599
+msgid "Profile"
+msgstr ""
+
+#: src/screens/Profile/Header/Shell.tsx:164
+msgid "Profile banner placeholder"
+msgstr ""
+
+#: src/lib/strings/errors.ts:40
+msgid "Profile not found"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:186
+msgctxt "toast"
+msgid "Profile updated"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:223
+msgid "Promoting or selling prohibited items or services"
+msgstr ""
+
+#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:165
+msgid "Psst! You can edit who can interact with this post."
+msgstr ""
+
+#: src/view/com/lists/MyLists.tsx:77
+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:1726
+msgid "Publish post"
+msgstr ""
+
+#. Accessibility label for button to publish multiple posts in a thread
+#: src/view/com/composer/Composer.tsx:1721
+msgid "Publish posts"
+msgstr ""
+
+#. Accessibility label for button to publish multiple replies in a thread
+#: src/view/com/composer/Composer.tsx:1710
+msgid "Publish replies"
+msgstr ""
+
+#. Accessibility label for button to publish a single reply
+#: src/view/com/composer/Composer.tsx:1715
+msgid "Publish reply"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:389
+msgid "Push"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
+msgid "Push notifications"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr ""
+
+#: src/components/StarterPack/QrCodeDialog.tsx:140
+msgid "QR code copied to your clipboard!"
+msgstr ""
+
+#: src/components/StarterPack/QrCodeDialog.tsx:118
+msgid "QR code has been downloaded!"
+msgstr ""
+
+#: src/components/StarterPack/QrCodeDialog.tsx:119
+msgid "QR code saved to your camera roll!"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.tsx:176
+#: src/components/PostControls/RepostButton.tsx:199
+#: src/components/PostControls/RepostButton.web.tsx:84
+#: src/components/PostControls/RepostButton.web.tsx:91
+#: src/view/com/composer/drafts/DraftItem.tsx:137
+msgid "Quote post"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350
+msgid "Quote post was re-attached"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349
+msgid "Quote post was successfully detached"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.tsx:175
+#: src/components/PostControls/RepostButton.tsx:197
+#: src/components/PostControls/RepostButton.web.tsx:83
+#: src/components/PostControls/RepostButton.web.tsx:90
+msgid "Quote posts disabled"
+msgstr ""
+
+#: src/lib/hooks/useNotificationHandler.ts:188
+#: src/screens/Post/PostQuotes.tsx:31
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
+msgid "Quotes"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467
+msgid "Quotes of this post"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:618
+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:109
+msgid "Rate limit exceeded. Please try again later."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700
+msgid "Re-attach quote"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
+msgid "Re-enable invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
+msgid "Re-enable link"
+msgstr ""
+
+#: src/components/dms/EmojiReactionPicker.tsx:80
+msgid "React with {emoji}"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
+msgid "Reactions"
+msgstr ""
+
+#: src/screens/Deactivated.tsx:133
+msgid "Reactivate your account"
+msgstr ""
+
+#. placeholder {0}: item.moreReplies
+#: src/screens/PostThread/components/ThreadItemReadMore.tsx:93
+msgid "Read {0, plural, one {# more reply} other {# more replies}}"
+msgstr ""
+
+#: src/screens/Search/SearchResults.tsx:189
+msgctxt "english-only-resource"
+msgid "read about how to use search filters"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
+msgid "Read blog post"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:984
+msgid "Read less"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:984
+msgid "Read more"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadItemReadMore.tsx:72
+msgid "Read more replies"
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:113
+msgid "Read our blog post"
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.web.tsx:172
+msgid "Read the Bluesky blog"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:53
+#: src/screens/Signup/StepInfo/Policies.tsx:79
+msgid "Read the Bluesky Privacy Policy"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:46
+#: src/screens/Signup/StepInfo/Policies.tsx:66
+msgid "Read the Bluesky Terms of Service"
+msgstr ""
+
+#: src/components/WelcomeModal.tsx:149
+msgid "Real conversations."
+msgstr ""
+
+#: src/components/WelcomeModal.tsx:147
+msgid "Real people."
+msgstr ""
+
+#: src/screens/Takendown.tsx:158
+#: src/screens/Takendown.tsx:166
+msgid "Reason for appeal"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
+msgid "Receive in-app notifications"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
+msgid "Receive push notifications"
+msgstr ""
+
+#. Accessibility label for the icon-only pill that shows previously selected GIFs in the GIF picker.
+#: src/features/gifPicker/components/GifCategoryPills.tsx:35
+msgid "Recent GIFs"
+msgstr ""
+
+#: src/screens/Search/components/SearchHistory.tsx:49
+msgid "Recent searches"
+msgstr ""
+
+#: src/components/dialogs/LanguageSelectDialog.tsx:249
+msgid "Recently used"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreRecommendations.tsx:55
+msgid "Recommended"
+msgstr ""
+
+#: src/screens/Messages/components/MessageListError.tsx:19
+msgid "Reconnect"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
+#. Reject a chat request, this opens a menu with options
+#: src/screens/Messages/components/RequestButtons.tsx:131
+msgid "Reject"
+msgstr ""
+
+#: src/screens/Messages/components/RequestButtons.tsx:120
+msgid "Reject chat request"
+msgstr ""
+
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
+msgid "Reload conversations"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:181
+#: src/components/dialogs/MutedWords.tsx:457
+#: src/components/dialogs/StarterPackDialog.tsx:376
+#: src/components/dialogs/StarterPackDialog.tsx:386
+#: src/components/FeedCard.tsx:376
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:106
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:113
+#: src/screens/Bookmarks/index.tsx:265
+#: src/screens/Moderation/index.tsx:477
+#: src/screens/Settings/Settings.tsx:673
+#: src/view/com/modals/UserAddRemoveLists.tsx:236
+#: src/view/com/posts/PostFeedErrorMessage.tsx:221
+msgid "Remove"
+msgstr ""
+
+#: src/components/dms/ChatProfileTabs.tsx:153
+msgid "Remove {displayName} from group chat"
+msgstr ""
+
+#: src/components/StarterPack/Wizard/WizardListCard.tsx:62
+msgid "Remove {displayName} from starter pack"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229
+msgid "Remove {displayName} from this group chat"
+msgstr ""
+
+#: src/screens/Search/components/SearchHistory.tsx:105
+msgid "Remove {historyItem}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:654
+#: src/screens/Settings/Settings.tsx:657
+msgid "Remove account"
+msgstr ""
+
+#: src/screens/Settings/FindContactsSettings.tsx:555
+#: src/screens/Settings/FindContactsSettings.tsx:563
+msgid "Remove all contacts"
+msgstr ""
+
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
+msgid "Remove attachment"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
+msgid "Remove Avatar"
+msgstr ""
+
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
+msgid "Remove Banner"
+msgstr ""
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:286
+msgid "Remove caption file"
+msgstr ""
+
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
+msgid "Remove embed"
+msgstr ""
+
+#: src/view/com/posts/FeedShutdownMsg.tsx:121
+#: src/view/com/posts/FeedShutdownMsg.tsx:125
+#: src/view/com/posts/PostFeedErrorMessage.tsx:177
+msgid "Remove feed"
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:218
+msgid "Remove feed?"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233
+msgid "Remove from chat"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
+#: src/screens/SavedFeeds.tsx:549
+msgid "Remove from my feeds"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:667
+msgid "Remove from quick access?"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:174
+#: src/screens/List/ListHiddenScreen.tsx:178
+msgid "Remove from saved feeds"
+msgstr ""
+
+#: src/components/PostControls/BookmarkButton.tsx:143
+#: src/screens/Bookmarks/index.tsx:259
+msgid "Remove from saved posts"
+msgstr ""
+
+#: src/components/FeedCard.tsx:373
+msgid "Remove from your feeds?"
+msgstr ""
+
+#: src/view/com/composer/photos/Gallery.tsx:227
+msgid "Remove image"
+msgstr ""
+
+#: src/features/liveNow/components/EditLiveDialog.tsx:228
+#: src/features/liveNow/components/EditLiveDialog.tsx:235
+msgid "Remove live status"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:613
+msgid "Remove mute word from your list"
+msgstr ""
+
+#: src/screens/Search/components/SearchHistory.tsx:170
+msgid "Remove profile"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.tsx:153
+#: src/components/PostControls/RepostButton.tsx:163
+msgid "Remove repost"
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:500
+#: src/screens/Settings/FindContactsSettings.tsx:328
+msgid "Remove suggestion"
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:219
+msgid "Remove this feed from your saved feeds"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:473
+msgid "Remove unavailable moderation services"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:167
+msgid "Remove user from list"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:48
+#: src/components/verification/VerificationsDialog.tsx:250
+#: src/view/com/profile/ProfileMenu.tsx:421
+#: src/view/com/profile/ProfileMenu.tsx:424
+msgid "Remove verification"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:46
+msgid "Remove your verification for this account?"
+msgstr ""
+
+#: src/components/Post/Embed/index.tsx:244
+msgid "Removed by author"
+msgstr ""
+
+#: src/components/Post/Embed/index.tsx:242
+msgid "Removed by you"
+msgstr ""
+
+#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:124
+#: src/view/com/modals/UserAddRemoveLists.tsx:171
+msgid "Removed from list"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:98
+msgid "Removed from saved feeds"
+msgstr ""
+
+#: src/components/PostControls/BookmarkButton.tsx:107
+#: src/screens/Bookmarks/index.tsx:217
+msgid "Removed from saved posts"
+msgstr ""
+
+#: src/components/dialogs/StarterPackDialog.tsx:287
+msgid "Removed from starter pack"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
+#: src/view/com/posts/FeedShutdownMsg.tsx:45
+msgid "Removed from your feeds"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:187
+msgid "Removed unavailable services"
+msgstr ""
+
+#: src/components/verification/VerificationRemovePrompt.tsx:32
+msgid "Removed verification"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:541
+msgid "Renew"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:547
+msgid "Renew duration"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:531
+msgid "Renew mute word"
+msgstr ""
+
+#: src/view/com/posts/FeedShutdownMsg.tsx:134
+#: src/view/com/posts/FeedShutdownMsg.tsx:138
+msgid "Replace with Discover"
+msgstr ""
+
+#: src/components/Post/PostRepliedTo.tsx:39
+msgctxt "description"
+msgid "Replied to <0><1/>0>"
+msgstr ""
+
+#: src/components/Post/PostRepliedTo.tsx:28
+msgctxt "description"
+msgid "Replied to a blocked post"
+msgstr ""
+
+#: src/components/Post/PostRepliedTo.tsx:30
+msgctxt "description"
+msgid "Replied to a post"
+msgstr ""
+
+#: src/components/Post/PostRepliedTo.tsx:36
+msgctxt "description"
+msgid "Replied to you"
+msgstr ""
+
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
+#: src/lib/hooks/useNotificationHandler.ts:174
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
+#: src/view/screens/Profile.tsx:235
+msgid "Replies"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:87
+msgid "Replies disabled"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:281
+msgid "Replies to this post are disabled."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1738
+msgctxt "action"
+msgid "Reply"
+msgstr ""
+
+#. Accessibility label for the reply button, verb form followed by number of replies and noun form
+#. placeholder {0}: post.replyCount || 0
+#: src/components/PostControls/index.tsx:240
+msgid "Reply ({0, plural, one {# reply} other {# replies}})"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:120
+#: src/lib/moderation/useModerationCauseDescription.ts:126
+msgid "Reply Hidden by Thread Author"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:119
+#: src/lib/moderation/useModerationCauseDescription.ts:125
+msgid "Reply Hidden by You"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
+msgid "Reply settings are chosen by the author of the thread"
+msgstr ""
+
+#: src/screens/PostThread/components/HeaderDropdown.tsx:71
+msgid "Reply sorting"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388
+msgctxt "toast"
+msgid "Reply visibility updated"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387
+msgid "Reply was successfully hidden"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
+msgid "Report"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:488
+#: src/view/com/profile/ProfileMenu.tsx:491
+msgid "Report account"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:304
+#: src/components/dms/ConvoMenu.tsx:308
+#: src/screens/Messages/components/RequestButtons.tsx:160
+#: src/screens/Messages/components/RequestButtons.tsx:163
+msgid "Report conversation"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
+msgid "Report dialog"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
+msgid "Report feed"
+msgstr ""
+
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:210
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:213
+msgid "Report list"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:173
+msgid "Report message"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758
+msgid "Report post"
+msgstr ""
+
+#: src/components/SendErrorReportDialog.tsx:47
+msgid "Report sent"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:657
+#: src/screens/StarterPack/StarterPackScreen.tsx:660
+msgid "Report starter pack"
+msgstr ""
+
+#: src/components/dms/AfterReportConversationDialog.tsx:83
+#: src/components/dms/AfterReportConversationDialog.tsx:210
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
+msgid "Report submitted"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:51
+#: src/components/moderation/ReportDialog/copy.ts:65
+msgid "Report this conversation"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:37
+msgid "Report this feed"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:516
+msgid "Report this group chat"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:31
+msgid "Report this list"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:19
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
+msgid "Report this livestream"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:57
+msgid "Report this message"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:25
+msgid "Report this post"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:43
+msgid "Report this starter pack"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:13
+msgid "Report this user"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.tsx:154
+#: src/components/PostControls/RepostButton.tsx:165
+#: src/components/PostControls/RepostButton.web.tsx:68
+#: src/components/PostControls/RepostButton.web.tsx:75
+msgctxt "action"
+msgid "Repost"
+msgstr ""
+
+#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form
+#. placeholder {0}: repostCount || 0
+#: src/components/PostControls/RepostButton.tsx:78
+msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.tsx:146
+#: src/components/PostControls/RepostButton.web.tsx:43
+#: src/components/PostControls/RepostButton.web.tsx:103
+#: src/screens/StarterPack/StarterPackScreen.tsx:577
+msgid "Repost or quote post"
+msgstr ""
+
+#: src/screens/Post/PostRepostedBy.tsx:31
+msgid "Reposted By"
+msgstr ""
+
+#: src/view/com/posts/PostFeedReason.tsx:78
+#: src/view/com/posts/PostFeedReason.tsx:97
+msgid "Reposted by {reposter}"
+msgstr ""
+
+#: src/view/com/posts/PostFeedReason.tsx:78
+#: src/view/com/posts/PostFeedReason.tsx:95
+msgid "Reposted by you"
+msgstr ""
+
+#: src/lib/hooks/useNotificationHandler.ts:167
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
+msgid "Reposts"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446
+msgid "Reposts of this post"
+msgstr ""
+
+#: src/lib/hooks/useNotificationHandler.ts:209
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
+msgid "Reposts of your reposts"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr ""
+
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
+msgid "Request code"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
+#. Incoming message requests
+#: src/screens/Messages/components/InboxRequests.tsx:26
+msgid "Requests"
+msgstr ""
+
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
+#: src/screens/Settings/AccessibilitySettings.tsx:59
+#: src/screens/Settings/AccessibilitySettings.tsx:64
+msgid "Require alt text before posting"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
+msgid "Require an email code to sign in to your account."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:204
+msgid "Required for this provider"
+msgstr ""
+
+#: src/components/LabelingServiceCard/index.tsx:80
+msgid "Required in your region"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
+msgid "Resend"
+msgstr ""
+
+#: src/components/contacts/screens/VerifyNumber.tsx:365
+#: src/components/contacts/screens/VerifyNumber.tsx:382
+msgid "Resend code"
+msgstr ""
+
+#. placeholder {0}: String( clamp(Math.round(timeUntilCanResend / 1000), 0, 30), ).padStart(2, '0')
+#: src/components/contacts/screens/VerifyNumber.tsx:372
+msgid "Resend code in <0>00:{0}0>"
+msgstr ""
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:174
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:177
+msgid "Resend email"
+msgstr ""
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:124
+msgid "Resend Email"
+msgstr ""
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:117
+msgid "Resend Verification Email"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:490
+#: src/screens/Settings/Settings.tsx:492
+msgid "Reset activity subscription nudge"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:118
+msgid "Reset code"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:475
+#: src/screens/Settings/Settings.tsx:477
+msgid "Reset onboarding state"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:82
+msgid "Reset password"
+msgstr ""
+
+#: src/screens/Settings/FindContactsSettings.tsx:523
+#: src/screens/Settings/FindContactsSettings.tsx:539
+msgid "Resync contacts"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:330
+msgid "Retries signing in"
+msgstr ""
+
+#: src/view/com/util/error/ErrorMessage.tsx:56
+#: src/view/com/util/error/ErrorScreen.tsx:93
+msgid "Retries the last action, which errored out"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceErrors.tsx:28
+#: src/components/ageAssurance/AgeAssuranceErrors.tsx:31
+#: src/components/contacts/screens/VerifyNumber.tsx:350
+#: src/components/contacts/screens/VerifyNumber.tsx:355
+#: src/components/Error.tsx:65
+#: src/components/Lists.tsx:115
+#: src/components/moderation/ReportDialog/index.tsx:297
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
+#: src/components/StarterPack/ProfileStarterPacks.tsx:377
+#: src/screens/Login/LoginForm.tsx:329
+#: src/screens/Login/LoginForm.tsx:335
+#: src/screens/Messages/ChatList.tsx:354
+#: src/screens/Messages/components/MessageListError.tsx:24
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
+#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
+#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:95
+#: src/screens/PostThread/components/ThreadError.tsx:81
+#: src/screens/PostThread/components/ThreadError.tsx:87
+#: src/screens/Signup/BackNextButtons.tsx:54
+#: src/view/com/util/error/ErrorMessage.tsx:55
+#: src/view/com/util/error/ErrorScreen.tsx:91
+#: src/view/screens/Storybook/Admonitions.tsx:64
+msgid "Retry"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:294
+#: src/view/screens/Storybook/Admonitions.tsx:61
+msgid "Retry loading report options"
+msgstr ""
+
+#: src/components/Error.tsx:73
+#: src/screens/List/ListHiddenScreen.tsx:223
+#: src/screens/StarterPack/StarterPackScreen.tsx:801
+msgid "Return to previous page"
+msgstr ""
+
+#: src/view/screens/NotFound.tsx:54
+msgid "Returns to home page"
+msgstr ""
+
+#: src/screens/ProfileList/components/ErrorScreen.tsx:36
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
+#: src/screens/VideoFeed/index.tsx:1169
+#: src/view/screens/NotFound.tsx:54
+msgid "Returns to previous page"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:316
+msgid "Returns to the previous step"
+msgstr ""
+
+#. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs.
+#: src/features/gifPicker/components/GifCategoryPills.tsx:75
+msgid "Sad GIFs"
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:309
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:668
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:673
+#: src/components/StarterPack/QrCodeDialog.tsx:207
+#: src/features/liveNow/components/EditLiveDialog.tsx:204
+#: src/features/liveNow/components/EditLiveDialog.tsx:211
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
+#: src/screens/Profile/Header/EditProfileDialog.tsx:233
+#: src/screens/Profile/Header/EditProfileDialog.tsx:247
+#: src/screens/SavedFeeds.tsx:124
+#: src/screens/SavedFeeds.tsx:315
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:269
+#: src/view/com/composer/GifAltText.tsx:199
+#: src/view/com/composer/GifAltText.tsx:208
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:63
+#: src/view/com/composer/photos/EditImageDialog.web.tsx:76
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163
+#: src/view/com/composer/photos/ImageAltTextDialog.tsx:173
+msgid "Save"
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:193
+msgid "Save birthdate"
+msgstr ""
+
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:198
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:207
+#: src/screens/SavedFeeds.tsx:120
+#: src/screens/SavedFeeds.tsx:124
+#: src/screens/SavedFeeds.tsx:311
+#: src/screens/SavedFeeds.tsx:315
+#: src/view/com/composer/Composer.tsx:1385
+#: src/view/com/composer/drafts/DraftsButton.tsx:125
+msgid "Save changes"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1357
+#: src/view/com/composer/drafts/DraftsButton.tsx:93
+msgid "Save changes?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1385
+#: src/view/com/composer/drafts/DraftsButton.tsx:125
+msgid "Save draft"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1359
+#: src/view/com/composer/drafts/DraftsButton.tsx:95
+msgid "Save draft?"
+msgstr ""
+
+#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:229
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
+#: src/components/StarterPack/ShareDialog.tsx:144
+#: src/components/StarterPack/ShareDialog.tsx:150
+msgid "Save image"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:255
+msgid "Save new handle"
+msgstr ""
+
+#: src/components/StarterPack/QrCodeDialog.tsx:199
+msgid "Save QR code"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:649
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:655
+msgid "Save these options for next time"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
+msgid "Save to my feeds"
+msgstr ""
+
+#: src/view/shell/desktop/LeftNav.tsx:732
+#: src/view/shell/Drawer.tsx:574
+msgctxt "link to bookmarks screen"
+msgid "Saved"
+msgstr ""
+
+#: src/screens/SavedFeeds.tsx:198
+#: src/screens/SavedFeeds.tsx:375
+msgid "Saved Feeds"
+msgstr ""
+
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
+#: src/screens/Bookmarks/index.tsx:59
+msgid "Saved Posts"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
+#: src/screens/ProfileList/components/Header.tsx:88
+msgid "Saved to your feeds"
+msgstr ""
+
+#: src/components/NewskieDialog.tsx:141
+#: src/view/com/notifications/NotificationFeedItem.tsx:867
+#: src/view/com/notifications/NotificationFeedItem.tsx:892
+msgid "Say hello!"
+msgstr ""
+
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
+msgid "Say hi to someone"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:43
+msgid "Scam"
+msgstr ""
+
+#: src/lib/interests.ts:71
+msgid "Science"
+msgstr ""
+
+#: src/components/InterestTabs.tsx:255
+msgid "Scroll left"
+msgstr ""
+
+#: src/components/InterestTabs.tsx:289
+msgid "Scroll right"
+msgstr ""
+
+#: src/screens/ProfileList/AboutSection.tsx:132
+msgid "Scroll to top"
+msgstr ""
+
+#: src/components/dialogs/SearchablePeopleList.tsx:671
+#: src/components/forms/SearchInput.tsx:51
+#: src/components/forms/SearchInput.tsx:53
+#: src/screens/Search/Shell.tsx:362
+#: src/screens/Search/Shell.tsx:525
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
+msgid "Search"
+msgstr ""
+
+#. placeholder {0}: profile.handle
+#. placeholder {0}: route.params.name
+#: src/Navigation.tsx:256
+#: src/screens/Profile/ProfileSearch.tsx:37
+msgid "Search @{0}'s posts"
+msgstr ""
+
+#: src/components/ProgressGuide/FollowDialog.tsx:708
+msgid "Search by name or interest"
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:356
+msgid "Search contacts"
+msgstr ""
+
+#: src/view/screens/Feeds.tsx:437
+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:505
+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:500
+msgid "Search for \"{interestsDisplayName}\" (active)"
+msgstr ""
+
+#: src/screens/Search/components/AutocompleteResults.tsx:54
+msgid "Search for \"{searchText}\""
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/index.tsx:541
+msgid "Search for feeds that you want to suggest to others."
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:378
+msgid "Search for more accounts"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:456
+msgid "Search for more feeds"
+msgstr ""
+
+#: src/components/dms/components/UserSearchInput.tsx:43
+msgid "Search for people"
+msgstr ""
+
+#: src/screens/Search/Shell.tsx:388
+msgid "Search for posts, users, or feeds"
+msgstr ""
+
+#. Accessibility label for the GIF search input inside the GIF picker dialog.
+#: src/features/gifPicker/components/GifPickerHeader.tsx:40
+msgid "Search GIFs"
+msgstr ""
+
+#: src/screens/Hashtag.tsx:224
+#: src/screens/Search/SearchResults.tsx:313
+msgid "Search is currently unavailable when logged out"
+msgstr ""
+
+#. Placeholder text inside the GIF search input. KLIPY is the third-party GIF provider; keep the brand name as-is.
+#: src/features/gifPicker/components/GifPickerHeader.tsx:45
+msgid "Search KLIPY"
+msgstr ""
+
+#: src/components/dialogs/LanguageSelectDialog.tsx:232
+#: src/components/dialogs/LanguageSelectDialog.tsx:233
+msgid "Search languages"
+msgstr ""
+
+#: src/screens/Profile/ProfileSearch.tsx:36
+msgid "Search my posts"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:304
+#: src/view/com/profile/ProfileMenu.tsx:307
+msgid "Search posts"
+msgstr ""
+
+#: src/components/dialogs/SearchablePeopleList.tsx:691
+#: src/components/dms/components/UserSearchInput.tsx:63
+#: src/components/ProgressGuide/FollowDialog.tsx:727
+msgid "Search profiles"
+msgstr ""
+
+#: src/screens/Profile/ProfileSearch.tsx:38
+msgid "Search..."
+msgstr ""
+
+#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dms/components/UserSearchInput.tsx:64
+#: src/components/ProgressGuide/FollowDialog.tsx:728
+msgid "Searches for profiles"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
+msgid "Security step required"
+msgstr ""
+
+#. placeholder {0}: isCashtag ? tag : `#${tag}`
+#: src/components/RichTextTag.tsx:114
+msgid "See {0} posts"
+msgstr ""
+
+#. placeholder {0}: isCashtag ? tag : `#${tag}`
+#: src/components/RichTextTag.tsx:131
+msgid "See {0} posts by user"
+msgstr ""
+
+#: src/components/RichTextTag.tsx:122
+msgid "See {tag} posts"
+msgstr ""
+
+#: src/components/RichTextTag.tsx:140
+msgid "See {tag} posts by user"
+msgstr ""
+
+#: src/components/RichTextTag.tsx:124
+msgid "See #{tag} posts"
+msgstr ""
+
+#: src/components/RichTextTag.tsx:142
+msgid "See #{tag} posts by user"
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.web.tsx:177
+msgid "See jobs at Bluesky"
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:491
+#: src/components/FeedInterstitials.tsx:549
+msgid "See more"
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:472
+msgid "See more suggested profiles"
+msgstr ""
+
+#: src/view/com/profile/ProfileFollows.tsx:190
+#: src/view/com/profile/ProfileFollows.tsx:191
+msgid "See suggested accounts"
+msgstr ""
+
+#: src/screens/SavedFeeds.tsx:232
+#: src/screens/SavedFeeds.tsx:403
+msgid "See this guide"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:196
+msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause"
+msgstr ""
+
+#. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected.
+#: src/components/InterestTabs.tsx:337
+msgid "Select \"{interestsDisplayName}\" category"
+msgstr ""
+
+#. Accessibility label for a username suggestion in the account creation flow
+#. placeholder {0}: suggestion.handle
+#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:43
+msgid "Select {0}"
+msgstr ""
+
+#: src/view/com/composer/select-language/PostLanguageSelect.tsx:110
+msgid "Select {langName}"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68
+msgid "Select a color"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:380
+msgid "Select a reason"
+msgstr ""
+
+#: src/screens/Login/ChooseAccountForm.tsx:81
+msgid "Select account"
+msgstr ""
+
+#: src/components/AppLanguageDropdown.tsx:61
+msgid "Select an app language"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66
+msgid "Select an avatar"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66
+msgid "Select an emoji"
+msgstr ""
+
+#: src/components/Select/index.tsx:199
+msgid "Select an option"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:118
+msgid "Select app language"
+msgstr ""
+
+#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60
+#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67
+msgid "Select caption file (.vtt)"
+msgstr ""
+
+#: src/components/dialogs/SearchablePeopleList.tsx:501
+msgid "Select chat \"{name}\""
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:195
+#: src/screens/Settings/LanguageSettings.tsx:233
+msgid "Select content languages"
+msgstr ""
+
+#: src/features/liveNow/components/GoLiveDialog.tsx:180
+msgid "Select duration"
+msgstr ""
+
+#: src/screens/Login/index.tsx:162
+msgid "Select from an existing account"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:553
+msgid "Select from your lists"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:555
+msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}0>"
+msgstr ""
+
+#. Accessibility label for the button in the post composer that opens the GIF picker dialog.
+#: src/view/com/composer/photos/SelectGifBtn.tsx:38
+msgid "Select GIF"
+msgstr ""
+
+#. Accessibility label for an individual GIF tile in the picker grid. The placeholder is the GIF’s title from the provider.
+#. placeholder {0}: gif.title
+#: src/features/gifPicker/components/GifPickerItem.tsx:31
+msgid "Select GIF \"{0}\""
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:699
+msgid "Select group chat members"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:151
+msgid "Select how long to mute this word for."
+msgstr ""
+
+#: src/components/AppLanguageDropdown.tsx:69
+#: src/components/LanguageSelect.tsx:37
+#: src/components/LanguageSelect.tsx:38
+msgid "Select language"
+msgstr ""
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:273
+msgid "Select language..."
+msgstr ""
+
+#: src/components/dialogs/LanguageSelectDialog.tsx:267
+msgid "Select languages"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:430
+msgid "Select moderation service"
+msgstr ""
+
+#: src/view/com/composer/select-language/PostLanguageSelect.tsx:91
+msgid "Select post language"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:152
+msgid "Select primary language"
+msgstr ""
+
+#: src/components/InternationalPhoneCodeSelect.tsx:68
+msgid "Select telephone code"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84
+msgid "Select the {emojiName} emoji as your avatar"
+msgstr ""
+
+#: src/components/Post/Translated/index.tsx:446
+msgid "Select the source language"
+msgstr ""
+
+#: src/view/com/composer/select-language/PostLanguageSelect.tsx:77
+#: src/view/com/composer/select-language/PostLanguageSelect.tsx:137
+msgid "Select up to 3 languages used in this post"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:251
+msgid "Select what content this mute word should apply to."
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:111
+msgid "Select which language to use for the app's user interface."
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:181
+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:297
+msgid "Select your date of birth"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:69
+#: src/screens/Settings/InterestsSettings.tsx:178
+msgid "Select your interests from the options below"
+msgstr ""
+
+#: src/screens/Settings/LanguageSettings.tsx:145
+msgid "Select your preferred language for translations in your feed."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
+msgid "Select your preferred notification channels"
+msgstr ""
+
+#: src/view/com/composer/SelectMediaButton.tsx:420
+msgid "Selecting multiple media types is not supported."
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:188
+msgid "Self-harm or dangerous behaviors"
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:255
+#: src/components/contacts/screens/PhoneInput.tsx:260
+msgid "Send code"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
+msgid "Send email"
+msgstr ""
+
+#: src/components/SendErrorReportDialog.tsx:60
+#: src/components/SendErrorReportDialog.tsx:64
+#: src/screens/Settings/AboutSettings.tsx:118
+#: src/screens/Settings/AboutSettings.tsx:121
+msgid "Send error report"
+msgstr ""
+
+#: src/view/shell/Drawer.tsx:364
+msgid "Send feedback"
+msgstr ""
+
+#: src/screens/Messages/components/MessageComposer.tsx:288
+#: src/screens/Messages/components/MessageInput.web.tsx:225
+msgid "Send message"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:146
+msgid "Send post to {name}"
+msgstr ""
+
+#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72
+msgid "Send post to..."
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:818
+msgid "Send report to {title}"
+msgstr ""
+
+#: src/components/contacts/components/InviteInfo.tsx:63
+msgid "Send the message from your phone"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
+msgid "Send verification email"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105
+#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111
+msgid "Send via direct message"
+msgstr ""
+
+#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
+#: src/components/dms/MessageContextMenu.tsx:137
+msgid "Sent at {0}"
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:283
+msgid "Sent to our phone number verification provider Plivo"
+msgstr ""
+
+#: src/components/dialogs/ServerInput.tsx:174
+msgid "Server address"
+msgstr ""
+
+#. placeholder {0}: icon.name
+#: src/screens/Settings/AppIconSettings/index.tsx:176
+msgid "Set app icon to {0}"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:108
+msgid "Set new password"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:481
+msgid "Set precisely which groups of people can reply to your post"
+msgstr ""
+
+#: src/screens/Onboarding/Layout.tsx:48
+msgid "Set up your account"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:431
+msgid "Set who can reply to your post"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:223
+msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:109
+msgid "Sets email for password reset"
+msgstr ""
+
+#: src/Navigation.tsx:212
+#: src/screens/Settings/Settings.tsx:98
+#: src/view/shell/desktop/LeftNav.tsx:755
+#: src/view/shell/Drawer.tsx:612
+msgid "Settings"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:199
+msgid "Settings for activity from others"
+msgstr ""
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85
+msgid "Settings for allowing others to be notified of your posts"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:133
+msgid "Settings for like notifications"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:166
+msgid "Settings for mention notifications"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:144
+msgid "Settings for new follower notifications"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:238
+msgid "Settings for notifications for everything else"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:212
+msgid "Settings for notifications for likes of your reposts"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:225
+msgid "Settings for notifications for reposts of your reposts"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:177
+msgid "Settings for quote notifications"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:155
+msgid "Settings for reply notifications"
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:188
+msgid "Settings for repost notifications"
+msgstr ""
+
+#: src/screens/ModerationInteractionSettings/index.tsx:103
+msgctxt "toast"
+msgid "Settings saved"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:169
+msgid "Sexual activity or erotic nudity."
+msgstr ""
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:38
+msgid "Sexually Suggestive"
+msgstr ""
+
+#: src/components/MediaPreview.tsx:235
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
+#: src/components/StarterPack/QrCodeDialog.tsx:195
+#: src/screens/Hashtag.tsx:130
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
+#: src/screens/StarterPack/StarterPackScreen.tsx:447
+#: src/screens/Topic.tsx:90
+msgid "Share"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:575
+msgid "Share anyway"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179
+msgid "Share author DID"
+msgstr ""
+
+#: src/components/Lightbox/chrome/ImageMenu.tsx:94
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
+msgid "Share image"
+msgstr ""
+
+#: src/components/dialogs/LinkWarning.tsx:112
+#: src/components/dialogs/LinkWarning.tsx:120
+#: src/components/StarterPack/ShareDialog.tsx:115
+#: src/components/StarterPack/ShareDialog.tsx:124
+msgid "Share link"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:74
+msgid "Share link dialog"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170
+msgid "Share post at:// URI"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:129
+#: src/components/StarterPack/ShareDialog.tsx:139
+msgid "Share QR code"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
+msgid "Share this feed"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:440
+msgid "Share this starter pack"
+msgstr ""
+
+#: src/components/StarterPack/ShareDialog.tsx:86
+msgid "Share this starter pack and help people join your community on Bluesky."
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132
+#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166
+#: src/screens/StarterPack/StarterPackScreen.tsx:638
+#: src/screens/StarterPack/StarterPackScreen.tsx:646
+#: src/view/com/profile/ProfileMenu.tsx:282
+#: src/view/com/profile/ProfileMenu.tsx:295
+msgid "Share via..."
+msgstr ""
+
+#: src/components/contacts/screens/GetContacts.tsx:232
+msgid "Share your contacts to find friends"
+msgstr ""
+
+#: src/Navigation.tsx:315
+msgid "Shared Preferences Tester"
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:220
+#: src/components/moderation/LabelPreference.tsx:143
+#: src/components/moderation/PostHider.tsx:140
+msgid "Show"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:86
+msgid "Show alt text"
+msgstr ""
+
+#: src/components/moderation/ScreenHider.tsx:179
+#: src/components/moderation/ScreenHider.tsx:182
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
+#: src/screens/List/ListHiddenScreen.tsx:194
+#: src/screens/VideoFeed/index.tsx:646
+#: src/screens/VideoFeed/index.tsx:652
+msgid "Show anyway"
+msgstr ""
+
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
+msgid "Show automation label"
+msgstr ""
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:30
+#: src/lib/moderation/useLabelBehaviorDescription.ts:66
+msgid "Show badge"
+msgstr ""
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:64
+msgid "Show badge and filter from feeds"
+msgstr ""
+
+#: src/components/dialogs/Embed.tsx:125
+msgid "Show customization options"
+msgstr ""
+
+#: src/components/dms/SystemMessageGroup.tsx:57
+msgid "Show group chat updates"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595
+msgid "Show less like this"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:190
+msgid "Show list anyway"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:534
+msgid "Show lists of users to select from"
+msgstr ""
+
+#: src/features/liveEvents/components/LiveEventFeedsSettingsToggle.tsx:28
+#: src/features/liveEvents/components/LiveEventFeedsSettingsToggle.tsx:38
+msgid "Show live events in your Discover Feed"
+msgstr ""
+
+#: src/components/Post/ShowMoreTextButton.tsx:52
+msgid "Show More"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587
+msgid "Show more like this"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:15
+msgid "Show more replies"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:99
+msgid "Show post replies in a threaded tree view"
+msgstr ""
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:108
+#: src/screens/Settings/FollowingFeedPreferences.tsx:118
+msgid "Show quote posts"
+msgstr ""
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:72
+#: src/screens/Settings/FollowingFeedPreferences.tsx:82
+msgid "Show replies"
+msgstr ""
+
+#: src/screens/PostThread/components/HeaderDropdown.tsx:45
+msgid "Show replies as"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674
+msgid "Show reply for everyone"
+msgstr ""
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:90
+#: src/screens/Settings/FollowingFeedPreferences.tsx:100
+msgid "Show reposts"
+msgstr ""
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:133
+#: src/screens/Settings/FollowingFeedPreferences.tsx:143
+msgid "Show samples of your saved feeds in your Following feed"
+msgstr ""
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:61
+msgid "Show warning"
+msgstr ""
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:59
+msgid "Show warning and filter from feeds"
+msgstr ""
+
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
+msgid "Show when you’re live"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602
+msgid "Shows information about when this post was created"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:123
+msgid "Shows other accounts you can switch to"
+msgstr ""
+
+#: src/components/moderation/ContentHider.tsx:172
+#: src/components/moderation/PostHider.tsx:94
+msgid "Shows the content"
+msgstr ""
+
+#: src/components/dialogs/Signin.tsx:98
+#: src/components/dialogs/Signin.tsx:100
+#: src/components/WelcomeModal.tsx:197
+#: src/components/WelcomeModal.tsx:209
+#: src/screens/Hashtag.tsx:228
+#: src/screens/Login/index.tsx:140
+#: src/screens/Login/index.tsx:161
+#: src/screens/Login/LoginForm.tsx:179
+#: src/screens/Login/LoginForm.tsx:350
+#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
+#: src/screens/Search/SearchResults.tsx:316
+#: src/view/com/auth/SplashScreen.tsx:118
+#: src/view/com/auth/SplashScreen.tsx:124
+#: src/view/com/auth/SplashScreen.web.tsx:122
+#: src/view/com/auth/SplashScreen.web.tsx:130
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
+#: src/view/shell/NavSignupCard.tsx:58
+#: src/view/shell/NavSignupCard.tsx:63
+msgid "Sign in"
+msgstr ""
+
+#. placeholder {0}: account.handle
+#: src/components/AccountList.tsx:135
+msgid "Sign in as {0}"
+msgstr ""
+
+#: src/screens/Login/ChooseAccountForm.tsx:86
+msgid "Sign in as..."
+msgstr ""
+
+#: src/screens/Deactivated.tsx:195
+#: src/screens/Deactivated.tsx:201
+msgid "Sign in or create an account"
+msgstr ""
+
+#: src/components/dialogs/Signin.tsx:76
+msgid "Sign in or create your account to join the conversation!"
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
+#: src/components/AccountList.tsx:70
+msgid "Sign in to account that is not listed"
+msgstr ""
+
+#: src/components/dialogs/Signin.tsx:47
+msgid "Sign in to Bluesky or create a new account"
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
+msgid "Sign in to view post"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:265
+#: src/screens/Settings/Settings.tsx:267
+#: src/screens/Settings/Settings.tsx:299
+#: src/screens/SignupQueued.tsx:94
+#: src/screens/SignupQueued.tsx:97
+#: src/screens/Takendown.tsx:88
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
+msgid "Sign out"
+msgstr ""
+
+#: src/screens/Takendown.tsx:91
+msgid "Sign Out"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:296
+#: src/view/shell/desktop/LeftNav.tsx:224
+msgid "Sign out?"
+msgstr ""
+
+#: src/components/moderation/ScreenHider.tsx:98
+#: src/lib/moderation/useGlobalLabelStrings.ts:28
+msgid "Sign-in Required"
+msgstr ""
+
+#. placeholder {0}: account.handle
+#: src/lib/hooks/useAccountSwitcher.ts:42
+#: src/screens/Login/ChooseAccountForm.tsx:56
+msgid "Signed in as @{0}"
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:163
+#: src/components/contacts/screens/VerifyNumber.tsx:205
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:86
+#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:90
+#: src/screens/Onboarding/StepFinished/index.tsx:295
+#: src/screens/Onboarding/StepFinished/index.tsx:317
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:281
+#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:105
+#: src/screens/StarterPack/Wizard/index.tsx:206
+msgid "Skip"
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:160
+#: src/components/contacts/screens/VerifyNumber.tsx:202
+msgid "Skip contact sharing and continue to the app"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1402
+msgid "Skip empty posts?"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished/index.tsx:288
+#: src/screens/Onboarding/StepFinished/index.tsx:314
+msgid "Skip introduction and start using your account"
+msgstr ""
+
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:278
+#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102
+msgid "Skip to next step"
+msgstr ""
+
+#: src/components/images/Gallery/index.tsx:435
+msgid "slide"
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:152
+msgid "Smaller"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
+msgid "Snoozes the reminder"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsListDialog.tsx:155
+msgid "So many thoughts, you should post one"
+msgstr ""
+
+#: src/components/WelcomeModal.tsx:151
+msgid "Social media you control."
+msgstr ""
+
+#: src/lib/interests.ts:58
+msgid "Software Dev"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:466
+msgid "Some moderation services in your list are no longer available."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:122
+msgid "Some of your verifications are invalid."
+msgstr ""
+
+#: src/components/FeedInterstitials.tsx:628
+msgid "Some other feeds you might like"
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:88
+msgid "Some people can reply"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:86
+msgid "Someone joined"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:87
+msgid "Someone joined the group"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:99
+msgid "Someone left"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:100
+msgid "Someone left the group"
+msgstr ""
+
+#. placeholder {0}: reaction.value
+#: src/components/dms/MessageItem.tsx:274
+msgid "Someone reacted {0}"
+msgstr ""
+
+#. placeholder {0}: reaction.value
+#: src/components/dms/getReactionInfo.ts:47
+msgid "Someone reacted {0} to {target}"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:60
+msgid "Someone was added"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:61
+msgid "Someone was added to the group"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:73
+msgid "Someone was removed"
+msgstr ""
+
+#: src/components/dms/getSystemMessageInfo.ts:74
+msgid "Someone was removed from the group"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
+msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:137
+#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
+msgid "Something went wrong"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
+#: src/components/moderation/ReportDialog/index.tsx:289
+#: src/screens/Deactivated.tsx:86
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
+#: src/view/screens/Storybook/Admonitions.tsx:56
+msgid "Something went wrong, please try again"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:112
+#: src/screens/Profile/Sections/Labels.tsx:184
+msgid "Something went wrong, please try again."
+msgstr ""
+
+#: src/components/Lists.tsx:185
+msgid "Something went wrong!"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadError.tsx:28
+msgid "Something went wrong. Please try again in a moment."
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:247
+msgid "Something went wrong. Please try again."
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
+msgid "Something wrong? Let us know."
+msgstr ""
+
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:231
+msgid "Sorry, we're unable to load account suggestions at this time."
+msgstr ""
+
+#: src/App.native.tsx:139
+#: src/App.web.tsx:118
+msgid "Sorry! Your session expired. Please sign in again."
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:45
+msgid "Sort replies"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:52
+msgid "Sort replies by"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:49
+msgid "Sort replies to the same post by:"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:183
+#: src/components/moderation/ModerationDetailsDialog.tsx:202
+msgid "Source: <0>{sourceName}0>"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39
+msgid "Spam"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:36
+msgid "Spam or other inauthentic behavior or deception"
+msgstr ""
+
+#: src/lib/interests.ts:72
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218
+msgid "Sports"
+msgstr ""
+
+#: src/components/PostControls/ShareMenu/RecentChats.tsx:238
+msgid "Start a conversation, and it will appear here."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
+msgid "Start a new chat"
+msgstr ""
+
+#: src/screens/ProfileList/AboutSection.tsx:104
+#: src/screens/ProfileList/FeedSection.tsx:82
+msgid "Start adding people"
+msgstr ""
+
+#: src/screens/ProfileList/AboutSection.tsx:110
+#: src/screens/ProfileList/FeedSection.tsx:88
+msgid "Start adding people!"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:700
+msgid "Start chat"
+msgstr ""
+
+#: src/components/dialogs/SearchablePeopleList.tsx:428
+#: src/components/dms/InitiateChatFlow.tsx:848
+msgid "Start chat with {displayName}"
+msgstr ""
+
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
+#: src/screens/StarterPack/Wizard/index.tsx:197
+msgid "Starter Pack"
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle(creator.handle, '@')
+#: src/components/StarterPack/StarterPackCard.tsx:91
+msgid "Starter pack by {0}"
+msgstr ""
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:171
+msgid "Starter pack by <0/>"
+msgstr ""
+
+#: src/components/StarterPack/StarterPackCard.tsx:90
+#: src/view/com/profile/ProfileSubpageHeader.tsx:169
+msgid "Starter pack by you"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:765
+msgid "Starter pack is invalid"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:665
+#: src/view/screens/Profile.tsx:240
+msgid "Starter Packs"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:295
+msgid "Starter packs let you easily share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:105
+msgid "Starter packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:555
+msgid "Starter Packs let you share your favorite feeds and people with your friends."
+msgstr ""
+
+#: src/screens/Settings/AboutSettings.tsx:103
+#: src/screens/Settings/AboutSettings.tsx:106
+msgid "Status Page"
+msgstr ""
+
+#. placeholder {0}: state.activeStep + 1
+#. placeholder {0}: state.activeStepIndex + 1
+#. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3'
+#. placeholder {1}: state.totalSteps
+#: src/screens/Onboarding/Layout.tsx:226
+#: src/screens/Signup/index.tsx:180
+msgid "Step {0} of {1}"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:401
+msgid "Storage cleared, you need to restart the app now."
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:294
+msgid "Stored as part of a secure code for matching with others"
+msgstr ""
+
+#: src/Navigation.tsx:305
+#: src/screens/Settings/Settings.tsx:456
+msgid "Storybook"
+msgstr ""
+
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
+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:122
+#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:128
+#: src/components/moderation/LabelsOnMeDialog.tsx:343
+#: src/components/moderation/LabelsOnMeDialog.tsx:344
+#: src/components/SendErrorReportDialog.tsx:90
+#: src/components/SendErrorReportDialog.tsx:95
+#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
+#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
+msgid "Submit"
+msgstr ""
+
+#: src/screens/Takendown.tsx:76
+msgid "Submit appeal"
+msgstr ""
+
+#: src/screens/Takendown.tsx:80
+msgid "Submit Appeal"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
+msgid "Submit report"
+msgstr ""
+
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:75
+msgid "Subscribe"
+msgstr ""
+
+#. placeholder {0}: highlightedPublisher.name
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
+msgid "Subscribe on {0}"
+msgstr ""
+
+#. placeholder {0}: highlightedPublisher.name
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
+msgid "Subscribe to {publicationTitle} on {0}"
+msgstr ""
+
+#. placeholder {0}: labelerInfo.creator.handle
+#: src/screens/Profile/Sections/Labels.tsx:231
+msgid "Subscribe to @{0} to use these labels:"
+msgstr ""
+
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:252
+msgid "Subscribe to account activity"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:347
+msgid "Subscribe to Labeler"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:313
+msgid "Subscribe to this labeler"
+msgstr ""
+
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:63
+msgid "Subscribe to this list"
+msgstr ""
+
+#: src/ageAssurance/components/RedirectOverlay.tsx:252
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:160
+msgid "Success"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
+msgid "Success!"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:37
+msgid "Successfully verified"
+msgstr ""
+
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
+msgid "Suggested"
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:375
+msgid "Suggested accounts"
+msgstr ""
+
+#. Accounts suggested to the user for them to follow
+#: src/components/FeedInterstitials.tsx:469
+#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182
+msgid "Suggested for you"
+msgstr ""
+
+#: src/view/com/composer/labels/LabelsBtn.tsx:140
+#: src/view/com/composer/labels/LabelsBtn.tsx:143
+msgid "Suggestive"
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72
+msgctxt "Name of app icon variant"
+msgid "Sunrise"
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86
+msgctxt "Name of app icon variant"
+msgid "Sunset"
+msgstr ""
+
+#: src/Navigation.tsx:325
+#: src/view/screens/Support.tsx:25
+#: src/view/screens/Support.tsx:28
+msgid "Support"
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:236
+msgid "Support for this feature in your country has not been enabled yet! Please check back later."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
+msgid "Suspended accounts cannot participate in a group chat."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
+msgid "Suspended accounts cannot participate in chat."
+msgstr ""
+
+#: src/components/dialogs/SwitchAccount.tsx:47
+#: src/components/dialogs/SwitchAccount.tsx:50
+#: src/screens/Settings/Settings.tsx:122
+#: src/screens/Settings/Settings.tsx:134
+#: src/screens/Settings/Settings.tsx:615
+#: src/view/shell/desktop/LeftNav.tsx:262
+msgid "Switch account"
+msgstr ""
+
+#: src/view/shell/desktop/LeftNav.tsx:124
+msgid "Switch accounts"
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
+#: src/view/shell/desktop/LeftNav.tsx:364
+msgid "Switch to {0}"
+msgstr ""
+
+#: src/components/dialogs/Embed.tsx:154
+#: src/components/dialogs/Embed.tsx:156
+#: src/screens/Settings/AppearanceSettings.tsx:85
+#: src/screens/Settings/AppearanceSettings.tsx:135
+msgid "System"
+msgstr ""
+
+#: src/screens/Log.tsx:49
+#: src/screens/Settings/AboutSettings.tsx:110
+#: src/screens/Settings/AboutSettings.tsx:113
+#: src/screens/Settings/Settings.tsx:449
+msgid "System log"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:291
+msgid "Tags only"
+msgstr ""
+
+#: src/components/dialogs/DeviceLocationRequestDialog.tsx:110
+msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:580
+msgid "Tap for details"
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:90
+msgid "Tap for information"
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:45
+msgid "Tap for more information"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:323
+msgid "Tap here to update your location with GPS."
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165
+msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky"
+msgstr ""
+
+#: src/components/ContextMenu/Backdrop.ios.tsx:54
+#: src/components/ContextMenu/Backdrop.ios.tsx:80
+#: src/components/ContextMenu/Backdrop.tsx:46
+msgid "Tap to close context menu"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
+#: src/components/ProgressGuide/Toast.tsx:163
+msgid "Tap to dismiss"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
+msgid "Tap to remove"
+msgstr ""
+
+#. placeholder {0}: reaction.value
+#: src/components/dms/ReactionsDialog.tsx:212
+msgid "Tap to remove your {0} reaction"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
+msgid "Tap to retry"
+msgstr ""
+
+#. placeholder {0}: tab.value
+#: src/components/dms/ReactionsDialog.tsx:358
+msgid "Tap to show {0} reactions"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:357
+msgid "Tap to show all reactions"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:297
+msgid "Tap to view reactions"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107
+msgid "Targeted harassment"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:236
+msgid "Task complete - 10 follows!"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:226
+msgid "Task complete - 10 likes!"
+msgstr ""
+
+#: src/components/ProgressGuide/List.tsx:111
+msgid "Teach our algorithm what you like"
+msgstr ""
+
+#: src/lib/interests.ts:73
+msgid "Tech"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:368
+msgid "Tell us a bit about yourself"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:70
+msgid "Tell us a little more"
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:214
+msgid "Temporarily deactivate your account"
+msgstr ""
+
+#: src/view/shell/desktop/RightNav.tsx:125
+#: src/view/shell/desktop/RightNav.tsx:126
+msgid "Terms"
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:181
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
+#: src/Navigation.tsx:335
+#: src/screens/Settings/AboutSettings.tsx:87
+#: src/screens/Settings/AboutSettings.tsx:90
+#: src/view/screens/TermsOfService.tsx:25
+#: src/view/shell/Drawer.tsx:700
+#: src/view/shell/Drawer.tsx:702
+msgid "Terms of Service"
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:275
+msgid "Text & tags"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:307
+#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
+#: src/screens/Messages/components/ChatDisabled.tsx:142
+msgid "Text input field"
+msgstr ""
+
+#: src/view/com/posts/ShowLessFollowup.tsx:39
+msgid "Thank you for your feedback! It has been sent to the feed operator."
+msgstr ""
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:77
+msgid "Thanks, you have successfully verified your email address. You can close this dialog."
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:423
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:247
+msgid "Thanks! You're all set."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:500
+msgid "That contains the following:"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:115
+#: src/screens/StarterPack/StarterPackScreen.tsx:116
+#: src/screens/StarterPack/StarterPackScreen.tsx:160
+#: src/screens/StarterPack/StarterPackScreen.tsx:161
+#: src/screens/StarterPack/Wizard/index.tsx:116
+#: src/screens/StarterPack/Wizard/index.tsx:126
+msgid "That starter pack could not be found."
+msgstr ""
+
+#: src/screens/Signup/StepHandle/index.tsx:81
+msgid "That username is already taken"
+msgstr ""
+
+#: src/view/com/post-thread/PostQuotes.tsx:135
+msgid "That's all, folks!"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:1141
+msgid "That's everything!"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415
+#: src/view/com/profile/ProfileMenu.tsx:551
+msgid "The account will be able to interact with you after unblocking."
+msgstr ""
+
+#: src/screens/Settings/AppIconSettings/index.tsx:39
+#: src/screens/Settings/AppIconSettings/index.tsx:225
+msgid "The app will be restarted"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:123
+#: src/lib/moderation/useModerationCauseDescription.ts:129
+msgid "The author of this thread has hidden this reply."
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:169
+msgid "The birthdate you've entered means you are under 18 years old. Certain content and features may be unavailable to you."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:415
+msgid "The Bluesky web application"
+msgstr ""
+
+#: src/view/screens/CommunityGuidelines.tsx:32
+msgid "The Community Guidelines have been moved to <0/>"
+msgstr ""
+
+#: src/view/screens/CopyrightPolicy.tsx:29
+msgid "The Copyright Policy has been moved to <0/>"
+msgstr ""
+
+#: src/view/com/posts/FeedShutdownMsg.tsx:107
+msgid "The Discover feed"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:227
+msgid "The Discover feed now knows what you like"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:332
+msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off."
+msgstr ""
+
+#: src/view/com/posts/FeedShutdownMsg.tsx:70
+msgid "The feed has been replaced with Discover."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:64
+msgid "The following labels were applied to your account."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:65
+msgid "The following labels were applied to your content."
+msgstr ""
+
+#: src/features/liveNow/components/GoLiveDialog.tsx:162
+msgid "The following services are enabled for your account: {allowedServices}"
+msgstr ""
+
+#: src/screens/ModerationInteractionSettings/index.tsx:43
+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."
+msgstr ""
+
+#: src/components/ageAssurance/useAgeAssuranceCopy.ts:23
+msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
+#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
+msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
+msgstr ""
+
+#: src/view/screens/PrivacyPolicy.tsx:29
+msgid "The Privacy Policy has been moved to <0/>"
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
+msgstr ""
+
+#: src/lib/hooks/useCleanError.ts:41
+#: src/lib/strings/errors.ts:19
+msgid "The server appears to be experiencing issues. Please try again in a few moments."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:775
+msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead."
+msgstr ""
+
+#: src/components/ContextMenu/index.tsx:500
+msgid "The subject of the context menu"
+msgstr ""
+
+#: src/view/screens/Support.tsx:31
+msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us."
+msgstr ""
+
+#: src/view/screens/TermsOfService.tsx:29
+msgid "The Terms of Service have been moved to"
+msgstr ""
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:89
+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:115
+#: src/components/contacts/screens/VerifyNumber.tsx:113
+#: src/components/contacts/screens/VerifyNumber.tsx:165
+msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again."
+msgstr ""
+
+#: src/screens/Settings/AppearanceSettings.tsx:139
+msgid "Theme"
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:106
+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/Messages/components/InviteLinkDialog.tsx:482
+msgid "There is no invite link for this group chat."
+msgstr ""
+
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
+msgid "There is no time limit for account deactivation, come back any time."
+msgstr ""
+
+#. Body message of the error screen shown when the GIF provider request fails. Encourages the user to retry.
+#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:56
+msgid "There was a problem loading GIFs. Check your connection and try again."
+msgstr ""
+
+#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
+msgid "There was a problem with your internet connection, please try again"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
+#: src/screens/ProfileList/components/Header.tsx:91
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
+#: src/screens/SavedFeeds.tsx:99
+#: src/screens/SavedFeeds.tsx:278
+msgid "There was an issue contacting the server"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
+msgid "There was an issue contacting the server, please check your internet connection and try again."
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeed.tsx:133
+msgid "There was an issue fetching notifications. Tap here to try again."
+msgstr ""
+
+#: src/screens/Search/Explore.tsx:1027
+#: src/view/com/posts/PostFeed.tsx:775
+msgid "There was an issue fetching posts. Tap here to try again."
+msgstr ""
+
+#: src/view/com/lists/ListMembers.tsx:159
+msgid "There was an issue fetching the list. Tap here to try again."
+msgstr ""
+
+#: src/screens/Settings/AppPasswords.tsx:60
+msgid "There was an issue fetching your app passwords"
+msgstr ""
+
+#: src/view/com/feeds/ProfileFeedgens.tsx:185
+#: src/view/com/lists/ProfileLists.tsx:184
+msgid "There was an issue fetching your lists. Tap here to try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:109
+msgid "There was an issue fetching your service info"
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:153
+msgid "There was an issue removing this feed. Please check your internet connection and try again."
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
+#: src/view/com/posts/FeedShutdownMsg.tsx:53
+#: src/view/com/posts/FeedShutdownMsg.tsx:74
+msgid "There was an issue updating your feeds, please check your internet connection and try again."
+msgstr ""
+
+#. placeholder {0}: e.toString()
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474
+#: src/screens/Messages/ConversationSettings/Member.tsx:59
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117
+#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:93
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315
+#: src/view/com/profile/ProfileMenu.tsx:152
+#: src/view/com/profile/ProfileMenu.tsx:164
+#: src/view/com/profile/ProfileMenu.tsx:180
+#: src/view/com/profile/ProfileMenu.tsx:192
+#: src/view/com/profile/ProfileMenu.tsx:207
+#: src/view/com/profile/ProfileMenu.tsx:221
+msgid "There was an issue! {0}"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:241
+#: src/screens/List/ListHiddenScreen.tsx:67
+#: src/screens/List/ListHiddenScreen.tsx:81
+#: src/screens/List/ListHiddenScreen.tsx:103
+#: src/screens/ProfileList/components/Header.tsx:106
+#: src/screens/ProfileList/components/Header.tsx:120
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:121
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:135
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:38
+#: src/screens/ProfileList/components/SubscribeMenu.tsx:53
+msgid "There was an issue. Please check your internet connection and try again."
+msgstr ""
+
+#. Body of the error screen shown when the GIF picker crashes unexpectedly. Encourages the user to report the issue.
+#: src/components/dialogs/LanguageSelectDialog.tsx:349
+#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:27
+#: src/view/com/util/ErrorBoundary.tsx:59
+msgid "There was an unexpected issue in the application. Please let us know if this happened to you!"
+msgstr ""
+
+#: src/screens/SignupQueued.tsx:133
+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:660
+msgid "These are your default settings"
+msgstr ""
+
+#: src/screens/Settings/FollowingFeedPreferences.tsx:66
+msgid "These settings only apply to the Following feed."
+msgstr ""
+
+#: src/components/moderation/ScreenHider.tsx:118
+msgid "This {screenDescription} has been flagged:"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:89
+msgid "This account has a checkmark because it's been verified by trusted sources."
+msgstr ""
+
+#: src/components/BotAccountAlert.tsx:27
+msgid "This account has been marked as automated by its owner."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:94
+msgid "This account has one or more attempted verifications, but it is not currently verified."
+msgstr ""
+
+#: src/components/moderation/ScreenHider.tsx:113
+msgid "This account has requested that users sign in to view their profile."
+msgstr ""
+
+#: src/components/dms/BlockedByListDialog.tsx:33
+msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user."
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:56
+msgid "This action can be undone at any time."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:285
+msgid "This appeal will be sent to <0>{sourceName}0>."
+msgstr ""
+
+#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
+#: src/screens/Messages/components/ChatDisabled.tsx:138
+msgid "This appeal will be sent to Bluesky's moderation service."
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27
+#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47
+msgid "This author has chosen to make their posts visible only to people who are signed in."
+msgstr ""
+
+#: src/screens/Profile/components/GermButton.tsx:244
+msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
+msgstr ""
+
+#: src/screens/Messages/components/ChatEnded.tsx:49
+msgid "This chat has ended"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
+#: src/screens/Messages/components/ChatLocked.tsx:61
+msgid "This chat is locked"
+msgstr ""
+
+#: src/screens/Messages/components/MessageListError.tsx:17
+msgid "This chat was disconnected"
+msgstr ""
+
+#: src/components/contacts/screens/VerifyNumber.tsx:106
+msgid "This code is invalid. Resend to get a new code."
+msgstr ""
+
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:145
+msgid "This confirmation code is not valid. Please try again."
+msgstr ""
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:19
+msgid "This content has been hidden by the moderators."
+msgstr ""
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:24
+msgid "This content has received a general warning from moderators."
+msgstr ""
+
+#. placeholder {0}: externalEmbedLabels[source]
+#: src/components/dialogs/EmbedConsent.tsx:63
+msgid "This content is hosted by {0}. Do you want to enable external media?"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:88
+#: src/lib/moderation/useModerationCauseDescription.ts:85
+msgid "This content is not available because one of the users involved has blocked the other."
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:122
+msgid "This content is not viewable without a Bluesky account."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
+msgid "This conversation is with a deleted or a deactivated account. Press for options"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftItem.tsx:240
+msgid "This draft will be permanently deleted."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
+msgid "This email is already associated with your account."
+msgstr ""
+
+#: src/screens/Settings/ActivityPrivacySettings.tsx:56
+msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:166
+msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost0>."
+msgstr ""
+
+#: src/lib/hooks/useCleanError.ts:61
+msgid "This feature is not available while using an app password. Please sign in with your main password."
+msgstr ""
+
+#: src/lib/strings/errors.ts:31
+msgid "This feature is not available while using an App Password. Please sign in with your main password."
+msgstr ""
+
+#: src/view/com/posts/PostFeedErrorMessage.tsx:128
+msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later."
+msgstr ""
+
+#: src/view/com/posts/CustomFeedEmptyState.tsx:60
+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:171
+#: src/screens/ProfileList/FeedSection.tsx:78
+msgid "This feed is empty."
+msgstr ""
+
+#: src/view/com/posts/FeedShutdownMsg.tsx:104
+msgid "This feed is no longer online. We are showing <0>Discover0> instead."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:611
+msgid "This handle is reserved. Please try a different one."
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:142
+msgid "This image could not be used. Try a different format like .jpg or .png."
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:62
+msgid "This information is private and not shared with other users."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
+#: src/view/screens/Debug.tsx:327
+msgid "This is an empty state"
+msgstr ""
+
+#: src/features/liveNow/components/EditLiveDialog.tsx:178
+#: src/features/liveNow/components/GoLiveDialog.tsx:155
+msgid "This is not a valid link"
+msgstr ""
+
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
+msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:184
+msgid "This label was applied by the author."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:170
+msgid "This label was applied by you."
+msgstr ""
+
+#: src/screens/Profile/Sections/Labels.tsx:218
+msgid "This labeler hasn't declared what labels it publishes, and may not be active."
+msgstr ""
+
+#: src/components/dialogs/LinkWarning.tsx:95
+msgid "This link is taking you to the following website:"
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle(list.creator.handle, '@')
+#: src/screens/List/ListHiddenScreen.tsx:155
+msgid "This list – created by <0>{0}0> – contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:150
+msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description."
+msgstr ""
+
+#: src/screens/ProfileList/AboutSection.tsx:100
+msgid "This list is empty."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
+msgid "This message is hidden because this user is blocking you."
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
+msgid "This message is hidden because you are blocking this user."
+msgstr ""
+
+#: src/screens/Profile/ErrorState.tsx:41
+msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:161
+msgid "This moderation was applied to the entire user account and will appear on all posts."
+msgstr ""
+
+#: src/components/dms/MessagesListBlockedFooter.tsx:84
+msgid "This person is blocking you"
+msgstr ""
+
+#. placeholder {0}: niceDate(i18n, createdAt)
+#. placeholder {1}: niceDate(i18n, indexedAt)
+#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642
+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:274
+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:157
+msgid "This post is only visible to logged-in users."
+msgstr ""
+
+#: src/screens/Bookmarks/index.tsx:255
+msgid "This post was deleted by its author"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809
+msgid "This post will be hidden from feeds and threads. This cannot be undone."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1015
+msgid "This post's author has disabled quote posts."
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:572
+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:844
+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 ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
+msgid "This screen is only available for group conversations."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:32
+msgid "This service has not provided terms of service or a privacy policy."
+msgstr ""
+
+#: src/features/liveNow/index.tsx:203
+msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:469
+msgid "This should create a domain record at:"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:214
+msgid "This should only take a few minutes."
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:94
+msgid "This user does not have a display name, and therefore cannot be verified."
+msgstr ""
+
+#: src/view/com/profile/ProfileFollowers.tsx:170
+msgid "This user doesn't have any followers."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
+msgid "This user has blocked you and cannot be messaged."
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:83
+#: src/lib/moderation/useModerationCauseDescription.ts:76
+msgid "This user has blocked you. You cannot view their content."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
+msgid "This user has disabled chat and cannot be messaged."
+msgstr ""
+
+#: src/lib/moderation/useGlobalLabelStrings.ts:30
+msgid "This user has requested that their content only be shown to signed-in users."
+msgstr ""
+
+#. placeholder {0}: list.name
+#: src/components/moderation/ModerationDetailsDialog.tsx:63
+msgid "This user is included in the <0>{0}0> list which you have blocked."
+msgstr ""
+
+#. placeholder {0}: list.name
+#: src/components/moderation/ModerationDetailsDialog.tsx:95
+msgid "This user is included in the <0>{0}0> list which you have muted."
+msgstr ""
+
+#: src/components/NewskieDialog.tsx:49
+msgid "This user is new here. Press for more info about when they joined."
+msgstr ""
+
+#: src/view/com/profile/ProfileFollows.tsx:182
+msgid "This user isn't following anyone."
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236
+msgid "This video can’t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)."
+msgstr ""
+
+#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157
+msgid "This will create a new list with the same name, description, and members as this starter pack."
+msgstr ""
+
+#. placeholder {0}: word.value
+#: src/components/dialogs/MutedWords.tsx:454
+msgid "This will delete \"{0}\" from your muted words. You can always add it back later."
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:330
+msgid "This will irreversibly delete your Bluesky account <0>{currentHandle}0> and all associated data. Note that this will affect any other <1>AT Protocol1> services you use with this account."
+msgstr ""
+
+#. placeholder {0}: account.handle
+#: src/screens/Settings/Settings.tsx:668
+msgid "This will remove @{0} from the quick access list."
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837
+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:25
+#: src/screens/PostThread/components/HeaderDropdown.tsx:28
+msgid "Thread options"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:70
+#: src/screens/Settings/ContentAndMediaSettings.tsx:73
+msgid "Thread preferences"
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:35
+msgid "Thread Preferences"
+msgstr ""
+
+#: src/screens/PostThread/components/HeaderDropdown.tsx:59
+#: src/screens/PostThread/components/HeaderDropdown.tsx:64
+msgid "Threaded"
+msgstr ""
+
+#: src/Navigation.tsx:368
+msgid "Threads Preferences"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:134
+msgid "Threats or incitement"
+msgstr ""
+
+#. placeholder {0}: Number(time) || 0
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34
+msgid "Time remaining: {0, plural, one {# second} other {# seconds}}"
+msgstr ""
+
+#: src/components/SendErrorReportDialog.tsx:68
+msgid "Title"
+msgstr ""
+
+#: src/components/SendErrorReportDialog.tsx:71
+msgid "Title (100 characters max)"
+msgstr ""
+
+#: src/screens/Settings/components/DisableEmail2FADialog.tsx:100
+msgid "To disable the email 2FA method, please verify your access to the email address."
+msgstr ""
+
+#. placeholder {0}: currentAccount?.email
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
+msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:251
+msgid "To log out, <0>click here0>. Or if you’d prefer, you can <1>delete your account1>."
+msgstr ""
+
+#: src/components/dms/DateDivider.tsx:27
+msgid "Today"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:392
+msgid "Toggle to enable or disable adult content"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:173
+msgid "Toggles the sound"
+msgstr ""
+
+#: src/components/contacts/screens/VerifyNumber.tsx:123
+msgid "Too many attempts. Please wait a few minutes and try again."
+msgstr ""
+
+#: src/components/contacts/screens/VerifyNumber.tsx:176
+msgid "Too many codes sent. Please wait a few minutes and try again."
+msgstr ""
+
+#: src/components/contacts/screens/GetContacts.tsx:156
+msgid "Too many contacts - you've exceeded the number of contacts you can import to find your friends"
+msgstr ""
+
+#: src/screens/Hashtag.tsx:88
+#: src/screens/Search/SearchResults.tsx:54
+#: src/screens/Topic.tsx:59
+msgid "Top"
+msgstr ""
+
+#: src/screens/PostThread/components/HeaderDropdown.tsx:75
+#: src/screens/PostThread/components/HeaderDropdown.tsx:80
+#: src/screens/Settings/ThreadPreferences.tsx:57
+#: src/screens/Settings/ThreadPreferences.tsx:60
+msgid "Top replies first"
+msgstr ""
+
+#: src/Navigation.tsx:479
+msgid "Topic"
+msgstr ""
+
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
+#: src/components/Post/Translated/index.tsx:150
+#: src/components/Post/Translated/index.tsx:157
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555
+msgid "Translate"
+msgstr ""
+
+#: src/components/Post/Translated/index.tsx:326
+msgid "Translated"
+msgstr ""
+
+#: src/components/Post/Translated/index.tsx:113
+msgid "Translating"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539
+msgid "Translating…"
+msgstr ""
+
+#: src/lib/translation/index.tsx:305
+msgid "Translation to the same language is unavailable on your device."
+msgstr ""
+
+#: src/screens/Settings/ThreadPreferences.tsx:87
+#: src/screens/Settings/ThreadPreferences.tsx:92
+msgid "Tree view"
+msgstr ""
+
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:50
+msgid "Trending"
+msgstr ""
+
+#. Accessibility label for the icon-only pill that shows currently trending/featured GIFs in the GIF picker.
+#: src/features/gifPicker/components/GifCategoryPills.tsx:45
+msgid "Trending GIFs"
+msgstr ""
+
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:57
+msgid "Trending options"
+msgstr ""
+
+#: src/components/interstitials/TrendingVideos.tsx:87
+msgid "Trending Videos"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103
+msgid "Trolling"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
+msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
+msgstr ""
+
+#: src/screens/Search/SearchResults.tsx:186
+msgctxt "english-only-resource"
+msgid "Try a different search term, or <0>read about how to use search filters0>."
+msgstr ""
+
+#: src/view/com/util/error/ErrorScreen.tsx:97
+msgctxt "action"
+msgid "Try again"
+msgstr ""
+
+#: src/components/Post/Translated/index.tsx:229
+#: src/components/Post/Translated/index.tsx:242
+msgid "Try Google Translate"
+msgstr ""
+
+#: src/lib/interests.ts:74
+msgid "TV"
+msgstr ""
+
+#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65
+msgid "Two-factor authentication (2FA)"
+msgstr ""
+
+#: src/screens/Messages/components/MessageInput.tsx:177
+msgid "Type your message here"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:445
+msgid "Type:"
+msgstr ""
+
+#: src/components/dialogs/DeviceLocationRequestDialog.tsx:86
+msgid "Unable to access location. You'll need to visit your system settings to enable location services for Bluesky."
+msgstr ""
+
+#: src/lib/hooks/useCleanError.ts:30
+#: src/lib/strings/errors.ts:12
+msgid "Unable to connect. Please check your internet connection and try again."
+msgstr ""
+
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:96
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:141
+msgid "Unable to contact your service. Please check your internet connection and try again."
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:70
+#: src/screens/Login/index.tsx:96
+#: src/screens/Login/LoginForm.tsx:167
+#: src/screens/Login/SetNewPasswordForm.tsx:83
+#: src/screens/Signup/index.tsx:87
+msgid "Unable to contact your service. Please check your Internet connection."
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:700
+msgid "Unable to delete"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
+msgid "Unable to find the selected recipient."
+msgstr ""
+
+#: src/lib/strings/errors.ts:43
+msgid "Unable to resolve handle"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:515
+msgid "Unapply Pull Request"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:517
+msgid "Unapply Pull Request {currentChannel}"
+msgstr ""
+
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:43
+msgid "Unavailable"
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:127
+msgid "Unavailable feed information"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:645
+#: src/components/dms/MessagesListBlockedFooter.tsx:97
+#: src/components/dms/MessagesListBlockedFooter.tsx:104
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420
+#: src/screens/ProfileList/components/Header.tsx:166
+#: src/screens/ProfileList/components/Header.tsx:173
+#: src/view/com/profile/ProfileMenu.tsx:563
+msgid "Unblock"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362
+msgctxt "action"
+msgid "Unblock"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210
+msgid "Unblock {displayName}"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
+#: src/view/com/profile/ProfileMenu.tsx:468
+#: src/view/com/profile/ProfileMenu.tsx:474
+msgid "Unblock account"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413
+#: src/view/com/profile/ProfileMenu.tsx:545
+msgid "Unblock Account?"
+msgstr ""
+
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:242
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:245
+msgid "Unblock list"
+msgstr ""
+
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58
+#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64
+#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:73
+#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
+#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
+#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
+msgid "Undo"
+msgstr ""
+
+#: src/components/PostControls/BookmarkButton.tsx:43
+msgctxt "Button label to undo saving/removing a post from saved posts."
+msgid "Undo"
+msgstr ""
+
+#: src/components/PostControls/RepostButton.web.tsx:67
+#: src/components/PostControls/RepostButton.web.tsx:74
+msgid "Undo repost"
+msgstr ""
+
+#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun
+#. placeholder {0}: repostCount || 0
+#: src/components/PostControls/RepostButton.tsx:68
+msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})"
+msgstr ""
+
+#. placeholder {0}: profile.handle
+#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389
+msgid "Unfollow {0}"
+msgstr ""
+
+#: src/view/com/profile/ProfileMenu.tsx:324
+#: src/view/com/profile/ProfileMenu.tsx:334
+msgid "Unfollow account"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:848
+msgid "Unfollows the user"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:492
+msgid "Unfortunately, none of your subscribed labelers supports this report type."
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:200
+msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky."
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:185
+msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region."
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245
+msgid "Uninvite"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240
+msgid "Uninvite {displayName} from this group chat"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:209
+msgid "Unknown verifier"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72
+msgid "Unlabeled adult content"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68
+msgid "Unlabeled, abusive, or non-consensual adult content"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
+msgid "Unlike"
+msgstr ""
+
+#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
+#. placeholder {0}: post.likeCount || 0
+#: src/components/PostControls/index.tsx:276
+msgid "Unlike ({0, plural, one {# like} other {# likes}})"
+msgstr ""
+
+#: src/screens/Messages/components/ChatLocked.tsx:79
+msgid "Unlock chat"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:501
+msgid "Unlock this group chat"
+msgstr ""
+
+#: src/screens/ProfileList/components/Header.tsx:180
+#: src/screens/ProfileList/components/Header.tsx:187
+msgid "Unmute"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:170
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96
+msgctxt "video"
+msgid "Unmute"
+msgstr ""
+
+#. placeholder {0}: isCashtag ? tag : `#${tag}`
+#: src/components/RichTextTag.tsx:153
+#: src/components/RichTextTag.tsx:169
+msgid "Unmute {0}"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735
+#: src/view/com/profile/ProfileMenu.tsx:447
+#: src/view/com/profile/ProfileMenu.tsx:453
+msgid "Unmute account"
+msgstr ""
+
+#: src/components/dms/ConvoMenu.tsx:282
+msgid "Unmute conversation"
+msgstr ""
+
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:252
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:255
+msgid "Unmute list"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:463
+msgid "Unmute this group chat"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624
+msgid "Unmute thread"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344
+msgid "Unmute video"
+msgstr ""
+
+#: src/screens/ProfileList/components/Header.tsx:151
+#: src/screens/ProfileList/components/Header.tsx:158
+msgid "Unpin"
+msgstr ""
+
+#: src/components/FeedCard.tsx:355
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
+#: src/screens/SavedFeeds.tsx:467
+msgid "Unpin feed"
+msgstr ""
+
+#: 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:514
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519
+msgid "Unpin from profile"
+msgstr ""
+
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:225
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:228
+msgid "Unpin moderation list"
+msgstr ""
+
+#. placeholder {0}: info.displayName
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
+msgid "Unpinned {0} from Home"
+msgstr ""
+
+#: src/screens/ProfileList/components/Header.tsx:78
+msgid "Unpinned from your feeds"
+msgstr ""
+
+#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:105
+msgid "Unpinned list"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:482
+#: src/screens/Settings/Settings.tsx:484
+msgid "Unsnooze email reminder"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:345
+msgid "Unsubscribe"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:202
+#: src/screens/List/ListHiddenScreen.tsx:212
+msgid "Unsubscribe from list"
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:312
+msgid "Unsubscribe from this labeler"
+msgstr ""
+
+#: src/screens/List/ListHiddenScreen.tsx:90
+msgid "Unsubscribed from list"
+msgstr ""
+
+#: src/view/com/composer/text-input/TextInput.tsx:128
+msgid "Unsupported clipboard content"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1491
+msgid "Unsupported video type: {mimeType}"
+msgstr ""
+
+#: src/screens/Settings/components/OTAInfo.tsx:61
+#: src/screens/Settings/components/OTAInfo.tsx:77
+msgid "Update"
+msgstr ""
+
+#: src/view/com/modals/UserAddRemoveLists.tsx:83
+msgid "Update <0>{displayName}0> in Lists"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
+#: src/screens/Settings/AccountSettings.tsx:112
+#: src/screens/Settings/AccountSettings.tsx:120
+msgid "Update email"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
+msgid "Update invite link"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:544
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:565
+msgid "Update to {domain}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
+msgid "Update your app to the latest version to join in!"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
+msgid "Update your email"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:397
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:278
+#: src/components/dialogs/DeviceLocationRequestDialog.tsx:41
+#: src/components/dialogs/DeviceLocationRequestDialog.tsx:106
+msgid "Update your location"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355
+msgctxt "toast"
+msgid "Updating quote attachment failed"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404
+msgctxt "toast"
+msgid "Updating reply visibility failed"
+msgstr ""
+
+#: src/screens/Onboarding/StepProfile/index.tsx:315
+msgid "Upload a photo instead"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:485
+msgid "Upload a text file to:"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
+msgid "Upload from Camera"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
+msgid "Upload from Files"
+msgstr ""
+
+#: src/view/com/util/UserAvatar.tsx:505
+#: src/view/com/util/UserAvatar.tsx:509
+#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
+msgid "Upload from Library"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2521
+msgid "Uploading GIF..."
+msgstr ""
+
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
+msgid "Uploading images..."
+msgstr ""
+
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
+msgid "Uploading link thumbnail..."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2523
+msgid "Uploading video..."
+msgstr ""
+
+#: src/screens/Settings/AppPasswords.tsx:67
+msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password."
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:576
+msgid "Use default provider"
+msgstr ""
+
+#: src/components/dialogs/InAppBrowserConsent.tsx:78
+#: src/components/dialogs/InAppBrowserConsent.tsx:84
+msgid "Use in-app browser"
+msgstr ""
+
+#: src/screens/Settings/ContentAndMediaSettings.tsx:104
+#: src/screens/Settings/ContentAndMediaSettings.tsx:110
+msgid "Use in-app browser to open links"
+msgstr ""
+
+#: src/components/dialogs/InAppBrowserConsent.tsx:88
+#: src/components/dialogs/InAppBrowserConsent.tsx:94
+msgid "Use my default browser"
+msgstr ""
+
+#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:57
+msgid "Use recommended"
+msgstr ""
+
+#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190
+msgid "Use this to sign in to the other app along with your handle."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:278
+msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you."
+msgstr ""
+
+#: src/view/screens/Profile.tsx:383
+msgid "user"
+msgstr ""
+
+#: src/components/dms/AfterReportConversationDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:155
+msgctxt "toast"
+msgid "User blocked"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:75
+#: src/lib/moderation/useModerationCauseDescription.ts:64
+msgid "User Blocked"
+msgstr ""
+
+#. placeholder {0}: cause.source.list.name
+#: src/lib/moderation/useModerationCauseDescription.ts:56
+msgid "User Blocked by \"{0}\""
+msgstr ""
+
+#: src/components/dms/BlockedByListDialog.tsx:27
+msgid "User blocked by list"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:61
+msgid "User Blocked by List"
+msgstr ""
+
+#: src/lib/moderation/useModerationCauseDescription.ts:74
+msgid "User Blocking You"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:81
+msgid "User Blocks You"
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle(list.creator.handle, '@')
+#: src/view/com/modals/UserAddRemoveLists.tsx:215
+msgid "User list by {0}"
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
+#: src/state/queries/feed.ts:171
+msgid "User List by {0}"
+msgstr ""
+
+#: src/view/com/modals/UserAddRemoveLists.tsx:213
+msgid "User list by you"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:255
+msgctxt "toast"
+msgid "User list created"
+msgstr ""
+
+#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:241
+msgctxt "toast"
+msgid "User list updated"
+msgstr ""
+
+#: src/screens/Signup/StepHandle/index.tsx:231
+msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}"
+msgstr ""
+
+#: src/screens/Signup/StepHandle/index.tsx:215
+msgid "Username cannot begin or end with a hyphen"
+msgstr ""
+
+#: src/screens/Signup/StepHandle/index.tsx:219
+msgid "Username must only contain letters (a-z), numbers, and hyphens"
+msgstr ""
+
+#: src/screens/Login/LoginForm.tsx:200
+msgid "Username or email address"
+msgstr ""
+
+#. placeholder {0}: post.author.handle
+#: src/components/WhoCanReply.tsx:337
+msgid "users followed by <0>@{0}0>"
+msgstr ""
+
+#. placeholder {0}: post.author.handle
+#: src/components/WhoCanReply.tsx:324
+msgid "users following <0>@{0}0>"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:81
+msgctxt "allow group chat invites from"
+msgid "Users I follow"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:66
+msgctxt "allow messages from"
+msgid "Users I follow"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:451
+msgid "Value:"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:40
+msgid "Verification failed, please try again."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:344
+msgid "Verification settings"
+msgstr ""
+
+#: src/Navigation.tsx:205
+#: src/screens/Moderation/VerificationSettings.tsx:34
+msgid "Verification Settings"
+msgstr ""
+
+#: src/screens/Moderation/VerificationSettings.tsx:43
+msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here.0>"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:105
+msgid "Verified by:"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:85
+#: src/components/verification/VerificationCreatePrompt.tsx:87
+#: src/view/com/profile/ProfileMenu.tsx:431
+#: src/view/com/profile/ProfileMenu.tsx:434
+msgid "Verify account"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:360
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:184
+msgid "Verify again"
+msgstr ""
+
+#. Button text and accessibility label for action to verify the user's email address using the code entered
+#. Button text and accessibility label for action to verify the user's email address using the code entered
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
+msgctxt "action"
+msgid "Verify code"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:546
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:567
+msgid "Verify DNS Record"
+msgstr ""
+
+#. Dialog title when a user is verifying their email address by entering a code they have been sent
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
+msgid "Verify email code"
+msgstr ""
+
+#: src/components/intents/VerifyEmailIntentDialog.tsx:62
+msgid "Verify email dialog"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:348
+#: src/ageAssurance/components/NoAccessScreen.tsx:362
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:172
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:186
+msgid "Verify now"
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:175
+#: src/components/contacts/screens/VerifyNumber.tsx:217
+msgid "Verify phone number"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:547
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:569
+msgid "Verify Text File"
+msgstr ""
+
+#: src/components/verification/VerificationCreatePrompt.tsx:52
+msgid "Verify this account?"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
+msgid "Verify your age"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
+#: src/screens/Settings/AccountSettings.tsx:86
+#: src/screens/Settings/AccountSettings.tsx:106
+msgid "Verify your email"
+msgstr ""
+
+#: src/ageAssurance/components/RedirectOverlay.tsx:297
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209
+msgid "Verifying"
+msgstr ""
+
+#: src/ageAssurance/components/RedirectOverlay.tsx:165
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:75
+msgid "Verifying your age assurance status"
+msgstr ""
+
+#: src/components/contacts/screens/VerifyNumber.tsx:307
+msgid "Verifying..."
+msgstr ""
+
+#. placeholder {0}: env.APP_VERSION
+#: src/screens/Settings/AboutSettings.tsx:137
+#: src/screens/Settings/AboutSettings.tsx:166
+msgid "Version {0}"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:87
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:149
+msgid "Video"
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:359
+msgid "Video failed to process"
+msgstr ""
+
+#: src/Navigation.tsx:547
+msgid "Video Feed"
+msgstr ""
+
+#. placeholder {0}: author.handle
+#: src/components/VideoPostCard.tsx:122
+msgid "Video from {0}: {text}"
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle( post.author.handle, '@', )
+#: src/screens/VideoFeed/index.tsx:1103
+msgid "Video from {0}. Tap to play or pause the video"
+msgstr ""
+
+#: src/lib/interests.ts:62
+#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222
+msgid "Video Games"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:1102
+msgid "Video is paused"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:1102
+msgid "Video is playing"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232
+msgid "Video not found."
+msgstr ""
+
+#: src/view/com/composer/videos/SubtitleDialog.tsx:107
+msgid "Video settings"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:2541
+msgid "Video uploaded"
+msgstr ""
+
+#. placeholder {0}: embed.alt
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:87
+msgid "Video: {0}"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:237
+msgid "Videos"
+msgstr ""
+
+#: src/view/com/composer/SelectMediaButton.tsx:434
+msgid "Videos must be less than 3 minutes long."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1108
+msgctxt "Action to view the post the user just created"
+msgid "View"
+msgstr ""
+
+#. placeholder {0}: view.source.title
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
+msgid "View {0}"
+msgstr ""
+
+#. placeholder {0}: profile.handle
+#: src/screens/Profile/Header/Shell.tsx:257
+msgid "View {0}'s avatar"
+msgstr ""
+
+#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
+#. placeholder {0}: info.creatorHandle
+#. placeholder {0}: profile.handle
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
+#: src/screens/Search/components/SearchProfileCard.tsx:36
+#: src/screens/VideoFeed/index.tsx:809
+#: src/view/com/notifications/NotificationFeedItem.tsx:600
+msgid "View {0}'s profile"
+msgstr ""
+
+#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle)
+#: src/components/ProfileCard.tsx:149
+msgid "View {0}’s profile"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:123
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
+msgid "View {displayName}’s profile"
+msgstr ""
+
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
+msgid "View {publicationTitle}"
+msgstr ""
+
+#. placeholder {0}: authorProfile.handle
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
+msgid "View @{0}'s profile"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:479
+msgid "View blocked user's profile"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:170
+msgid "View blogpost for more details"
+msgstr ""
+
+#: src/screens/Log.tsx:72
+msgid "View debug entry"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:674
+#: src/screens/VideoFeed/index.tsx:692
+msgid "View details"
+msgstr ""
+
+#: src/view/com/posts/ViewFullThread.tsx:31
+#: src/view/com/posts/ViewFullThread.tsx:64
+msgid "View full thread"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+msgid "View incoming group chat requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMe.tsx:56
+msgid "View information about these labels"
+msgstr ""
+
+#: src/components/interstitials/TrendingVideos.tsx:200
+#: src/components/interstitials/TrendingVideos.tsx:222
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:191
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:210
+msgid "View more"
+msgstr ""
+
+#: src/components/interstitials/TrendingVideos.tsx:228
+msgid "View more trending videos"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1103
+msgid "View post"
+msgstr ""
+
+#: src/components/ProfileHoverCard/index.web.tsx:465
+#: src/components/ProfileHoverCard/index.web.tsx:485
+#: src/components/ProfileHoverCard/index.web.tsx:512
+#: src/view/com/posts/PostFeedErrorMessage.tsx:183
+#: src/view/com/util/PostMeta.tsx:92
+#: src/view/com/util/PostMeta.tsx:119
+msgid "View profile"
+msgstr ""
+
+#: src/screens/Profile/Header/Shell.tsx:163
+msgid "View profile banner"
+msgstr ""
+
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
+msgid "View publication"
+msgstr ""
+
+#: src/view/com/profile/ProfileSubpageHeader.tsx:108
+msgid "View the avatar"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:488
+msgid "View the invite link for this group chat"
+msgstr ""
+
+#. placeholder {0}: labeler.creator.handle
+#: src/components/LabelingServiceCard/index.tsx:164
+msgid "View the labeling service provided by @{0}"
+msgstr ""
+
+#: src/components/verification/VerificationCheckButton.tsx:93
+msgid "View this user's verifications"
+msgstr ""
+
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
+msgid "View users who like this feed"
+msgstr ""
+
+#: src/components/VideoPostCard.tsx:401
+msgid "View video"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:324
+msgid "View your blocked accounts"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:264
+msgid "View your default post interaction settings"
+msgstr ""
+
+#: src/view/com/home/HomeHeaderLayout.web.tsx:59
+#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84
+msgid "View your feeds and explore more"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:294
+msgid "View your moderation lists"
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:309
+msgid "View your muted accounts"
+msgstr ""
+
+#: src/components/verification/VerificationCheckButton.tsx:92
+msgid "View your verifications"
+msgstr ""
+
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
+msgid "Views full image"
+msgstr ""
+
+#: src/components/VideoPostCard.tsx:121
+msgid "Views video in immersive mode"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:126
+msgid "Violence"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:127
+msgid "Violent or threatening content"
+msgstr ""
+
+#: src/components/dialogs/LinkWarning.tsx:112
+#: src/components/dialogs/LinkWarning.tsx:122
+msgid "Visit site"
+msgstr ""
+
+#: src/view/screens/Notifications.tsx:296
+msgid "Visit your notification settings"
+msgstr ""
+
+#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:80
+msgid "Volume"
+msgstr ""
+
+#: src/components/moderation/LabelPreference.tsx:142
+#: src/lib/moderation/useLabelBehaviorDescription.ts:20
+#: src/lib/moderation/useLabelBehaviorDescription.ts:25
+msgid "Warn"
+msgstr ""
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:51
+msgid "Warn content"
+msgstr ""
+
+#: src/lib/moderation/useLabelBehaviorDescription.ts:49
+msgid "Warn content and filter from feeds"
+msgstr ""
+
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
+msgid "Watch now"
+msgstr ""
+
+#: src/components/contacts/screens/GetContacts.tsx:253
+msgid "We apply the highest privacy standards, and never share or sell your contact information."
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:141
+msgid "We could not connect to the service that provides this custom feed. It may be temporarily experiencing issues, or permanently unavailable."
+msgstr ""
+
+#: src/view/com/feeds/MissingFeed.tsx:147
+msgid "We could not find this list. It was probably deleted."
+msgstr ""
+
+#: src/screens/Hashtag.tsx:259
+msgid "We couldn't find any results for that tag."
+msgstr ""
+
+#: src/screens/Topic.tsx:167
+msgid "We couldn't find any results for that topic."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:138
+msgid "We couldn't load this conversation"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:113
+msgid "We couldn’t load this conversation’s settings"
+msgstr ""
+
+#: src/components/contacts/screens/GetContacts.tsx:244
+msgid "We delete hashes after matches are made"
+msgstr ""
+
+#: src/components/contacts/components/InviteInfo.tsx:67
+msgid "We don't store your friends' phone numbers or send any messages"
+msgstr ""
+
+#: src/screens/SignupQueued.tsx:163
+msgid "We estimate {estimatedTime} until your account is ready."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:197
+msgid "We have partnered with <0>KWS0> to handle age verification. When you click \"Begin\" below, KWS will email you instructions to complete the verification process. If your email address has already been used to verify your age for another game or service that uses KWS, you won’t need to do it again. When you’re done, you'll be brought back to continue using Bluesky."
+msgstr ""
+
+#. placeholder {0}: currentAccount?.email
+#: src/components/intents/VerifyEmailIntentDialog.tsx:102
+msgid "We have sent another verification email to <0>{0}0>."
+msgstr ""
+
+#: src/components/contacts/screens/PhoneInput.tsx:184
+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:241
+msgid "We never keep plain phone numbers"
+msgstr ""
+
+#: src/components/contacts/screens/GetContacts.tsx:247
+msgid "We only suggest follows if both people consent"
+msgstr ""
+
+#: src/view/com/posts/DiscoverFallbackHeader.tsx:29
+msgid "We ran out of posts from your follows. Here's the latest from <0/>."
+msgstr ""
+
+#: src/screens/Settings/InterestsSettings.tsx:171
+msgid "We recommend selecting at least two interests."
+msgstr ""
+
+#. placeholder {0}: currentAccount!.email
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:419
+msgid "We were unable to determine if you are allowed to upload videos. Please try again."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceErrors.tsx:19
+msgid "We were unable to load the age assurance configuration for your region, probably due to a network error. Some content and features may be unavailable temporarily. Please try again later."
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:41
+msgid "We were unable to load your birthdate preferences. Please try again."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:492
+msgid "We were unable to load your configured labelers at this time."
+msgstr ""
+
+#: src/ageAssurance/components/RedirectOverlay.tsx:305
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:217
+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 ""
+
+#: src/screens/SignupQueued.tsx:167
+msgid "We will let you know when your account is ready."
+msgstr ""
+
+#: src/screens/Settings/FindContactsSettings.tsx:510
+msgid "We will notify you when we find your friends."
+msgstr ""
+
+#. placeholder {0}: currentAccount!.email
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
+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:62
+msgid "We'll use this to help customize your experience."
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:140
+msgid "We're also updating our <0>Community Guidelines0>, and we want your input! These new guidelines will take effect on October 15th, 2025."
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:83
+msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025."
+msgstr ""
+
+#: src/ageAssurance/components/RedirectOverlay.tsx:311
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:223
+msgid "We're confirming your age assurance status with our servers. This should only take a few seconds."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:151
+msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support0> for assistance."
+msgstr ""
+
+#: src/components/dialogs/SearchablePeopleList.tsx:127
+#: src/components/ProgressGuide/FollowDialog.tsx:195
+msgid "We're having network issues, try again"
+msgstr ""
+
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
+msgid "We’re having network issues, try again"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
+msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
+msgstr ""
+
+#: src/screens/Signup/index.tsx:136
+msgid "We’re so excited to have you join us!"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:416
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241
+msgid "We're sorry, but based on your device's location, you are currently located in a region that requires age assurance."
+msgstr ""
+
+#: src/screens/ProfileList/index.tsx:88
+msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}."
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:387
+msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again."
+msgstr ""
+
+#: src/screens/Search/SearchResults.tsx:339
+#: src/screens/Search/SearchResults.tsx:472
+msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes."
+msgstr ""
+
+#: src/components/ageAssurance/AgeRestrictedScreen.tsx:62
+msgid "We're sorry, you cannot access this screen at this time."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1013
+msgid "We're sorry! The post you are replying to has been deleted."
+msgstr ""
+
+#: src/components/Lists.tsx:224
+#: src/view/screens/NotFound.tsx:44
+msgid "We're sorry! We can't find the page you were looking for."
+msgstr ""
+
+#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:219
+msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty."
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:123
+msgid "We’re updating our <0>Terms of Service0>, <1>Privacy Policy1>, and <2>Copyright Policy2>, effective September 15th, 2025."
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:64
+msgid "We're updating our policies"
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:77
+msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025."
+msgstr ""
+
+#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:62
+msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post."
+msgstr ""
+
+#: src/ageAssurance/components/RedirectOverlay.tsx:257
+#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:165
+msgid "We've confirmed your age assurance status. You can now close this dialog."
+msgstr ""
+
+#: src/screens/Deactivated.tsx:117
+msgid "Welcome back!"
+msgstr ""
+
+#: src/components/NewskieDialog.tsx:141
+msgid "Welcome, friend!"
+msgstr ""
+
+#: src/screens/Onboarding/StepInterests/index.tsx:59
+msgid "What are your interests?"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/StepDetails.tsx:44
+msgid "What do you want to call your starter pack?"
+msgstr ""
+
+#: src/view/com/auth/SplashScreen.web.tsx:98
+#: src/view/com/composer/Composer.tsx:1455
+#: src/view/com/feeds/ComposerPrompt.tsx:193
+msgid "What's up?"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
+msgid "When you tap on a check, you’ll see which organizations have granted verification."
+msgstr ""
+
+#: src/components/WhoCanReply.tsx:226
+msgid "Who can interact with this post?"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
+msgid "Who can join this group chat and how"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427
+#: src/components/WhoCanReply.tsx:116
+msgid "Who can reply"
+msgstr ""
+
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
+msgid "Who can verify?"
+msgstr ""
+
+#: src/screens/Home/NoFeedsPinned.tsx:80
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
+msgid "Whoops!"
+msgstr ""
+
+#: src/components/interstitials/TrendingVideos.tsx:126
+#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108
+msgid "Whoops! Trending videos failed to load."
+msgstr ""
+
+#: src/screens/Takendown.tsx:169
+msgid "Why are you appealing?"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:52
+#: src/components/moderation/ReportDialog/copy.ts:66
+msgid "Why should this conversation be reviewed?"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:38
+msgid "Why should this feed be reviewed?"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:32
+msgid "Why should this list be reviewed?"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:20
+msgid "Why should this livestream be reviewed?"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:58
+msgid "Why should this message be reviewed?"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:26
+msgid "Why should this post be reviewed?"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:44
+msgid "Why should this starter pack be reviewed?"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/copy.ts:14
+msgid "Why should this user be reviewed?"
+msgstr ""
+
+#: src/components/dms/AfterReportDialog.tsx:51
+msgid "Would you like to block this user and/or delete this conversation?"
+msgstr ""
+
+#: src/components/dms/AfterReportConversationDialog.tsx:47
+msgid "Would you like to block this user and/or leave this conversation?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:110
+msgid "Would you like to save this as a draft before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1373
+msgid "Would you like to save this as a draft to edit later?"
+msgstr ""
+
+#: src/view/screens/Profile.tsx:434
+#: src/view/screens/Profile.tsx:435
+msgid "Write a post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1551
+msgid "Write post"
+msgstr ""
+
+#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
+#: src/view/com/composer/Composer.tsx:1453
+msgid "Write your reply"
+msgstr ""
+
+#: src/lib/interests.ts:75
+msgid "Writers"
+msgstr ""
+
+#. placeholder {0}: verifyError.did
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:368
+msgid "Wrong DID returned from server. Received: {0}"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
+msgid "Wrong kind of conversation"
+msgstr ""
+
+#: src/features/liveNow/components/EditLiveDialog.tsx:154
+#: src/features/liveNow/components/GoLiveDialog.tsx:136
+msgid "www.mylivestream.tv"
+msgstr ""
+
+#. Accessibility label for the icon-only pill that filters the GIF picker to affirmation/agreement GIFs.
+#: src/features/gifPicker/components/GifCategoryPills.tsx:95
+msgid "Yes GIFs"
+msgstr ""
+
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:105
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:107
+msgid "Yes, deactivate"
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:348
+msgid "Yes, delete my account"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackScreen.tsx:712
+msgid "Yes, delete this starter pack"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839
+msgid "Yes, detach"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846
+msgid "Yes, hide"
+msgstr ""
+
+#: src/screens/Deactivated.tsx:139
+msgid "Yes, reactivate my account"
+msgstr ""
+
+#: src/components/dms/DateDivider.tsx:29
+msgid "Yesterday"
+msgstr ""
+
+#: src/components/verification/VerifierDialog.tsx:61
+msgid "You are a trusted verifier"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:176
+msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app."
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle(profile.handle, '@')
+#: src/components/dms/MessageItem.tsx:618
+msgid "You are blocking {0}"
+msgstr ""
+
+#: src/components/dms/MessagesListBlockedFooter.tsx:81
+msgid "You are blocking the chat owner"
+msgstr ""
+
+#: src/components/dms/MessagesListBlockedFooter.tsx:83
+msgid "You are blocking this person"
+msgstr ""
+
+#: src/components/forms/HostingProvider.tsx:46
+msgid "You are creating an account on"
+msgstr ""
+
+#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:108
+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:330
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:142
+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 ""
+
+#: src/screens/SignupQueued.tsx:160
+msgid "You are in line."
+msgstr ""
+
+#: src/features/liveNow/components/EditLiveDialog.tsx:120
+#: src/features/liveNow/components/EditLiveDialog.tsx:125
+msgid "You are Live"
+msgstr ""
+
+#: src/features/liveNow/index.tsx:371
+msgid "You are no longer live"
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:412
+msgid "You are not allowed to upload videos."
+msgstr ""
+
+#: src/view/com/profile/ProfileFollows.tsx:181
+msgid "You are not following anyone yet"
+msgstr ""
+
+#: src/features/liveNow/index.tsx:315
+msgid "You are now live!"
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:66
+msgid "You are verified"
+msgstr ""
+
+#: src/screens/Profile/Header/EditProfileDialog.tsx:341
+msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:210
+msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more.0>"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:46
+msgid "You can adjust your interests at any time from \"Content and media\" settings."
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:211
+msgid "You can also <0>temporarily deactivate0> your account instead. 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/posts/FollowingEmptyState.tsx:60
+#: src/view/com/posts/FollowingEndOfFeed.tsx:61
+msgid "You can also discover new Custom Feeds to follow."
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:139
+msgid "You can also download your chat data as a \"JSONL\" file. This file only includes chat messages that you have sent and does not include chat messages that you have received."
+msgstr ""
+
+#: src/components/contacts/screens/GetContacts.tsx:250
+msgid "You can always opt out and delete your data"
+msgstr ""
+
+#: src/lib/hooks/useNotificationHandler.ts:135
+msgid "You can choose whether chat notifications have sound in the chat settings within the app"
+msgstr ""
+
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
+msgid "You can continue ongoing conversations regardless of which setting you choose."
+msgstr ""
+
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
+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:203
+#: src/screens/Login/PasswordUpdatedForm.tsx:27
+msgid "You can now sign in with your new password."
+msgstr ""
+
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
+msgid "You can only save drafts up to 1000 characters."
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:116
+msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
+msgstr ""
+
+#: src/view/com/composer/SelectMediaButton.tsx:437
+msgid "You can only select one GIF at a time."
+msgstr ""
+
+#: src/view/com/composer/SelectMediaButton.tsx:431
+msgid "You can only select one video at a time."
+msgstr ""
+
+#: src/screens/Deactivated.tsx:125
+msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users."
+msgstr ""
+
+#: src/components/dms/MessagesListBlockedFooter.tsx:93
+msgid "You can read chat history but can’t send new messages."
+msgstr ""
+
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr ""
+
+#: src/components/interstitials/Trending.tsx:132
+#: src/components/interstitials/TrendingVideos.tsx:138
+#: src/view/shell/desktop/SidebarTrendingTopics.tsx:130
+msgid "You can update this later from your settings."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
+msgid "You cannot create a group chat yet."
+msgstr ""
+
+#: src/lib/hooks/useCleanError.ts:54
+#: 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 ""
+
+#: src/screens/Profile/KnownFollowers.tsx:103
+msgid "You don't follow any users who follow @{name}."
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:589
+msgid "You don't have any lists yet."
+msgstr ""
+
+#: src/screens/SavedFeeds.tsx:153
+#: src/screens/SavedFeeds.tsx:343
+msgid "You don't have any pinned feeds."
+msgstr ""
+
+#: src/screens/SavedFeeds.tsx:205
+#: src/screens/SavedFeeds.tsx:381
+msgid "You don't have any saved feeds."
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:312
+msgid "You got here first"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:77
+#: src/lib/moderation/useModerationCauseDescription.ts:58
+#: src/lib/moderation/useModerationCauseDescription.ts:66
+msgid "You have blocked this user. You cannot view their content."
+msgstr ""
+
+#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17
+msgid "You have completed the Age Assurance process, but based on the results, we cannot be sure that you are 18 years of age or older. Due to laws in your region, certain features on Bluesky must remain restricted until you're able to verify you're an adult."
+msgstr ""
+
+#: src/view/screens/Notifications.tsx:291
+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 ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:51
+#: src/screens/Login/SetNewPasswordForm.tsx:97
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:113
+msgid "You have entered an invalid code. It should look like XXXXX-XXXXX."
+msgstr ""
+
+#: src/lib/moderation/useModerationCauseDescription.ts:117
+msgid "You have hidden this post"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:115
+msgid "You have hidden this post."
+msgstr ""
+
+#: src/components/BotAccountAlert.tsx:26
+msgid "You have marked this account as automated. You can remove it at any time from your account settings."
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:108
+#: src/lib/moderation/useModerationCauseDescription.ts:100
+msgid "You have muted this account."
+msgstr ""
+
+#: src/lib/moderation/useModerationCauseDescription.ts:94
+msgid "You have muted this user"
+msgstr ""
+
+#: src/view/com/lists/MyLists.tsx:81
+msgid "You have no lists."
+msgstr ""
+
+#: src/components/dialogs/StarterPackDialog.tsx:102
+msgid "You have no starter packs."
+msgstr ""
+
+#: src/view/screens/ModerationBlockedAccounts.tsx:155
+msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account."
+msgstr ""
+
+#: src/view/screens/ModerationMutedAccounts.tsx:168
+msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account."
+msgstr ""
+
+#: src/components/Lists.tsx:62
+msgid "You have reached the end"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:188
+msgid "You have successfully verified your email address. You can close this dialog."
+msgstr ""
+
+#: src/lib/media/video/upload.shared.ts:56
+msgid "You have temporarily reached the limit for video uploads. Please try again later."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1368
+msgid "You have unsaved changes to this draft, would you like to save them?"
+msgstr ""
+
+#: src/view/com/composer/drafts/DraftsButton.tsx:105
+msgid "You have unsaved changes. Would you like to save them before viewing your drafts?"
+msgstr ""
+
+#: src/components/StarterPack/ProfileStarterPacks.tsx:292
+msgid "You haven't created a starter pack yet!"
+msgstr ""
+
+#: src/view/com/lists/ProfileLists.tsx:159
+msgid "You haven't created any lists yet."
+msgstr ""
+
+#: src/view/com/feeds/ProfileFeedgens.tsx:160
+msgid "You haven't made any custom feeds yet."
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:407
+msgid "You haven't muted any words or tags yet"
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:122
+#: src/lib/moderation/useModerationCauseDescription.ts:128
+msgid "You hid this reply."
+msgstr ""
+
+#. placeholder {0}: getTimeAgo(lastInitiatedAt, new Date(), {format: 'long'})
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:240
+msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again."
+msgstr ""
+
+#: src/components/NewskieDialog.tsx:107
+msgid "You joined Bluesky {timeAgoString} ago"
+msgstr ""
+
+#: src/components/NewskieDialog.tsx:104
+msgid "You joined Bluesky using a starter pack {timeAgoString} ago"
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:84
+msgid "You may appeal non-self labels if you feel they were placed in error."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:89
+msgid "You may appeal these labels if you feel they were placed in error."
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:80
+msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}"
+msgstr ""
+
+#: src/screens/StarterPack/Wizard/State.tsx:101
+msgid "You may only add up to 3 feeds"
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:177
+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:365
+msgid "You must be following at least seven other people to generate a starter pack."
+msgstr ""
+
+#: src/components/StarterPack/QrCodeDialog.tsx:68
+msgid "You must grant access to your photo library to save a QR code"
+msgstr ""
+
+#: src/view/com/composer/SelectMediaButton.tsx:466
+msgid "You need to allow access to your media library."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23
+msgid "You need to verify your email address before you can enable email 2FA."
+msgstr ""
+
+#. placeholder {0}: currentAccount?.handle
+#: src/screens/Deactivated.tsx:120
+msgid "You previously deactivated @{0}."
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:412
+msgid "You probably want to restart the app now."
+msgstr ""
+
+#. placeholder {0}: reaction.value
+#: src/components/dms/MessageItem.tsx:267
+msgid "You reacted {0}"
+msgstr ""
+
+#. placeholder {0}: reaction.value
+#: src/components/dms/getReactionInfo.ts:43
+msgid "You reacted {0} to {target}"
+msgstr ""
+
+#: src/components/dialogs/BirthDateSettings.tsx:92
+#: src/components/dialogs/BirthDateSettings.tsx:102
+msgid "You recently changed your birthdate"
+msgstr ""
+
+#: src/screens/Settings/Settings.tsx:297
+#: src/view/shell/desktop/LeftNav.tsx:225
+msgid "You will be signed out of all your accounts."
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle(profile.handle, '@')
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:140
+msgid "You will no longer receive notifications for {0}"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245
+msgid "You will no longer receive notifications for this thread"
+msgstr ""
+
+#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236
+msgid "You will now receive notifications for this thread"
+msgstr ""
+
+#: src/screens/Login/SetNewPasswordForm.tsx:110
+msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
+msgid "You won’t be able to rejoin unless you’re invited."
+msgstr ""
+
+#. When the last message in a chat was made by you.
+#: src/components/dms/getMessageInfo.ts:43
+msgid "You: {message}"
+msgstr ""
+
+#: 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:157
+msgid "You'll follow the suggested users once you finish creating your account!"
+msgstr ""
+
+#. placeholder {0}: listItemsCount - 8
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:243
+msgid "You'll follow these people and {0} others"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241
+msgid "You'll follow these people right away"
+msgstr ""
+
+#: src/components/contacts/screens/GetContacts.tsx:314
+msgid "You'll need to go to the System Settings for Bluesky and give permission if you want to use this feature."
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle(profile.handle, '@')
+#: src/components/activity-notifications/SubscribeProfileDialog.tsx:172
+msgid "You'll start receiving notifications for {0}!"
+msgstr ""
+
+#: src/screens/StarterPack/StarterPackLandingScreen.tsx:281
+msgid "You'll stay updated with these feeds"
+msgstr ""
+
+#: src/screens/SignupQueued.tsx:130
+msgid "You're in line"
+msgstr ""
+
+#: src/screens/Deactivated.tsx:81
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54
+msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account."
+msgstr ""
+
+#: src/components/moderation/LabelsOnMeDialog.tsx:262
+msgid "You've already appealed this label and it's being reviewed by our moderation team."
+msgstr ""
+
+#: src/components/moderation/ModerationDetailsDialog.tsx:112
+#: src/lib/moderation/useModerationCauseDescription.ts:109
+msgid "You've chosen to hide a word or tag within this post."
+msgstr ""
+
+#: src/components/contacts/screens/GetContacts.tsx:313
+msgid "You've denied access to your contacts"
+msgstr ""
+
+#: src/state/shell/progress-guide.tsx:237
+msgid "You've found some people to follow"
+msgstr ""
+
+#: src/components/FocusScope/index.tsx:112
+msgid "You've reached the end of the active content."
+msgstr ""
+
+#: src/view/com/posts/FollowingEndOfFeed.tsx:42
+msgid "You've reached the end of your feed! Find some more accounts to follow."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:637
+msgid "You've reached the maximum number of drafts"
+msgstr ""
+
+#: src/lib/hooks/useCleanError.ts:68
+msgid "You've reached the maximum number of requests allowed. Please try again later."
+msgstr ""
+
+#: src/components/FocusScope/index.tsx:88
+msgid "You've reached the start of the active content."
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:423
+msgid "You've reached your daily limit for video uploads (too many bytes)"
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:427
+msgid "You've reached your daily limit for video uploads (too many videos)"
+msgstr ""
+
+#: src/screens/VideoFeed/index.tsx:1150
+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:190
+msgid "Your account"
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:128
+msgid "Your account has been deleted, see ya! ✌️"
+msgstr ""
+
+#: src/screens/Takendown.tsx:142
+msgid "Your account has been suspended"
+msgstr ""
+
+#: src/view/com/composer/state/video.ts:431
+msgid "Your account is not yet old enough to upload videos. Please try again later."
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:107
+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 ""
+
+#: src/screens/Takendown.tsx:210
+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."
+msgstr ""
+
+#: src/screens/Takendown.tsx:150
+msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:284
+msgid "Your birth date"
+msgstr ""
+
+#: src/screens/Messages/components/ChatDisabled.tsx:45
+msgid "Your chats have been disabled"
+msgstr ""
+
+#: src/components/dialogs/InAppBrowserConsent.tsx:70
+msgid "Your choice will be remembered for future links. You can change it at any time in settings."
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:365
+msgid "Your contact {firstAuthorLink} is on Bluesky"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:363
+msgid "Your contact {firstAuthorName} is on Bluesky"
+msgstr ""
+
+#: src/components/contacts/screens/ViewMatches.tsx:454
+msgid "Your contact {name}"
+msgstr ""
+
+#. placeholder {0}: sanitizeHandle(currentAccount?.handle || '', '@')
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:531
+msgid "Your current handle <0>{0}0> will automatically remain reserved for you. You can switch back to it at any time from this account."
+msgstr ""
+
+#: src/screens/Moderation/index.tsx:231
+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 ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:252
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:256
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257
+msgid "Your email"
+msgstr ""
+
+#: src/screens/Login/ForgotPasswordForm.tsx:53
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:82
+#: src/screens/Signup/state.ts:278
+#: src/screens/Signup/StepInfo/index.tsx:130
+msgid "Your email appears to be invalid."
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
+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:216
+msgid "Your first like!"
+msgstr ""
+
+#: src/components/dialogs/PostInteractionSettingsDialog.tsx:496
+msgid "Your followers"
+msgstr ""
+
+#: src/view/com/posts/FollowingEmptyState.tsx:41
+msgid "Your following feed is empty! Follow more users to see what's happening."
+msgstr ""
+
+#. placeholder {0}: createFullHandle(subdomain, host)
+#: src/screens/Settings/components/ChangeHandleDialog.tsx:247
+msgid "Your full handle will be <0>@{0}0>"
+msgstr ""
+
+#: src/Navigation.tsx:451
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
+#: src/screens/Settings/ContentAndMediaSettings.tsx:94
+#: src/screens/Settings/ContentAndMediaSettings.tsx:97
+#: src/screens/Settings/InterestsSettings.tsx:49
+msgid "Your interests"
+msgstr ""
+
+#: src/screens/Settings/InterestsSettings.tsx:138
+msgctxt "toast"
+msgid "Your interests have been updated!"
+msgstr ""
+
+#: src/screens/Search/modules/ExploreInterestsCard.tsx:95
+msgid "Your interests help us find what you like!"
+msgstr ""
+
+#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:69
+msgid "Your live event preferences have been updated."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:353
+msgid "Your location has been updated."
+msgstr ""
+
+#: src/components/dialogs/MutedWords.tsx:378
+msgid "Your muted words"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr ""
+
+#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
+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:157
+msgid "Your password must be at least 8 characters long."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1099
+msgid "Your post was sent"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1096
+msgid "Your posts were sent"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:289
+msgid "Your preferred language"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
+msgid "Your profile picture"
+msgstr ""
+
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26
+msgid "Your profile picture surrounded by concentric circles of other users' profile pictures"
+msgstr ""
+
+#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75
+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:1098
+msgid "Your reply was sent"
+msgstr ""
+
+#. placeholder {0}: state.selectedLabeler?.creator.displayName
+#: src/components/moderation/ReportDialog/index.tsx:519
+msgid "Your report will be sent to <0>{0}0>."
+msgstr ""
+
+#: src/screens/Settings/InterestsSettings.tsx:63
+msgid "Your selected interests help us serve you content you care about."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1403
+msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
+msgstr ""
+
+#: src/components/verification/VerificationsDialog.tsx:67
+msgid "Your verifications"
+msgstr ""
+
diff --git a/src/locale/locales/cy/messages.po b/src/locale/locales/cy/messages.po
index fc13a39237..0d537f10c3 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\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"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# munud} other {# munud}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# mis} other {# mis}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, zero {}one {# person} two {# berson} few {# person} many {# person} other {# person}} reacted – {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# eiliad} other {# eiliad}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# eitem heb ei ddarllen} other {# eitem heb ei ddarllen}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "Yn dilyn {0}"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr "{0} allan 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "Ymatebodd {0} i {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, rhestr gan {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "afatar {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "Afatar {0}"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}e"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, zero {}one {# cais} two {# gais} few {# cais} many {# cais} other {# cais}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# eitem heb ei ddarllen} other {# eitemau heb eu darllen}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "{count}+ cais"
@@ -538,8 +590,8 @@ msgstr "Mae {firstAuthorName} wedi'ch gwirio"
msgid "{following} following"
msgstr "{following} yn dilyn"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "Does dim modd anfon neges at {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "Does dim modd negesu {handle}"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, zero {}one {# awr {minutesString}} two {# awr {minutesSt
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, zero {}one {# awr} two {# awr} few {# awr} many {# hours} other {# awr}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, zero {} one {Gallwch guddio hyd at # ateb.} two {Gallwch guddio hyd at # ateb.} few {Gallwch guddio hyd at # ateb.} many {Gallwch guddio hyd at # ateb.} other {Gallwch guddio hyd at # ateb.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr "Hoff ffrydiau a phobl {name} - ymunwch â mi!"
msgid "{name}'s starter pack"
msgstr "Pecyn cychwyn {name}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# eitem heb ei darllen} other {# eitem heb eu darllen}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, zero {}one {# cais} two {# gais} few {# cais} many {# cais} other {# cais}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "{requestCount}+ cais"
@@ -795,8 +857,11 @@ msgstr "Digwyddodd gwall rhwydwith. Gwiriwch eich cysylltiad rhwydwaith"
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Digwyddodd gwall rhwydwith. Gwiriwch eich cysylltiad rhwydwaith."
@@ -804,7 +869,7 @@ msgstr "Digwyddodd gwall rhwydwith. Gwiriwch eich cysylltiad rhwydwaith."
msgid "A new code has been sent"
msgstr "Mae cod newydd wedi'i anfon"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Math newydd o ddilysu"
@@ -827,11 +892,11 @@ msgstr "Llun sgrin o dudalen proffil gydag eicon cloch wrth ymyl y botwm dilyn,
msgid "A screenshot of 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 "Llun sgrin o'r cyfansoddwr postiadau gyda botymau newydd nesaf at y botwm postio sy'n dweud \"Drafftiau\", gydag effaith tân gwyllt enfys. Isod, mae testun yn y cyfansoddwr yn dweud \"Hei, glywest ti'r newyddion? Mae gan Bluesky drafftiau nawr."
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Ymddygiad bygythiol a gwahaniaethol eraill"
msgid "Accept"
msgstr "Derbyn"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Derbyn"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Derbyn cais am sgwrs"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Derbyn y cais"
@@ -860,17 +935,26 @@ msgstr "Derbyn y cais"
msgid "Accept this language suggestion"
msgstr "Derbyn awgrym yr iaith hon"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Hygyrchedd"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Gosodiadau Hygyrchedd"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Dad-dewi cyfrif"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Mae cyfrifon gyda marc siec glas cregynog <0><1/>0> yn gallu dilysu eraill. Mae'r dilyswyr dibynadwy hyn yn cael eu dewis gan Bluesky."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Gweithgaredd gan eraill"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Hysbysiadau gweithgareddau"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Ychwanegu"
@@ -999,8 +1079,8 @@ msgstr "Ychwanegu cyfrif"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Ychwanegu testun amgen (dewisol)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Ychwanegu cyfrif arall"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Ychwanegu postiad arall"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Ychwanegu postiad arall i edefyn"
@@ -1035,7 +1115,7 @@ msgstr "Ychwanegu cyfrinair apiau"
msgid "Add App Password"
msgstr "Ychwanegu Cyfrinair Apiau"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "Ychwanegu label awtomatiaeth i'r cyfrif"
@@ -1043,7 +1123,7 @@ msgstr "Ychwanegu label awtomatiaeth i'r cyfrif"
msgid "Add emoji reaction"
msgstr "Ychwanegu adwaith emoji"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Ychwanegu aelodau grŵp sgwrsio"
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Ychwanegu cyfrwng i bostiad"
@@ -1062,8 +1142,8 @@ msgstr "Ychwanegu cyfrwng i bostiad"
msgid "Add members"
msgstr "Ychwanegu aelodau"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Ychwanegu rhagor o fanylion (dewisol)"
@@ -1080,8 +1160,8 @@ msgstr "Ychwanegu gair mud gyda'r gosodiadau a ddewiswyd"
msgid "Add muted words and tags"
msgstr "Ychwanegu geiriau a thagiau wedi'u tewi"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "Yn ychwanegu aelodau i restr..."
msgid "Additional details (limit 1000 characters)"
msgstr "Manylion ychwanegol (terfyn o 1000 nod)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Manylion ychwanegol (terfyn o 300 nod)"
@@ -1228,12 +1308,12 @@ msgstr "Wedi cyflwyno ymholiad sicrwydd oed"
msgid "Age assurance only takes a few minutes"
msgstr "Dim ond ychydig funudau fydd yr ymholiad Sicrwydd Oed yn ei gymryd"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Y Cyfan"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "Y cyfan {0}"
@@ -1278,13 +1358,13 @@ msgstr "Caniatáu mynediad i'ch negeseuon uniongyrchol"
msgid "Allow anyone to reply"
msgstr "Caniatáu i unrhyw un ateb"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr "Oes gennych chi gyfrif yn barod?"
msgid "Already signed in as @{0}"
msgstr "Eisoes wedi mewngofnodi fel @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "AMGEN"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Testun Amgen"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Mae testun amgan yn disgrifio delweddau ar gyfer defnyddwyr dall a rhai â golwg gwan, ac yn helpu i roi cyd-destun i bawb."
@@ -1387,7 +1467,7 @@ msgstr "Digwyddodd gwall"
msgid "An error occurred"
msgstr "Digwyddodd gwall"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Digwyddodd gwall wrth gywasgu'r fideo."
@@ -1432,11 +1512,11 @@ msgstr "Digwyddodd gwall wrth gadw'r cod QR!"
msgid "An error occurred while trying to follow all"
msgstr "Digwyddodd gwall wrth geisio dilyn pob un"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "Digwyddodd gwall wrth lwytho'r fideo i fyny. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "Bu anhawster wrth ddileu'r llwytho'r fideo. Gwiriwch eich cysylltiad rhyngwyd a cheisio eto."
@@ -1461,19 +1541,19 @@ msgstr "Darlun o nifer o bostiadau Bluesky ynghyd ag eiconau ailbostio, hoffi a
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Darlun yn dangos bod Bluesky yn dewis dilyswyr dibynadwy, a dilyswyr dibynadwy yn eu tro yn gwirio cyfrifon defnyddwyr unigol."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "Mae gwahoddiad yn caniatáu i bobl ymuno â'r grŵp sgwrsio hwn heb gael eu hychwanegu'n uniongyrchol. Chi sy'n rheoli pwy sy'n gallu defnyddio'r ddolen ac a ydyn nhw angen eich caniatâd. Gallwch analluogi'r ddolen ar unrhyw adeg."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Mater nad yw wedi'i gynnwys yn yr opsiynau hyn"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Digwyddodd mater wrth geisio agor y sgwrs"
msgid "An issue occurred, please try again."
msgstr "Digwyddodd mater, ceisiwch eto."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Darlun bras o iPhone yn dangos ap Bluesky ar agor i broffil defnyddiwr dilys gyda marc ticio nesaf at eu henw dangos."
@@ -1539,13 +1619,17 @@ msgstr "Unrhyw un"
msgid "Anyone can interact"
msgstr "Gall unrhyw un ryngweithio"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "Gall unrhyw un ymuno'n syth"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "Gall unrhyw un ofyn i gael ymuno"
@@ -1555,11 +1639,11 @@ msgstr "Gall unrhyw un ofyn i gael ymuno"
msgid "Anyone who follows me"
msgstr "Unrhyw un sy'n fy nilyn"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Rhaid i enwau cyfrinair ap fod o leiaf 4 nod"
msgid "App passwords"
msgstr "Cyfrineiriau apiau"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Cyfrineiriau Apiau"
@@ -1618,7 +1702,7 @@ msgstr "Apelio gwaharddiad ffrydio byw"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Apêl wedi'i chyflwyno"
@@ -1632,14 +1716,14 @@ msgstr "Apelio yn erbyn yr atal"
msgid "Appeal Suspension"
msgstr "Apelio yn erbyn yr Atal"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Apelio'r penderfyniad hwn"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "Ydych chi wir yn siŵr?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Ydych chi'n siŵr eich bod am ddileu cyfrinair ap \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Ydych chi'n siŵr eich bod am ddileu'r neges hon? Bydd y neges yn cael ei dileu i chi, ond nid ar gyfer y cyfranogwyr eraill."
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "Ydych chi'n siŵr eich bod eisiau gadael {groupName}?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
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: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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
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?"
@@ -1752,7 +1836,7 @@ msgstr "Cyfrif Awtomataidd"
msgid "Automation label"
msgstr "Label awtomatiaeth"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "Label Awtomatiaeth"
@@ -1767,12 +1851,12 @@ msgstr "Awtochwarae fideos a GIFs"
msgid "Available"
msgstr "Ar gael"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Ar gael"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Ar gael"
msgid "Back"
msgstr "Nôl"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Nôl i Sgyrsiau"
@@ -1840,12 +1926,12 @@ msgstr "Cyn y gallwch dderbyn y cais sgwrsio hwn, rhaid i chi ddilysu'ch e-bost
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Cyn i chi dderbyn hysbysiadau am bostiadau {name}, rhaid i chi yn gyntaf ddilysu eich e-bost."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Cyn y gallwch anfon neges at ddefnyddiwr arall, rhaid i chi ddilysu'ch cyfeiriad e-bost yn gyntaf."
@@ -1877,7 +1963,7 @@ msgstr "Penblwydd"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "Rhwystro {displayName}"
msgid "Block account"
msgstr "Rhwystro cyfrif"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Rhwystro cyfrif?"
@@ -1912,7 +1998,7 @@ msgstr "Rhwystro Cyfrif?"
msgid "Block accounts"
msgstr "Rhwystro cyfrifon"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Rhwystro'r cyfrifon hyn?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Rhwystro defnyddiwr"
@@ -1946,9 +2032,9 @@ msgstr "Rhwystro defnyddiwr"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Rhwystro defnyddiwr"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Rhwystro'r defnyddiwr a/neu ddileu'r sgwrs hon"
@@ -1956,7 +2042,7 @@ msgstr "Rhwystro'r defnyddiwr a/neu ddileu'r sgwrs hon"
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Ddim ar gael"
@@ -1964,13 +2050,13 @@ msgstr "Ddim ar gael"
msgid "Blocked accounts"
msgstr "Cyfrifon wedi'u rhwystro"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Cyfrifon wedi'u Rhwystro"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Does dim modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, eich crybwyllidau, na rhyngweithio â chi fel arall."
@@ -2029,7 +2115,7 @@ msgstr "Mae Bluesky yn well gyda ffrindiau!"
msgid "Bluesky is more fun with friends"
msgstr "Mae Bluesky yn fwy hwyl gyda ffrindiau"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Mae Bluesky yn fwy hwyl gyda ffrindiau! Mewnforiwch eich cysylltiadau i weld pwy sydd yma'n barod."
@@ -2053,7 +2139,7 @@ msgstr "Bydd Bluesky yn dewis set o gyfrifon wedi'u hargymhell gan bobl yn eich
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 "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:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bydd Bluesky yn rhagweithiol yn dilysu cyfrifon nodedig a dilys."
@@ -2137,23 +2223,30 @@ msgstr "Busnes"
msgid "Button to go back to the home timeline"
msgstr "Botwm i fynd nôl i'r llinell amser cartref"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Gan {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Gan <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Trwy greu cyfrif rydych yn cytuno i'r <0>Telerau Gwasanaeth0>."
msgid "By you"
msgstr "Gennych chi"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Camera"
@@ -2192,8 +2285,8 @@ msgstr "Camera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Camera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Camera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Nôl"
@@ -2248,9 +2341,9 @@ msgstr "Diddymu'r ailweithredu ac allgofnodi"
msgid "Cancel search"
msgstr "Diddymu'r chwilio"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Methu rhyngweithio â defnyddiwr sydd wedi'i rwystro"
@@ -2264,7 +2357,7 @@ msgstr "Capsiynau (.vtt)"
msgid "Captions & alt text"
msgstr "Capsiynau a thestun amgen"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "carwsél"
@@ -2297,7 +2390,7 @@ msgstr "Newid iaith yr ap"
msgid "Change Handle"
msgstr "Newid Enw Dangos"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Newid y gwasanaeth cymedroli"
@@ -2310,11 +2403,11 @@ msgstr "Newid cyfrinair"
msgid "Change password dialog"
msgstr "Newid deialog cyfrinair"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Newid categori adrodd"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Newid y rheswm am adrodd"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Bydd newidiadau i'r pecyn cychwyn ddim yn cael eu hadlewyrchu i'r rhestr ar ôl eu creu. Bydd y rhestr yn gopi annibynnol."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Sgyrsiau"
@@ -2361,6 +2454,13 @@ msgstr "Wedi dileu'r sgwrs"
msgid "Chat ended"
msgstr "Gorffennodd y sgwrs"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "Sgwrs wedi'i chloi"
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Sgwrs wedi'i thewi"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Dewch derbyn cais am sgwrs"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Ceisiadau am sgyrsiau"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Gosodiadau sgyrsiau"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Gosodiadau Sgyrsiau"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Dad-dewi sgyrsiau"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Sgyrsiau"
@@ -2479,7 +2579,7 @@ msgstr "Dewis ieithoedd postiadau"
msgid "Choose this color as your avatar"
msgstr "Dewiswch y lliw hwn fel eich afatar"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "Dewiswch pwy sy'n gallu ymuno â'r grŵp yma a sut."
@@ -2533,7 +2633,7 @@ msgstr "Clicio am wybodaeth"
msgid "click here"
msgstr "cliciwch yma"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "Cliciwch yma i ychwanegu pobl i'r grŵp sgwrsio yma"
@@ -2541,7 +2641,7 @@ msgstr "Cliciwch yma i ychwanegu pobl i'r grŵp sgwrsio yma"
msgid "Click here to contact our support team"
msgstr "Cliciwch yma i gysylltu â'n tîm cefnogaeth"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "Cliciwch yma i greu neu reoli dolen gwahodd ar gyfer y grŵp sgwrsio yma"
@@ -2558,7 +2658,7 @@ msgstr "Cliciwch yma i allgofnodi"
msgid "Click here to resend the email"
msgstr "Cliciwch yma i ail anfon yr e-bost"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Cliciwch yma i ailgychwyn y broses ddilysu."
@@ -2567,11 +2667,11 @@ msgstr "Cliciwch yma i ailgychwyn y broses ddilysu."
msgid "Click here to update your birthdate"
msgstr "Cliciwch yma i ddiweddaru eich dyddiad geni"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Cliciwch yma i ddiweddaru eich e-bost"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "Cliciwch yma i weld y ddolen gwahodd ar gyfer y grŵp sgwrsio yma"
@@ -2580,7 +2680,7 @@ msgstr "Cliciwch yma i weld y ddolen gwahodd ar gyfer y grŵp sgwrsio yma"
msgid "Click to open tag menu for {0}"
msgstr "Clicio i agor dewislen tagiau {0}"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Cliciwch i roi cynnig arall ar y neges a fethwyd"
@@ -2594,28 +2694,30 @@ msgstr "Cliciwch i roi cynnig arall ar y neges a fethwyd"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Cliciwch i roi cynnig arall ar y neges a fethwyd"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Cau'r deialog gweithredol"
msgid "Close alert"
msgstr "Rhybudd cau"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Cau'r y drôr gwaelod"
@@ -2657,8 +2763,9 @@ msgstr "Cau'r y drôr gwaelod"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Cau'r ddeialog"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Cau'r ddelwedd"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Cau'r darllenydd delweddau"
@@ -2683,6 +2790,14 @@ msgstr "Cau'r darllenydd delweddau"
msgid "Close menu"
msgstr "Caewch y ddewislen"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Cau'r ddeialog hon"
@@ -2695,7 +2810,7 @@ msgstr "Cau'r modal croeso"
msgid "Closes password update alert"
msgstr "Yn cau'r rhybudd diweddaru cyfrinair"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Yn cau cyfansoddwr postiad ac yn dileu postiad drafft"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Comics"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Canllawiau Cymunedol"
@@ -2740,12 +2855,12 @@ msgstr "Cwblhewch yr her"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Cyfansoddi postiad newydd"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
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}}"
@@ -2753,11 +2868,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:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "Yn cywasgu GIF..."
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Yn cywasgu fideo..."
@@ -2780,7 +2895,7 @@ msgstr "Wedi'i ffurfweddu yn y <0>gosodiadau cymedroli0>."
msgid "Confirm"
msgstr "Cadarnhau"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Cynnwys a Chyfryngau"
msgid "Content and media"
msgstr "Cynnwys a chyfryngau"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Cynnwys a Chyfryngau"
@@ -2889,7 +3004,7 @@ msgstr "Cefndir ddewislen cyd-destun, cliciwch i gau'r ddewislen."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Parhau'r edefyn"
msgid "Continue thread..."
msgstr "Parhau â'r trywydd..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Parhau i'r enw grŵp"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Ymlaen i'r cam nesaf"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Sgwrs"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Sgwrs wedi'i dileu"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Sgwrs wedi'i dileu"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Fersiwn adeiladu wedi'i gopïo i'r clipfwrdd"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Copïo DID"
msgid "Copy host"
msgstr "Copïo gwesteiwr"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Copïo'r ddolen i'r proffil"
msgid "Copy link to starter pack"
msgstr "Copïo'r ddolen i'r pecyn cychwyn"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Copïo testun neges"
@@ -3052,7 +3175,7 @@ msgstr "Copïo gwerth cofnod TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Polisi Hawlfraint"
@@ -3065,7 +3188,7 @@ msgstr "Methu cysylltu i ffrwd gyfaddas"
msgid "Could not connect to feed service"
msgstr "Methu cysylltu i wasanaeth ffrydio"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Methu dilyn pob cyfatebiaeth. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Methu gadael y sgwrs"
@@ -3094,6 +3217,10 @@ msgstr "Methu gadael y sgwrs"
msgid "Could not load feed"
msgstr "Methu llwytho ffrwd"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Cod gwlad"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Creu"
@@ -3159,7 +3286,7 @@ msgstr "Creu cod QR ar gyfer pecyn cychwyn"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Creu pecyn cychwyn"
@@ -3174,13 +3301,14 @@ msgstr "Creu pecyn cychwyn i mi"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Creu cyfrif"
msgid "Create an account without using this starter pack"
msgstr "Crëwch gyfrif heb ddefnyddio'r pecyn cychwyn hwn"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Creu afatar yn lle hynny"
@@ -3206,7 +3334,7 @@ msgstr "Creu afatar yn lle hynny"
msgid "Create another"
msgstr "Creu un arall"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Creu grŵp sgwrsio"
@@ -3228,19 +3356,20 @@ msgstr "Crëwch restr o'r pecyn cychwyn"
msgid "Create moderation list"
msgstr "Creu rhestr cymedroli"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Creu cyfrif newydd"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr "Crëwch neu addasu dolen gwahodd ar gyfer y grŵp sgwrsio yma"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Creu adroddiad ar gyfer {0}"
@@ -3256,8 +3385,8 @@ msgstr "Creu rhestr defnyddwyr"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Wedi creu {0}"
@@ -3341,7 +3470,7 @@ msgstr "Rhagosodiad"
msgid "Default icons"
msgstr "Eiconau rhagosodedig"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Dileu cofnod datganiad sgwrs"
msgid "Delete contacts"
msgstr "Dileu cysylltiadau"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Dileu sgwrs"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Dileu i mi"
@@ -3399,11 +3528,11 @@ msgstr "Dileu i mi"
msgid "Delete list"
msgstr "Dileu rhestr"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Dileu neges"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Dileu neges i mi"
@@ -3413,7 +3542,7 @@ msgstr "Dileu fy ngyfrif"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Dileu postiad"
@@ -3434,12 +3563,12 @@ msgstr "Dileu'r rhestr hon?"
msgid "Delete this post?"
msgstr "Dileu'r postiad hwn?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Dilëwyd"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Cyfrif wedi'i ddileu"
@@ -3507,13 +3636,13 @@ msgstr "Deialog: addaswch pwy all ryngweithio â'r postiad hwn"
msgid "Dim"
msgstr "Tywyllu"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Analluogi"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Analluogi 2FA"
@@ -3521,7 +3650,7 @@ msgstr "Analluogi 2FA"
msgid "Disable captions"
msgstr "Analluogi capsiynau"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Analluogi e-bost 2FA"
@@ -3534,8 +3663,8 @@ msgstr "Analluogi E-bost 2FA"
msgid "Disable haptic feedback"
msgstr "Analluogi adborth haptig"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr "Analluogi postiadau dyfynu'r postiad hwn"
msgid "Disable replies entirely"
msgstr "Analluogi atebion yn llwyr"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Analluogwyd"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Dileu"
msgid "Discard changes?"
msgstr "Dileu'r newidiadau?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Dileu'r drafft?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Dileu'r postiad?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Datgysylltwch Germ DM"
@@ -3613,11 +3742,11 @@ msgstr "Darganfod Ffrydiau Newydd"
msgid "Dismiss"
msgstr "Cau"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Cau'r faner"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Cau'r gwall"
@@ -3673,7 +3802,7 @@ msgstr "Nid yw'n cynnwys noethni."
msgid "Domain verified!"
msgstr "Parth wedi'i wirio!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Dim cod gennych chi neu angen un newydd? <0>Cliciwch yma.0>"
@@ -3681,7 +3810,7 @@ msgstr "Dim cod gennych chi neu angen un newydd? <0>Cliciwch yma.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Ddim yn gweld cod? <0>Cliciwch yma i'w ail-anfon.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Ddim yn gweld e-bost? <0>Cliciwch yma i'w ail-anfon.0>"
@@ -3700,16 +3829,19 @@ msgstr "Peidiwch â phoeni! Mae'r holl negeseuon a gosodiadau wedi'u cadw a bydd
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Gorffen"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Tapio dwywaith neu bwyso'n hir i ychwanegu ymateb"
@@ -3741,15 +3873,6 @@ msgstr "Tapio dwywaith i'w hoffi"
msgid "Download Bluesky"
msgstr "Llwythwch Bluesky i Lawr"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Llwythwch ffeil CAR i lawr"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Llwythwch ffeil CAR i lawr"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Llwytho data sgwrsio i lawr"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Llwytho data sgwrsio i lawr"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Llwytho delwedd i lawr"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Docsio"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "e.e. Defnyddwyr sy'n ateb dro ar ôl tro gyda hysbysebion."
msgid "Eating disorders"
msgstr "Anhwylderau bwyta"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Golygu"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Golygu afatar"
@@ -3847,14 +3978,14 @@ msgstr "Golygu afatar"
msgid "Edit Feeds"
msgstr "Golygu Ffrydiau"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Golygu enw grŵp"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Golygu delwedd"
@@ -3868,7 +3999,16 @@ msgstr "Golygu gosodiadau rhyngweithio"
msgid "Edit interests"
msgstr "Golygu diddordebau"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "Golygu gosodiadau dolen"
@@ -3886,20 +4026,15 @@ msgstr "Golygu statws byw"
msgid "Edit moderation list"
msgstr "Golygu rhestr cymedroli"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Golygu Fy Ffrydiau"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "Golygu enw"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Golygu hysbysiadau gan {0}"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Golygu Pobl"
@@ -3925,7 +4060,7 @@ msgstr "Golygu Proffil"
msgid "Edit starter pack"
msgstr "Golygu pecyn cychwyn"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "Golygu enw'r grwp sgwrsio"
@@ -3937,7 +4072,7 @@ msgstr "Golygu rhestr defnyddwyr"
msgid "Edit who can reply"
msgstr "Golygu pwy all ateb"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Golygu eich pecyn cychwyn"
@@ -3971,7 +4106,7 @@ msgstr "Cyfeiriad e-bost"
msgid "Email Resent"
msgstr "E-bost wedi'i ail-anfon"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "Anfonwyd yr e-bost!"
@@ -4006,8 +4141,8 @@ msgstr "Mewnblanwch y postiad hon yn eich gwefan. Copïwch y pwt canlynol a'i gl
msgid "Embedded video player"
msgstr "Chwaraewr fideo wedi'i fewnblannu"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Galluogi"
@@ -4025,7 +4160,7 @@ msgstr "Galluogi cynnwys oedolion"
msgid "Enable captions"
msgstr "Galluogi capsiynau"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Galluogi e-bost 2FA"
@@ -4038,13 +4173,12 @@ msgstr "Galluogi cyfryngau allanol"
msgid "Enable media players for"
msgstr "Galluogi chwaraewyr cyfryngau ar gyfer"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Galluogwch hysbysiadau am gyfrif drwy fynd i'w proffil a phwyso'r <0>eicon cloch0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Galluogi gwthio hysbysiadau"
@@ -4091,8 +4225,8 @@ msgstr "Rhowch gyfrinair"
msgid "Enter a word or tag"
msgstr "Rhowch air neu dag"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Rhowch y cod"
@@ -4143,7 +4277,7 @@ msgstr "Yn mynd i'r sgrin lawn"
msgid "Entertainment"
msgstr "Adloniant"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Gwall"
@@ -4185,23 +4319,23 @@ msgstr "Gall pawb ateb"
msgid "Everybody can reply to this post."
msgstr "Gall pawb ateb i'r postiad hwn."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Pawb"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Pawb"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Pawb"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Popeth arall"
@@ -4217,8 +4351,8 @@ msgstr "Yn eithrio defnyddwyr rydych yn eu dilyn"
msgid "Exit fullscreen"
msgstr "Gadael y sgrin lawn"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Ehangu testun amgen"
@@ -4226,7 +4360,7 @@ msgstr "Ehangu testun amgen"
msgid "Expand list of users"
msgstr "Ehangu rhestr o ddefnyddwyr"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Ehangu neu leihau'r postiad llawn rydych yn ateb iddo"
@@ -4238,7 +4372,7 @@ msgstr "Estyn testun postiad"
msgid "Expands or collapses post text"
msgstr "Yn ehangu neu'n lleihau testun postiad"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Yr uri disgwyliedig i ddatrys i gofnod"
@@ -4277,9 +4411,9 @@ msgstr "Cyfryngau di-noethol neu a allai beri gofid."
msgid "Explicit sexual images."
msgstr "Delweddau di-noethol amlwg."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Darganfod"
@@ -4289,11 +4423,8 @@ msgstr "Darganfod"
msgid "Explore the app"
msgstr "Archwilio'r ap"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "Allforio fy nata sgwrsio"
@@ -4322,7 +4453,7 @@ msgstr "Cyfryngau Allanol"
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. Does dim gwybodaeth yn cael ei anfon na gofyn amdano nes i chi bwyso'r botwm \"chwarae\"."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Dewisiadau Cyfryngau Allanol"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Wedi methu derbyn y sgwrs"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Wedi methu ychwanegu emoji ymateb"
@@ -4354,7 +4489,7 @@ msgstr "Wedi methu ychwanegu at becyn cychwyn"
msgid "Failed to change handle. Please try again."
msgstr "Wedi methu newid enw dangos. Ceisiwch eto."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "Methu copïo dolen"
@@ -4367,7 +4502,7 @@ msgstr "Wedi methu creu cyfrinair ap. Ceisiwch eto."
msgid "Failed to create conversation"
msgstr "Wedi methu creu sgwrs"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "Wedi methu creu dolen gwahodd"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Wedi methu dileu'r sgwrs"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Wedi methu dileu'r neges"
@@ -4394,24 +4529,24 @@ msgstr "Wedi methu dileu postiad, ceisiwch eto"
msgid "Failed to delete starter pack"
msgstr "Wedi methu dileu'r pecyn cychwyn"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "Wedi methu analluogi dolen gwahodd"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Wedi methu datgysylltu Germ DM. Gwall {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "Wedi methu golygu enw'r grŵp sgwrsio"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "Wedi methu golygu dolen gwahodd"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "Wedi methu galluogi dolen gwahodd"
@@ -4427,19 +4562,27 @@ msgstr "Wedi methu dilyn eich holl ffrindiau, ceisiwch eto"
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "Wedi methu cuddio awgrymiadau, gwiriwch eich cysylltiad rhyngrwyd"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "Wedi methu agor eich ap SMS"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "Wedi methu gadael grŵp sgwrsio"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Wedi methu llwytho sgyrsiau"
@@ -4456,17 +4599,8 @@ msgstr "Wedi methu llwytho ffrydiau"
msgid "Failed to load feeds preferences"
msgstr "Wedi methu llwytho dewisiadau ffrydiau"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Wedi methu llwytho gosodiadau hysbysu."
@@ -4493,16 +4627,15 @@ msgstr "Wedi methu llwytho'r ffrydiau awgrymwyd"
msgid "Failed to load suggested follows"
msgstr "Wedi methu llwytho'r awgrymiadau dilyn"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "Wedi methu cloi grŵp sgwrsio"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Wedi methu nodi pob cais wedi'i ddarllen"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "Wedi methu tewi grŵp sgwrsio"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Wedi methu pinio post"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Wedi methu datgysylltu Germ DM. Gwall: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Wedi methu tynnu data. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Wedi methu dileu emoji ymateb"
@@ -4542,15 +4675,19 @@ msgstr "Wedi methu tynnu aelod o'r grŵp sgwrsio"
msgid "Failed to remove verification"
msgstr "Wedi methu dileu'r dilysiad"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr "Wedi methu canfod y lleoliad. Ceisiwch eto."
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Wedi methu cadw drafft"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "Wedi methu cadw delwedd"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Wedi methu cadw'ch diddordebau."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Wedi methu anfon e-bost, ceisiwch eto."
@@ -4580,7 +4717,7 @@ msgstr "Methu anfon adroddiad"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Wedi methu cyflwyno apêl, ceisiwch eto."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Wedi methu toglo tewi'r edefyn, ceisiwch eto"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr "Wedi methu datgloi grŵp sgwrsio"
@@ -4597,12 +4734,12 @@ msgstr "Wedi methu datgloi grŵp sgwrsio"
msgid "Failed to unpin list"
msgstr "Wedi methu dadbinio rhestr"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Wedi methu diweddaru gosodiadau 2FA e-bost"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Wedi methu diweddaru'r e-bost, ceisiwch eto."
@@ -4614,7 +4751,7 @@ msgstr "Wedi methu diweddaru ffrydiau"
msgid "Failed to update notification declaration"
msgstr "Methu diweddaru datganiad hysbysiad"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Wedi methu diweddaru gosodiadau"
@@ -4641,7 +4778,7 @@ msgstr "Cyfrif ffug neu fot"
msgid "False information about elections"
msgstr "Gwybodaeth ffug am etholiadau"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Ffrwd"
@@ -4649,7 +4786,7 @@ msgstr "Ffrwd"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Ffrwd gan {0}"
@@ -4662,7 +4799,7 @@ msgstr "Crëwr ffrwd"
msgid "Feed identifier"
msgstr "Dynodydd ffrwd"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Dewislen ffrwd"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Adborth wedi'i anfon at weithredwr ffrwd"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Ffrydiau"
@@ -4739,7 +4876,7 @@ msgstr "Hidlo chwiliad yn ôl iaith ( {currentLanguageLabel} - ar hyn o bryd)"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Hidlo pwy all ddewis i dderbyn hysbysiadau am eich gweithgareddau"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Hidlo gan bwy rydych yn derbyn hysbysiadau"
@@ -4747,11 +4884,11 @@ msgstr "Hidlo gan bwy rydych yn derbyn hysbysiadau"
msgid "Finalizing"
msgstr "Yn cwblhau"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "O'r diwedd!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Cyllid"
msgid "Find accounts to follow"
msgstr "Chwilio am gyfrifon i'w dilyn"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Chwilio am Gysylltiadau"
@@ -4799,7 +4936,7 @@ msgstr "Chwilio am bobl i'w dilyn"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Canfod postiadau, defnyddwyr a ffrydiau ar Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Chwilio am eich ffrindiau"
@@ -4944,8 +5081,12 @@ msgstr "Yn cael ei ddilyn gan <0>{0}0> a <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Yn cael ei ddilyn gan <0>{0}0>, <1>{1}1>, and {2, plural, one {# arall} other {# arall}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Dilynwyr @{0} rydych chi'n eu hadnabod"
@@ -4995,19 +5136,16 @@ msgstr "Yn dilyn {handle}"
msgid "Following feed preferences"
msgstr "Dewisiadau ffrydio Yn dilyn"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Dewisiadau Ffrydio Yn Dilyn"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Yn eich dilyn chi"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Yn Eich Dilyn Chi"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Ffont"
@@ -5069,7 +5207,7 @@ msgstr "Wedi anghofio?"
msgid "Free your feed"
msgstr "Ryddhewch eich ffrwd"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "Oddi wrth"
@@ -5086,35 +5224,35 @@ msgstr "Oddi wrth <0/>"
msgid "Generate a starter pack"
msgstr "Creu pecyn cychwyn"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Cynhyrchu dolen gwahodd"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Cynhyrchu dolen gwahodd newydd"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Cynhyrchu dolen newydd"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germ DM wedi'i ddatgysylltu"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Dolen Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germ DM wedi'i ail gysylltu"
@@ -5122,46 +5260,50 @@ msgstr "Germ DM wedi'i ail gysylltu"
msgid "Get help"
msgstr "Cael cymorth"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Cael hysbysiadau pan fydd pobl yn eich dilyn."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Cael hysbysiadau pan fydd pobl yn hoffi postiadau rydych wedi'u hail bostio."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Cael hysbysiadau pan fydd pobl yn hoffi'ch postiadau."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Cael hysbysiadau pan fydd pobl yn eich crybwyll chi."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Cael hysbysiadau pan fydd pobl yn dyfynnu eich postiadau."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Cael hysbysiadau pan fydd pobl yn ateb i'ch postiadau."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Cael hysbysiadau pan fydd pobl yn ail bostio postiadau rydych wedi'u hail bostio."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Cael hysbysiadau pan fydd pobl yn ail bostio'ch postiadau chi."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr ""
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Cael gwybod am bostiadau newydd"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Cael gwybod am bostiadau ac atebion o'r cyfrifon rydych chi'u eu dewis."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Cael gwybod am bostiadau newydd gan {name}"
@@ -5174,27 +5316,27 @@ msgstr "Cael gwybod am weithgaredd y cyfrif hwn"
msgid "Get notified when {name} posts"
msgstr "Cael gwybod pan fydd {name} yn postio"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Cael gwybod pan fydd rhywun yn postio"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Cychwyn arni"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIF wedi'i lwytho i fyny"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Rhowch wyneb i'ch proffil"
@@ -5213,20 +5355,21 @@ msgstr "Gogoneddu trais"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Mynd nôl"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Nôl"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Ewch nôl i'r cam blaenorol"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Ewch adref"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Ewch adref"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Ewch Adref"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Ewch i'r gosodiadau cyfrif"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Ewch i sgwrs gyda {0}"
@@ -5299,12 +5440,12 @@ msgstr "Ewch i'r nesaf"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Ewch i'r proffil"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "Ewch i'r grŵp sgwrsio \"{chatName}\""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr "Mae mynd yn fyw wedi ei analluogi ar eich cyfrif ar hyn o bryd"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Iawn"
@@ -5340,59 +5481,75 @@ msgstr "Cynnwys treisiol graffig"
msgid "Grooming or predatory behavior"
msgstr "Ymddygiad rheibus neu ddenu"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "Deialog dolen gwahodd grŵp sgwrsio"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "Grŵp sgwrsio wedi'i gloi"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "Grŵp sgwrsio wedi'i dewi"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr "Diweddarwyd enw grŵp sgwrsio"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "Gosodiadau grwpiau sgwrsio"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "Grŵp sgwrsio wedi'i ddatgloi"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "Wedi dad-dewi grŵp sgwrsio"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr "Dyw sgyrsiau grwp ddim ar gael eto"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr "Mae grwpiau sgwrsio ar gael bellach"
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "Mae'r grŵp wedi'i gloi"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Enw grŵp"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Hacio neu ymosodiadau systemau"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Mae'r enw dangos yn rhy hir. Rhowch gynnig ar un byrrach."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "Yn digwydd nawr"
@@ -5446,7 +5603,7 @@ msgstr "Gweithgareddau niweidiol neu risg uchel"
msgid "Harming or endangering minors"
msgstr "Niweidio neu beryglu plant dan oed"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Hashnod"
@@ -5458,8 +5615,8 @@ msgstr "Hashnod {tag}"
msgid "Hate speech"
msgstr "Siarad casineb"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Oes gennych chi god? <0>Cliciwch yma.0>"
@@ -5483,7 +5640,7 @@ msgstr "Wedi ei gadw gan Bluesky am 7 diwrnod i osgoi camddefnydd, yna ei ddileu
msgid "Help"
msgstr "Cymorth"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Helpwch bobl i wybod nad ydych chi'n bot trwy lwytho llun neu greu afatar."
@@ -5652,18 +5809,18 @@ msgstr "Hmmm, mae'n ymddangos ein bod yn cael trafferth llwytho'r data hwn. Gwel
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmmm, dydyn ni ddim wedi gallu llwytho'r gwasanaeth cymedroli hwnnw."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Daliwch ati! Rydyn ni'n rhoi mynediad i fideo yn raddol, ac rydych chi'n dal i aros yn unol. Dewch nôl cyn hir!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Daliwch arni! Dyw'r nodwedd hon ddim ar gael eto. Dewch nôl rhywbryd arall."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Cartref"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
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"
@@ -5757,7 +5914,7 @@ msgstr "Os byddwch yn dileu'r rhestr hon, fyddwch chi ddim yn gallu ei hadfer."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Os oes gennych chi'ch parth eich hun, gallwch chi ei ddefnyddio fel eich handlen. Mae hyn yn gadael i chi hunan-wirio eich hunaniaeth. <0> Dysgwch ragor yma.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Os oes angen i chi ddiweddaru eich e-bost, <0>cliciwch yma0>."
@@ -5765,7 +5922,7 @@ msgstr "Os oes angen i chi ddiweddaru eich e-bost, <0>cliciwch yma0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Os byddwch yn dileu'r postiad hwn, fyddwch chi ddim yn gallu ei gael yn ôl."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Os byddwch chi'n diweddaru eich cyfeiriad e-bost, bydd 2FA e-bost yn cael ei analluogi."
@@ -5773,7 +5930,6 @@ msgstr "Os byddwch chi'n diweddaru eich cyfeiriad e-bost, bydd 2FA e-bost yn cae
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Os ydych am newid eich cyfrinair, byddwn yn anfon cod atoch i wirio mai hwn yw eich cyfrif."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Os ydych chi eisiau cyfyngu ar bwy sy'n gallu derbyn hysbysiadau am weithgaredd eich cyfrif, gallwch ei newid yn <0>Gosodiadau → Preifatrwydd a Diogelwch0>."
@@ -5786,23 +5942,33 @@ msgstr "Os ydych chi'n ddatblygwr, gallwch chi gynnal eich gweinydd eich hun."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Delwedd"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "{0} delwedd"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Delwedd {0} o {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "{0} delwedd o {imageCount}"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Wedi gwagio'r storfa delweddau, rhyddhawyd {0}"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "Oriel delweddau, {0} delwedd"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "Mae delwedd wedi ei chuddio oherwydd eich gosodiadau cymedroli."
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "Dyw'r ddelwedd ddim ar gael."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Dewisiadau delweddau"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Personadu"
msgid "Import contacts"
msgstr "Mewnforio cysylltiadau"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Mewnforio Cysylltiadau"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Mewnforio cysylltiadau i chwilio am eich ffrindiau"
@@ -5881,40 +6047,40 @@ msgstr "Mewnforiwyd ar {0}"
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 "Er mwyn darparu profiad addas i oed, mae'n rhaid i ni gael gwybod am eich dyddiad geni. Mae hyn yn ddigwyddiad untro a bydd eich data'n cael ei gadw'n breifat."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "O fewn yr ap"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Hysbysiadau o fewn yr ap"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "O fewn yr ap, Pawb"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "O fewn yr ap, Pobl rydych yn eu dilyn"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "O fewn yr ap, Gwthio"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "O fewn yr ap, Gwthio, Pawb"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "O fewn yr ap, Gwthio, Pobl rydych yn eu dilyn"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Dim yn y blwch derbyn!"
@@ -5963,6 +6129,10 @@ msgstr "Yn cyflwyno postiadau wedi'u cadw, hynny yw, nodau tudalen"
msgid "Invalid 2FA confirmation code."
msgstr "Cod cadarnhau 2FA annilys."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Enw dangos annilys. Rhowch gynnig ar un arall."
@@ -5977,10 +6147,14 @@ msgstr "Gosodiadau rhyngweithio annilys."
msgid "Invalid phone number"
msgstr "Rhif ffôn annilys"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Pwnc adrodd annilys"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Cod Dilysu Annilys"
@@ -6010,12 +6184,12 @@ msgstr "Gwahodd Ffrindiau"
msgid "Invite friends <0/>"
msgstr "Gwahodd ffrindiau <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Dolen gwahodd"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "Dolen gwahodd wedi'i chreu"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "Dolen gwahodd wedi'i hanalluogi"
@@ -6054,7 +6228,7 @@ msgstr "Gwahoddiadau, ond personol"
#: src/ageAssurance/components/NoAccessScreen.tsx:394
msgid "Is your location not accurate? <0>Tap here to update your location with GPS.0> "
-msgstr ""
+msgstr "A yw eich lleoliad yn anghywir? <0>Tapiwch yma i ddiweddaru eich lleoliad gyda GPS.0> "
#: src/components/contacts/components/InviteInfo.tsx:47
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."
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Dim ond chi ar hyn o bryd! Ychwanegwch fwy o bobl at eich pecyn cychwyn trwy chwilio uchod."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID gwaith: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID gwaith: {0}"
msgid "Jobs"
msgstr "Swyddi"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Swyddi"
msgid "Join Bluesky"
msgstr "Ymunwch â Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Ymunwch â'r sgwrs"
msgid "Journalism"
msgstr "Newyddiaduraeth"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Cadwch i olygu"
@@ -6143,7 +6331,7 @@ msgstr "Labeli ar eich cyfrif"
msgid "Labels on your content"
msgstr "Labeli ar eich cynnwys"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Gosodiadau Iaith"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Diweddaraf"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Dysgwch ragor am y rhybudd hwn"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Dysgu rhagor am ddilysu ar Bluesky"
@@ -6239,7 +6427,7 @@ msgstr "Dysgu rhagor am ddilysu ar Bluesky"
msgid "Learn more about what is public on Bluesky."
msgstr "Dysgu rhagor am yr hyn sy'n gyhoeddus ar Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Dysgu rhagor am eich dolen Germ DM"
@@ -6252,8 +6440,8 @@ msgstr "Mae rhagor o wybodaeth yn eich <0>gosodiadau cyfrif0>"
msgid "Learn more."
msgstr "Dysgu rhagor."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Gadael"
@@ -6276,7 +6464,7 @@ msgstr "Gadael sgwrsio"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Gadael y sgwrs"
@@ -6284,13 +6472,13 @@ msgstr "Gadael y sgwrs"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Gadael y sgwrs"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "Gadael grŵp sgwrsio"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr "Gadael grŵp sgwrsio hwn"
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Golau"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Yn hoffi ({0, plural, one {# yn hoffi} other {# yn hoffi}})"
@@ -6346,11 +6534,7 @@ msgstr "Yn hoffi 10 postiad"
msgid "Like 10 posts to train the Discover feed"
msgstr "Yn hoffi 10 postiad i hyfforddi'r ffrwd Darganfod"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Hysbysiadau hoffi"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Yn hoffi'r ffrwd hon"
@@ -6358,8 +6542,8 @@ msgstr "Yn hoffi'r ffrwd hon"
msgid "Like this labeler"
msgstr "Yn hoffi'r labelwr hwn"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Wedi'i hoffi gan"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Wedi'i hoffi gan {0, plural, one {# defnyddiwr} other {# defnyddiwr}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Wedi'i hoffi gan {likeCount, plural, one {# defnyddiwr} other {# defnyddiwr}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Yn hoffi"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Yn hoffi eich ail bostiadau"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Yn hoffi eich hysbysiadau ail bostio"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Yn hoffi'r postiad hwn"
@@ -6409,11 +6589,11 @@ msgstr "Yn hoffi'r postiad hwn"
msgid "Linear"
msgstr "Llinol"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "Dolen wedi'i chopïo i'r clipfwrdd"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Rhestr"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Rhestr heb ei thewi"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Rhestrau"
@@ -6545,7 +6725,7 @@ msgstr "Amlygu digwyddiad cudd"
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."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "Mae nodwedd byw yn y cyflwr beta"
@@ -6595,27 +6775,27 @@ msgstr "Yn llwytho gosodiadau rhyngweithio postiadau..."
msgid "Loading..."
msgstr "Yn llwytho..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "Cloi"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "Cloi grŵp sgwrsio"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "Cloi grŵp sgwrsio?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "Cloi'r grŵp sgwrsio hwn"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "Wedi cloi"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Cofnod"
@@ -6662,7 +6842,7 @@ msgstr "Mae'n ymddangos eich bod chi'n colli'r ffrwd canlynol. <0>Cliciwch yma i
msgid "Love GIFs"
msgstr "GIF caru"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Gwnewch addasiadau i osodiadau e-bost eich cyfrif"
@@ -6687,9 +6867,8 @@ msgstr "Rheoli gosodiadau dilysu"
msgid "Manage your muted words and tags"
msgstr "Rheoli eich geiriau a thagiau wedi'u tewi"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Nodi'r cyfan fel wedi'u darllen"
@@ -6698,13 +6877,12 @@ msgstr "Nodi'r cyfan fel wedi'u darllen"
msgid "Mark as read"
msgstr "Marcio fel weedi darllen"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Wedi marcio'r cyfan fel wedi'u darllen"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Efallai yn nes ymlaen"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Cyfryngau a all fod yn annymunol neu'n amhriodol i rai cynulleidfaoedd."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Aelodau"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "Gall aelodau dal ddarllen hanes sgwrsio ond ddim anfon negeseuon newydd."
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Hysbysiadau crybwyll"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "defnyddwyr wedi'u crybwyll"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Crybwylliadau"
@@ -6775,22 +6949,22 @@ msgstr "Neges {0}"
msgid "Message {displayName}"
msgstr "Neges {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Neges wedi'i dileu"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Neges wedi'i dileu"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Methodd y neges a mynd."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Neges gan @{0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Mae'r neges yn rhy hir"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "Neges yn rhy hir ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Dewisiadau negeseuon"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Negeseuon"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr "Canol Nos"
msgid "Minor harassment or bullying"
msgstr "Aflonyddu neu fwlio plant dan oed"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Hysbysiadau amrywiol"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Camarweiniol"
@@ -6850,7 +7020,7 @@ msgstr "Camarweiniol"
msgid "Missing media"
msgstr "Cyfryngau coll"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Cymedroli"
@@ -6894,7 +7064,7 @@ msgstr "Rhestr cymedroli wedi'i diweddaru"
msgid "Moderation lists"
msgstr "Rhestrau cymedroli"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Rhestrau Cymedroli"
@@ -6903,7 +7073,7 @@ msgstr "Rhestrau Cymedroli"
msgid "moderation settings"
msgstr "gosodiadau cymedroli"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Cyflyrau cymedroli"
@@ -6949,7 +7119,7 @@ msgstr "Ffilmiau"
msgid "Music"
msgstr "Cerddoriaeth"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Tewi"
@@ -6994,7 +7164,7 @@ msgstr "Tewi rhestr"
msgid "Mute these accounts?"
msgstr "Tewi'r cyfrifon hyn?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "Tewi'r grŵp sgwrsio hwn"
@@ -7032,7 +7202,7 @@ msgstr "Tewi edefyn"
msgid "Mute words & tags"
msgstr "Tewi geiriau a thagiau"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "Wedi'i dewi"
@@ -7040,7 +7210,7 @@ msgstr "Wedi'i dewi"
msgid "Muted accounts"
msgstr "Cyfrifon wedi'u tewi"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Cyfrifon Wedi'u Tewi"
@@ -7108,8 +7278,8 @@ msgstr "Yn llywio i'r sgrin nesaf"
msgid "Navigates to your profile"
msgstr "Yn llywio i'ch proffil"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Angen adrodd ar fater torri hawlfraint, cais cyfreithiol, neu gydymffurfiad rheolaethol?"
@@ -7136,34 +7306,34 @@ msgstr "{postsCount, plural, one {postiad} other {postiad}} newydd gan {firstAut
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{postsCount, plural, one {postiad} other {postiad}} newydd gan {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Sgwrs newydd"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "Sgwrs newydd gyda {0}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "Sgwrs newydd gyda {0} a {1}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "Sgwrs newydd gyda {0}, {1}, a {memberCount, plural, one {{memberCount} rhagor} other {{memberCount} rhagor}}."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Cyfeiriad e-bost newydd"
@@ -7174,29 +7344,25 @@ msgstr "Cyfeiriad e-bost newydd"
msgid "New Feature"
msgstr "Nodwedd Newydd"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Hysbysiadau dilynwr newydd"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Dilynwyr newydd"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "Grŵp sgwrsio newydd"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "Grŵp sgwrsio newydd"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "Grŵp sgwrsio newydd gyda:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Postiad newydd"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Postiad newydd"
@@ -7262,8 +7428,8 @@ msgstr "Newyddion"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "Heb ganfod Gifau ar gyfer \"{query}\"."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "Dim GIF i'w ddangos ar hyn o bryd. Ceisiwch eto."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Dim delwedd"
@@ -7362,7 +7528,7 @@ msgstr "Dim yn dilyn {0} bellach"
msgid "No media yet"
msgstr "Dim cyfryngau eto"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Dim negeseuon eto"
@@ -7378,12 +7544,12 @@ msgstr "Dim enw"
msgid "No notifications yet!"
msgstr "Dim hysbysiadau eto!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Neb"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Neb"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Dim canlyniad"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Dim canlyniadau"
@@ -7509,10 +7675,6 @@ msgstr "Delweddau personol heb gydsyniad"
msgid "Non-sexual Nudity"
msgstr "Noethni nad yw'n rhywiol"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Dim"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "Nid yw ar gael ar y platfform yma."
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Heb ei Ganfod"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Dim yn barod i bostio eto? Cadwch eich syniadau gorau yn y Drafftiau nes bod yr amser wedi dod."
@@ -7548,44 +7710,31 @@ msgstr "Sylw: Dim ond ar gyfer aelodau sydd wedi mewngofnodi mae'r postiad hwn y
msgid "Nothing saved yet"
msgstr "Dim wedi'i gadw eto"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Gosodiadau hysbysu"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Seiniau hysbysu"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Hysbysiadau"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Hysbysiadau am bopeth arall, fel pan fydd rhywun yn ymuno drwy un o'r pecynnau cychwyn."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "nawr"
@@ -7601,7 +7750,7 @@ msgstr "Dylai'r rhif fod yn un ffôn symudol"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Wedi'i ddiffodd"
@@ -7623,7 +7772,8 @@ msgstr "Iawn"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "ar <0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Ailosod cyflwyno"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Mae un neu ragor o bostiadau'n rhy hir i gadw fel drafft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Uchafswm nifer y nodau yw #.} other {Uchafswm nifer y nodau yw #.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Does dim testun amgen ar un neu fwy o fideos."
@@ -7685,6 +7835,26 @@ msgstr "Does dim testun amgen ar un neu fwy o fideos."
msgid "Only {0} can reply."
msgstr "Dim ond {0} all ateb."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Dim ond dilynwyr rwy'n eu dilyn"
msgid "Only image files are supported"
msgstr "Dim ond ffeiliau delwedd sy'n cael eu cefnogi"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Dim ond ffeiliau WebVTT (.vtt) sy'n cael eu cefnogi"
@@ -7712,7 +7892,7 @@ msgstr "Wps, aeth rhywbeth o'i le!"
msgid "Oops!"
msgstr "Wps!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Agor y crëwr avatar"
@@ -7720,12 +7900,17 @@ msgstr "Agor y crëwr avatar"
msgid "Open camera"
msgstr "Agor camera"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "Dewisiadau aelodau sgwrsio agored ar gyfer {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Agor dewisiadau sgyrsiau"
@@ -7739,16 +7924,16 @@ msgstr "Agor dewislen drôr"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Agor y dewisydd emojis"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Agor sgrin manylion ffrwd"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Agor dewislen dewisiadau ffrwd"
@@ -7760,13 +7945,17 @@ msgstr "Agor rhestr emoji lawn"
msgid "Open Germ DM"
msgstr "Agor Germ DM"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "Agor gosodiadau grŵp sgwrsio"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Agor dolen i {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Agor pecyn"
msgid "Open post options menu"
msgstr "Agor dewislen dewisiadau ffrydiau"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Agor proffil"
@@ -7817,6 +8006,10 @@ msgstr "Agor tudalen llyfr stori"
msgid "Open system log"
msgstr "Agor cofnod system"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Yn agor manylion ychwanegol cofnod dadfygio"
msgid "Opens alt text dialog"
msgstr "Yn agor deialog testun amgen"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Yn agor camera ar ddyfais"
@@ -7858,22 +8051,24 @@ msgstr "Yn agor y cyfansoddwr"
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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Yn agor llif i greu cyfrif Bluesky newydd"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Yn agor llif i fewngofnodi i'ch cyfrif Bluesky presennol"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Yn agor y ddelwedd yn llawn"
@@ -7890,7 +8085,7 @@ msgstr "Yn agor dewisydd lluniau"
msgid "Opens link {0}"
msgstr "Yn agor y ddolen {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Yn agor deialog statws byw"
@@ -7919,9 +8114,9 @@ msgstr "Yn agor maes ysgrifennu postiad"
msgid "Opens this draft in the composer"
msgstr "Yn agor y drafft hwn yn y cyfansoddwr"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Yn agor y proffil hwn"
@@ -7997,12 +8192,12 @@ msgstr "Ein cofnod blog"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Mae'n tîm cymedroli wedi derbyn eich adroddiad."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Mae'n cymedrolwyr wedi adolygu adroddiadau ac wedi penderfynu analluogi eich mynediad at sgyrsiau ar Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Mae'n cymedrolwyr wedi adolygu adroddiadau ac wedi penderfynu analluogi
msgid "Owner"
msgstr "Perchennog"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Heb ganfod y dudalen"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Tudalen Heb ei Chanfod"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Oedi fideo"
msgid "People"
msgstr "Pobl"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "Mae'r rhai mae {ownerName} yn eu dilyn yn gallu ymuno'n syth"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "Mae'r rhai mae {ownerName} yn eu dilyn yn gallu gofyn i ymuno"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Pobl yn cael eu dilyn gan @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Pobl yn dilyn @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Pobl rwy'n eu dilyn"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "Mae'r rhai rwy'n eu dilyn yn gallu ymuno'n syth"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "Mae'r rhai rwy'n eu dilyn yn gallu gofyn i gael ymuno"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Lluniau ar gyfer oedolion."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Pinio'r frwd"
@@ -8152,7 +8348,7 @@ msgstr "Pinio'r frwd"
msgid "Pin to home"
msgstr "Pinio i cartref"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Pinio i Cartref"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Piniwyd"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "Wedi'i binio {0} i Cartref"
@@ -8236,7 +8432,7 @@ msgstr "Dewiswch eich enw dangos."
msgid "Please choose your password."
msgstr "Dewiswch eich cyfrinair."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Cliciwch ar y ddolen yn yr e-bost a anfonwyd atoch i wirio'ch cyfeiriad e-bost newydd. Mae hwn yn gam pwysig i ganiatáu i chi barhau i fwynhau holl nodweddion Bluesky."
@@ -8244,7 +8440,7 @@ msgstr "Cliciwch ar y ddolen yn yr e-bost a anfonwyd atoch i wirio'ch cyfeiriad
msgid "Please complete the verification captcha."
msgstr "Cwblhewch y captcha dilysu."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Cadarnhewch eich cyfeiriad e-bost i lwytho fideos."
@@ -8265,14 +8461,14 @@ msgstr "Rhowch gyfrinair. Rhaid iddo fod o leiaf 8 nod."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Rhowch enw unigryw ar gyfer y cyfrinair apiau hwn neu defnyddiwch un gynhyrchwyd ar hap gennym ni."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Rhowch god dilys."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Rhowch gyfeiriad e-bost dilys."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Rhowch gyfeiriad e-bost dilys, parhaol. Efallai y bydd angen i chi gael mynediad ato yn y dyfodol."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Rhowch y cod a anfonwyd gennym at <0>{0}0> isod."
@@ -8293,7 +8489,7 @@ msgstr "Rhowch y cod a anfonwyd gennym at <0>{0}0> isod."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Rhowch y cod rydych wedi'i dderbyn a'r cyfrinair hoffech chi ei ddefnyddio."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Rhowch y cod diogelwch a anfonwyd gennym at eich cyfeiriad e-bost blaenorol."
@@ -8306,7 +8502,7 @@ msgstr "Rhowch eich e-bost."
msgid "Please enter your invite code."
msgstr "Rhowch eich cod gwahodd."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Rhowch eich cyfeiriad e-bost newydd."
@@ -8323,7 +8519,7 @@ msgstr "Rhowch eich enw defnyddiwr"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Eglurwch pam rydych chi'n meddwl bod y label hwn wedi'i osod yn anghywir gan {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Eglurwch pam rydych chi'n meddwl bod eich sgyrsiau wedi'u hanalluogi'n anghywir"
@@ -8366,7 +8562,7 @@ msgstr "Defnyddiwch yr ap cynhenid er mwyn mewnforio eich cysylltiadau."
msgid "Please use the native app to sync your contacts."
msgstr "Defnyddiwch yr ap cynhenid i gydweddu eich cysylltiadau."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Dilyswch eich e-bost"
@@ -8383,7 +8579,7 @@ msgstr "Gwleidyddiaeth"
msgid "Porn"
msgstr "Pornograffi"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Postio"
@@ -8403,12 +8599,12 @@ msgstr "Postiwch lun"
msgid "Post a video"
msgstr "Postiwch fideo"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Postio'r Cyfan"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Postio beth bynnag"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Postiad wedi'i rwystro"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Postiad gan @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Dilëwyd y postiad"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Methodd y postiad a llwytho i fyny. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni."
@@ -8454,7 +8650,7 @@ msgstr "Postiad Wedi'i Guddio Gennych Chi"
msgid "Post interaction settings"
msgstr "Gosodiadau rhyngweithio postiadau"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Gosodiadau Rhyngweithio Postiadau"
@@ -8464,8 +8660,8 @@ msgstr "Gosodiadau Rhyngweithio Postiadau"
msgid "Post language selection"
msgstr "Dewis ieithoedd postiadau"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Postio dolen"
@@ -8491,7 +8687,6 @@ msgstr "Postiad wedi ei ddadbinio"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Mae modd tewi postiadau ar sail eu testun, eu tagiau neu'r ddau. Rydym y
msgid "Posts hidden"
msgstr "Postiadau wedi'u cuddio"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Postiadau, Atebion"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Dolen camarweiniol posib"
@@ -8528,6 +8719,7 @@ msgstr "Pwyswch i geisio ailgysylltu"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Pwyswch i ail gynnig"
@@ -8536,7 +8728,7 @@ msgstr "Pwyswch i ail gynnig"
msgid "Press to view followers of this account that you also follow"
msgstr "Pwyswch i weld dilynwyr y cyfrif hwn rydych chi'n ei ddilyn hefyd"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Rhagolwg"
@@ -8559,21 +8751,20 @@ msgstr "Preifatrwydd"
msgid "Privacy and security"
msgstr "Preifatrwydd a diogelwch"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Preifatrwydd a Diogelwch"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Gosodiadau Preifatrwydd a Diogelwch"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Polisi Preifatwydd"
msgid "Privacy violation of a minor"
msgstr "Torri ar breifatrwydd plentyn dan oed"
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "Yn prosesu GIF..."
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Yn prosesu fideo..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Wrthi’n prosesu..."
@@ -8602,8 +8793,8 @@ msgstr "Wrthi’n prosesu..."
msgid "profile"
msgstr "proffil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Cyhoeddi postiad"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Cyhoeddi postiadau"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Cyhoeddi atebion"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Cyhoeddi ateb"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Gwthio"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Hysbysiadau gwthio"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
-msgstr "Gwthio, Pawb"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "Gwthio, Pobl rydych yn eu dilyn"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "Mae'r cod QR wedi'i lwytho i lawr!"
msgid "QR code saved to your camera roll!"
msgstr "Mae'r cod QR wedi'i gadw ar rolyn eich ffolder lluniau!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Hysbysiadau dyfynnu"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Analluogwyd postiadau dyfyniad"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Dyfyniadau"
@@ -8733,11 +8920,11 @@ msgstr "Wedi mynd dros derfyn y raddfa. Ceisiwch eto."
msgid "Re-attach quote"
msgstr "Ail-atodi dyfyniad"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Ail alluogi'r ddolen gwahodd"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Ail alluogi'r ddolen"
@@ -8745,8 +8932,8 @@ msgstr "Ail alluogi'r ddolen"
msgid "React with {emoji}"
msgstr "Ymateb gyda {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Ymatebion"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "darllenwch am sut i ddefnyddio'r hidlyddion chwilio"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Darllen postiad blog"
@@ -8812,11 +8999,11 @@ msgstr "Pobl go-iawn."
msgid "Reason for appeal"
msgstr "Rheswm dros apelio"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Derbyn hysbysiadau o fewn yr ap"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Derbyn gwthio hysbysiadau"
@@ -8841,6 +9028,10 @@ msgstr "Argymhellwyd"
msgid "Reconnect"
msgstr "Ailgysylltu"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Gwrthod"
msgid "Reject chat request"
msgstr "Gwrthod cais am sgwrs"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Ail-lwytho sgyrsiau"
@@ -8896,17 +9087,17 @@ msgstr "Tynnu cyfrif"
msgid "Remove all contacts"
msgstr "Tynnu pob cysylltiad"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Tynnu atodiad"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Tynnu Afatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Tynnu Baner"
@@ -8914,8 +9105,9 @@ msgstr "Tynnu Baner"
msgid "Remove caption file"
msgstr "Tynnu ffeil capsiynau"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Tynnu mewblaniad"
@@ -8933,8 +9125,8 @@ msgstr "Tynnu ffrwd?"
msgid "Remove from chat"
msgstr "Tynnu o'r sgwrs"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Tynnu o'r postiadau wedi'u cadw"
msgid "Remove from your feeds?"
msgstr "Tynnu o'ch ffrydiau?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Tynnu delwedd"
@@ -9009,11 +9201,11 @@ msgstr "Dileu dilysu"
msgid "Remove your verification for this account?"
msgstr "Dileu eich dilysiad ar gyfer y cyfrif hwn?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Wedi'i dynnu gan yr awdur"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Wedi'i ddileu gennych chi"
@@ -9035,7 +9227,7 @@ msgstr "Wedi'i dynnu o'r postiadau wedi'u cadw"
msgid "Removed from starter pack"
msgstr "Wedi ei dynnu o'r pecyn cychwyn"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Mewn ymateb i chi"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Atebion"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Ateb"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Ateb ({0, plural, one {# ateb} other {# ateb}})"
@@ -9125,10 +9316,6 @@ msgstr "Ateb Wedi'i Guddio gan Awdur yr Edefyn"
msgid "Reply Hidden by You"
msgstr "Ateb Wedi'i Guddio Gennych Chi"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Hysbysiadau ateb"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Mae gosodiadau ateb yn cael eu dewis gan awdur yr edefyn"
@@ -9146,9 +9333,9 @@ msgstr "Gwelededd ateb wedi'i ddiweddaru"
msgid "Reply was successfully hidden"
msgstr "Cafodd yr ateb ei guddio'n llwyddiannus"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Adroddiadau"
@@ -9164,13 +9351,13 @@ msgstr "Adrodd ar gyfrif"
msgid "Report conversation"
msgstr "Adrodd ar sgwrs"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Deialog adrodd"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Adrodd ar ffrwd"
@@ -9179,7 +9366,7 @@ msgstr "Adrodd ar ffrwd"
msgid "Report list"
msgstr "Rhestr adrodd"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Adrodd ar neges"
@@ -9199,8 +9386,8 @@ msgstr "Adrodd ar becyn cychwyn"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Adroddiad wedi ei gyflwyno"
@@ -9213,7 +9400,7 @@ msgstr "Adrodd am y sgwrs"
msgid "Report this feed"
msgstr "Adrodd ar y ffrwd hwn"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "Adrodd am y grŵp sgwrsio hwn"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Adrodd ar y rhestr hon"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Adrodd am y ffrwd byw yma"
@@ -9256,10 +9443,6 @@ msgstr "Ail-bostio"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Ail-bostio ({0, plural, one {# ail-bostio} other {# ail-bostio}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Hysbysiadau ail bostio"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Wedi'i ail-bostio gennych chi"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Ail bostiadau"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Ail-bostiadau'r postiad hwn"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Ail bostiadau eich ail bostiadau"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Ail bostiadau eich hysbysiadau ail bostiadau"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Gofyn am god"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Mae angen testun amgen cyn postio"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Mae angen cod e-bost i fewngofnodi i'ch cyfrif."
@@ -9328,7 +9534,11 @@ msgstr "Yn ofynnol ar gyfer y darparwr hwn"
msgid "Required in your region"
msgstr "Yn ofynnol yn eich ardal"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Ail-anfon"
@@ -9393,15 +9603,16 @@ msgstr "Yn ceisio'r weithred olaf eto, oedd yn wallus"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Yn ceisio'r weithred olaf eto, oedd yn wallus"
msgid "Retry"
msgstr "Ceisio eto"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Ceisio llwytho dewisiadau adrodd eto"
@@ -9426,14 +9637,14 @@ msgstr "Ceisio llwytho dewisiadau adrodd eto"
msgid "Return to previous page"
msgstr "Nôl i'r dudalen flaenorol"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Yn mynd nôl i'r dudalen gartref"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Yn mynd nôl i'r dudalen flaenorol"
@@ -9454,7 +9665,7 @@ msgstr "GIFau trist"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Cadw dyddiad geni"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Cadw'r newidiadau"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Cadw newidiadau?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Cadw drafft"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Cadw drafft?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Cadw cod QR"
msgid "Save these options for next time"
msgstr "Cadw'r dewisiadau hyn ar gyfer y tro nesaf"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Cadw i fy ffrydiau"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Wedi cadw"
msgid "Saved Feeds"
msgstr "Ffrydiau wedi'u Cadw"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Postiadau Wedi'u Cadw"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Wedi'i gadw i'ch ffrydiau"
@@ -9551,8 +9764,8 @@ msgstr "Wedi'i gadw i'ch ffrydiau"
msgid "Say hello!"
msgstr "Dywedwch helo!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr "Sgrolio i'r dde"
msgid "Scroll to top"
msgstr "Sgrolio i'r brig"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Chwilio"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Chwilio postiadau @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Chwiliwch fy mhostiadau"
msgid "Search posts"
msgstr "Chwiliwch am bostiadau"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Chwilio proffiliau"
msgid "Search..."
msgstr "Chwilio..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Chwilio am broffiliau"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Mae angen cam diogelwch"
@@ -9759,7 +9972,7 @@ msgstr "Dewis {langName}"
msgid "Select a color"
msgstr "Dewiswch liw"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Dewis rheswm"
@@ -9828,7 +10041,7 @@ msgstr "Dewiswch GIF"
msgid "Select GIF \"{0}\""
msgstr "Dewiswch GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "Dewis aelodau o grŵp sgwrsio"
@@ -9850,7 +10063,7 @@ msgstr "Dewiswch iaith..."
msgid "Select languages"
msgstr "Dewiswch ieithoedd"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Dewis gwasanaeth cymedroli"
@@ -9904,11 +10117,11 @@ msgstr "Dewiswch eich diddordebau o'r dewisiadau isod"
msgid "Select your preferred language for translations in your feed."
msgstr "Dewiswch eich dewis iaith cyfieithu'ch ffrydiau."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Dewiswch eich hoff sianeli hysbysu"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "Dyw dewis mathau lluosog o gyfryngau ddim yn cael ei gynnal."
@@ -9921,9 +10134,9 @@ msgstr "Ymddygiadau hunan niweidiol neu beryglus"
msgid "Send code"
msgstr "Anfon cod"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Anfon e-bost"
@@ -9939,7 +10152,7 @@ msgstr "Anfon adroddiad gwall"
msgid "Send feedback"
msgstr "Anfonwch adborth"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Anfonwch neges"
@@ -9952,7 +10165,7 @@ msgstr "Anfon postiad at {name}"
msgid "Send post to..."
msgstr "Anfonwch bostiad i..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Anfon adroddiad at {title}"
@@ -9960,7 +10173,7 @@ msgstr "Anfon adroddiad at {title}"
msgid "Send the message from your phone"
msgstr "Anfon y neges o'ch ffôn"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Anfonwch trwy neges uniongyrchol"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "Anfonwyd ar {0}"
@@ -10015,14 +10228,14 @@ msgstr "Rhowch eich dyddiad geni isod a byddwn yn eich cael yn ôl i bostio a da
msgid "Sets email for password reset"
msgstr "Yn gosod e-bost ar gyfer ailosod cyfrinair"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Gosodiadau"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Gosodiadau gweithgareddau gan eraill"
@@ -10030,39 +10243,39 @@ msgstr "Gosodiadau gweithgareddau gan eraill"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Gosodiadau ar gyfer caniatáu i eraill gael gwybod am eich postiadau"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Gosodiadau hysbysiadau hoffi"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Gosodiadau hysbysiadau crybwyll"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Gosodiadau hysbysiadau dilynwr newydd"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Gosodiadau hysbysiadau popeth arall"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Gosodiadau hysbysiadau hoffi eich ail bostiadau"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Gosodiadau hysbysiadau ail bostiadau eich ail bostiadau"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Gosodiadau hysbysiadau dyfynnu"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Gosodiadau hysbysiadau ateb"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Gosodiadau hysbysiadau ail bostio"
@@ -10079,10 +10292,12 @@ msgstr "Gweithgaredd rhywiol neu noethni erotig."
msgid "Sexually Suggestive"
msgstr "Rhywiol Awgrymiadol"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Rhanwch DID awdur"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Rhannu delwedd"
@@ -10124,7 +10339,7 @@ msgstr "Rhannu postiad i:// URI"
msgid "Share QR code"
msgstr "Rhannwch god QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Rhannwch y ffrwd hon"
@@ -10151,7 +10366,7 @@ msgstr "Rhannu drwy..."
msgid "Share your contacts to find friends"
msgstr "Rhannwch eich cysylltiadau er mwyn darganfod ffrindiau"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Profwr Dewisiadau Rhannu"
@@ -10167,16 +10382,16 @@ msgstr "Dangos testun amgen"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Dangos beth bynnag"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "Dangos label awtomatiaeth"
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Dangos rhybudd a hidlo o ffrydiau"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Dangos pan fyddwch yn fyw"
@@ -10297,15 +10512,17 @@ msgstr "Yn dangos y cynnwys"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Mewngofnodi neu greu cyfrif"
msgid "Sign in or create your account to join the conversation!"
msgstr "Mewngofnodwch neu crëwch eich cyfrif i ymuno â'r sgwrs!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Mewngofnodwch i gyfrif nad yw wedi'i restru"
@@ -10337,6 +10558,10 @@ msgstr "Mewngofnodwch i gyfrif nad yw wedi'i restru"
msgid "Sign in to Bluesky or create a new account"
msgstr "Mewngofnodwch i Bluesky neu crëwch gyfrif newydd"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Mewngofnodwch i weld y postiad"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Allgofnodi"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Allgofnodi"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Allgofnodi?"
@@ -10391,7 +10616,7 @@ msgstr "Hepgor"
msgid "Skip contact sharing and continue to the app"
msgstr "Hepgor rhannu cysylltiadau ac ymlaen i'r ap"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Hepgor postiadau gwag?"
@@ -10405,7 +10630,7 @@ msgstr "Hepgor y cyflwyniad a chychwyn defnyddio'ch cyfrif"
msgid "Skip to next step"
msgstr "Mynd i'r cam nesaf"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "sleid"
@@ -10413,7 +10638,7 @@ msgstr "sleid"
msgid "Smaller"
msgstr "Llai"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Yn tewi'r nodyn atgoffa"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "Gadawodd rhywun y grŵp"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Ymateb rhywun oedd {0}"
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr "Mae rhywun wedi'i dynnu o'r grŵp"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Doedd rhywbeth ddim yn hollol iawn gyda'r data rydych yn ceisio'i adrodd. Cysylltwch â'n cefnogaeth."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Aeth rhywbeth o'i le"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Aeth rhywbeth o'i le!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Aeth rhywbeth o'i le. Ceisiwch eto cyn bo hir."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Aeth rhywbeth o'i le. Ceisiwch eto."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Rhywbeth o'i le? Rhowch wybod i ni."
@@ -10568,7 +10798,7 @@ msgstr "Chwaraeon"
msgid "Start a conversation, and it will appear here."
msgstr "Dechreuwch sgwrs, a bydd yn ymddangos yma."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Cychwyn sgwrs newydd"
@@ -10582,17 +10812,17 @@ msgstr "Dechreuwch ychwanegu pobl"
msgid "Start adding people!"
msgstr "Dechreuwch ychwanegu pobl!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Cychwyn sgwrsio"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Dechreuwch sgwrs gyda {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Pecyn Cychwyn"
@@ -10654,12 +10884,12 @@ msgstr "Storfa wedi'i chlirio, mae angen i chi ailgychwyn yr ap nawr."
msgid "Stored as part of a secure code for matching with others"
msgstr "Wedi'i gadw fel rhan o god diogel ar gyfer cyfatebu ag eraill"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Llyfr stori"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 "Ffrydio ar Twitch? Gosodwch eich statws ar Bluesky i ychwanegu bathodyn i'ch afatar. Bydd ei dapio'n anfon pobl i'ch ffrwd."
@@ -10671,8 +10901,8 @@ msgstr "Ffrydio ar Twitch? Gosodwch eich statws ar Bluesky i ychwanegu bathodyn
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Cyflwyno"
@@ -10684,9 +10914,9 @@ msgstr "Cyflwyno apêl"
msgid "Submit Appeal"
msgstr "Cyflwyno Apêl"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Cyflwyno adroddiad"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Tanysgrifio"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Llwyddiant"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Llwyddiant!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Wedi'i ddilysu'n llwyddiannus"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Awgrymwyd"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Machlud Haul"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Cymorth"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Dyw cynnal y nodwedd hon heb ei alluogi yn eich gwald chi eto! Dewch 'nôl rhywbryd eto."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Newid cyfrif"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Newid cyfrifon"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Newid i {0}"
@@ -10828,7 +11062,7 @@ msgstr "Tagiau'n unig"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Tapiwch isod i ganiatáu i Bluesky gael mynediad i'ch lleolaid. Byddwn yn defnyddio'r data hwnnw i bennu'n fwy cywir y cynnwys a'r nodweddion sydd ar gael yn eich ardal chi."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr "Tapiwch i gydnabod eich bod yn deall ac yn cytuno i'r diweddariadau hyn
msgid "Tap to close context menu"
msgstr "Tapiwch i gau'r ddewislen cyd-destun"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Tapiwch i gau"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Tapio i dynnu"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "Tapio i dynnu eich {0} ymateb"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Tapio i geisio eto"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "Tapio i ddangos {0} ymateb"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Tapio i ddangos pob ymateb"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Tapio i weld ymatebion"
@@ -10924,7 +11176,7 @@ msgstr "Telerau"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Testun a thagiau"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Maes mewnbwn testun"
@@ -11049,6 +11301,11 @@ msgstr "Bydd y gosodiadau canlynol yn cael eu defnyddio fel eich rhagosodiadau w
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "Mae'r gyfraith yn eich ardal yn gofyn i chi ddilysu eich bod yn oedolyn er mwyn cael mynediad at rhai nodweddion. Tapiwch i ddarllen rhagor."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "Mae'r postiad rydych yn ateb iddo wedi ei farcio fel wedi ei ysgrifennu yn {suggestedLanguageName} gan ei awdur. Hoffech chi ateb yn <0>{suggestedLanguageName}0>?"
@@ -11057,9 +11314,9 @@ msgstr "Mae'r postiad rydych yn ateb iddo wedi ei farcio fel wedi ei ysgrifennu
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Mae'r Polisi Preifatrwydd wedi'i symud i <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "Does dim dolen gwahodd ar gyfer y grŵp sgwrsio hwn."
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "Roedd problem llwytho GIFau. Gwiriwch eich cysylltiad â cheisio eto."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "Roedd anhawster gyda'ch cysylltiad rhyngrwyd, ceisiwch eto"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "Roedd anhawster gyda'ch cysylltiad rhyngrwyd, ceisiwch eto"
msgid "There was an issue contacting the server"
msgstr "Bu anhawster wrth gysylltu â'r gweinydd"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Bu anhawster wrth gysylltu â'r gweinydd, gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Bu anhawster wrth geisio cael hysbysiadau. Tapiwch yma i geisio eto."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Bu anhawster wrth nôl postiadau. Tapiwch yma i geisio eto."
@@ -11161,7 +11420,7 @@ msgstr "Bu anhawster wrth nôl eich manylion gwasanaeth"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Bu anhawster wrth ddileu'r ffrwd hwn. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Bydd yr apêl hon yn cael ei hanfon at <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Bydd yr apêl hon yn cael ei hanfon at wasanaeth cymedroli Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Bydd yr apêl hon yn cael ei hanfon at wasanaeth cymedroli Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "Mae'r awdur hwn wedi dewis gwneud ei bostiadau'n weladwy ddim ond i bobl sydd wedi mewngofnodi."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "Mae'r botwm yma'n gadael i bobl eraill agor yr ap Germ DM i anfon neges atoch chi. Gallwch reoli ei welededd o'r ap Germ DM, neu ddatgysylltu eich cyfrif Bluesky o Germ DM yn llwyr drwy glicio'r botwm isod."
@@ -11271,7 +11530,12 @@ msgstr "Mae'r botwm yma'n gadael i bobl eraill agor yr ap Germ DM i anfon neges
msgid "This chat has ended"
msgstr "Mae'r sgwrs yma wedi gorffen"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "Mae'r sgwrs yma wedi'i chloi"
@@ -11310,7 +11574,11 @@ msgstr "Dyw'r cynnwys hwn ddim ar gael oherwydd bod un o'r defnyddwyr dan sylw w
msgid "This content is not viewable without a Bluesky account."
msgstr "Dyw'r cynnwys hwn ddim yn weladwy heb gyfrif Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Mae'r sgwrs hon gyda chyfrif sydd wedi'i ddileu neu wedi'i chau. Pwyswch
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:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Mae'r cyfeiriad e-bost hwn eisoes wedi'i gysylltu â'ch cyfrif."
@@ -11360,7 +11628,7 @@ msgstr "Dyw'r ffrwd hon ddim ar-lein bellach. Rydym yn dangos <0>Discover0> yn
msgid "This handle is reserved. Please try a different one."
msgstr "Mae'r handlen hon wedi'i chadw. Rhowch gynnig ar un arall."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "Doedd dim modd defnyddio'r ddelwedd hon. Rhowch gynnig ar fformar fel .jpg neu .png."
@@ -11368,6 +11636,18 @@ msgstr "Doedd dim modd defnyddio'r ddelwedd hon. Rhowch gynnig ar fformar fel .j
msgid "This information is private and not shared with other users."
msgstr "Mae'r wybodaeth yma'n breifat ac nid yw'n cael ei rannu gyda defnyddwyr eraill."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "Mae hyn yn gyflwr gwag"
@@ -11377,7 +11657,7 @@ msgstr "Mae hyn yn gyflwr gwag"
msgid "This is not a valid link"
msgstr "Dyw hon ddim yn ddolen ddilys"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "Mae'r label yma'n gadael i'r byd wybod fod y cyfrif yma'n un awtomatedig. Os wedi'i droi ymlaen, bydd y label hwn yn ymddangos nesaf at enw'r cyfrif hwn ar eu proffil a phostiadau. Mae modd ei droi ymlaen neu i ffwrdd ar unrhyw adeg."
@@ -11410,13 +11690,13 @@ msgstr "Mae'r rhestr hon - a grëwyd gennych chi - yn cynnwys achosion posibl o
msgid "This list is empty."
msgstr "Mae'r rhestr hon yn wag."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,7 @@ msgstr "Cafodd y postiad hwn ei ddileu gan yr awdur"
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. Does dim modd dadwneud hyn."
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Mae awdur y postiad hwn wedi analluogi postiadau dyfyniadau."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Bydd yr ateb hwn yn cael ei drefnu mewn adran gudd ar waelod eich edefyn a bydd yn tewi hysbysiadau ar gyfer atebion dilynol - i chi'ch hun ac i eraill."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "Dim ond ar gyfer sgyrsiau grŵp mae'r sgrin hon ar gael."
@@ -11494,7 +11775,7 @@ msgstr "Does gan y defnyddiwr hwn ddim enw dangos, ac felly does dim modd ei ddi
msgid "This user doesn't have any followers."
msgstr "Does gan y defnyddiwr hwn ddim dilynwyr."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Mae'r defnyddiwr hwn wedi eich rhwystro. Does dim modd i chi weld eu cynnwys."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Dewisiadau Edafedd"
msgid "Threaded"
msgstr "Edafwyd"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Dewisiadau Edafedd"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "I analluogi'r dull e-bost 2FA, dilyswch eich mynediad i'r cyfeiriad e-bost."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "I analluogi eich dull 2FA e-bost, dilyswch eich mynediad i <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Brig"
msgid "Top replies first"
msgstr "Prif atebion yn gyntaf"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Pwnc"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Fideos yn Trendio"
msgid "Trolling"
msgstr "Trolio"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "Mae ymddiriedaeth yn deillio o berthnasoedd, cymunedau, a chyd-destun sy'n cael eu rhannu, felly rydym hefyd yn galluogi <0>dilyswyr dibynadwy0>: sefydliadau sy'n gallu cyhoeddi dilysiad yn uniongyrchol."
@@ -11763,13 +12044,17 @@ msgstr "Methu cysylltu â'ch gwasanaeth. Gwiriwch eich cysylltiad rhyngrwyd."
msgid "Unable to delete"
msgstr "Methu dileu"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
-msgstr ""
+msgstr "Methu canfod y derbynnydd rwyf wedi ei ddewis."
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
@@ -11791,7 +12076,7 @@ msgstr "Dim ar gael"
msgid "Unavailable feed information"
msgstr "Manylion ffrwd anhysbys"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Rhestr ddadrwystro"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Dadwneud"
@@ -11872,7 +12157,7 @@ msgstr "Dad-ddilyn y cyfrif"
msgid "Unfollows the user"
msgstr "Dad-ddilyn defnyddiwr"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Yn anffodus, nid yw un o'ch labelwyr wedi'u tanysgrifio'n cefnogi'r math yma o adroddiad."
@@ -11904,13 +12189,13 @@ msgstr "Cynnwys oedolion heb eu labeli"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Cynnwys oedolion heb gydsyniad neu fygythiol, heb ei labelu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Dad-hoffi ({0, plural, one {# yn hoffi} other {# yn hoffi}})"
@@ -11918,7 +12203,7 @@ msgstr "Dad-hoffi ({0, plural, one {# yn hoffi} other {# yn hoffi}})"
msgid "Unlock chat"
msgstr "Datgloi sgwrs"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr "Datgloi'r grŵp sgwrsio yma"
@@ -11955,7 +12240,7 @@ msgstr "Dad-dewi sgwrs"
msgid "Unmute list"
msgstr "Dad-dewi rhestr"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "Dad-dewi'r grŵp sgwrsio hwn"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Dad-binio"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Dad-binio ffrwd"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Dad-bioio o'r cartref"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Dad-binio'r rhestr cymedroli"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "Wedi'i ddad-binio {0} o'r Cartref"
@@ -12030,11 +12315,11 @@ msgstr "Dad-danysgrifio o'r labelwr hwn"
msgid "Unsubscribed from list"
msgstr "Wedi dad-danysgrifio o'r rhestr"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "Cynnwys clipfwrdd heb ei cefnogi"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Math o fideo sydd ddim yn cael ei gynnal: {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "Diweddaru"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Diweddaru <0>{displayName}0> yn y Rhestrau"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Diweddaru e-bost"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Diweddaru dolen gwahodd"
@@ -12065,11 +12354,19 @@ msgstr "Diweddaru dolen gwahodd"
msgid "Update to {domain}"
msgstr "Diweddaru i {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "Diweddarwch eich ap i'r fersiwn diweddaraf er mwyn ymuno!"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Diweddaru eich e-bost"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Wedi methu diweddaru gwelededd ateb"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Llwytho lun i fyny yn lle hynny"
@@ -12098,39 +12395,40 @@ msgstr "Llwytho lun i fyny yn lle hynny"
msgid "Upload a text file to:"
msgstr "Llwytho ffeil testun i fyny i:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Llwytho i fyny o'r Camera"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Llwytho i fyny o'r Ffeiliau"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Llwytho i fyny o'r Llyfrgell"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "Yn llwytho'r GIF..."
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Wrthi'n lwytho lluniau i fyny..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Wrthi'n lwytho dolen llun bach i fyny..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Wrthi'n llwytho fideo i fyny..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "defnyddiwr"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Rhwystro defnyddiwr"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Rhestr defnyddwyr gan {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "Rhestr defnyddwyr gan {0}"
@@ -12255,12 +12553,12 @@ msgstr "defnyddwyr yn cael eu dilyn gan <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "defnyddwyr yn dilyn <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Defnyddwyr rwy'n eu dilyn"
@@ -12277,7 +12575,7 @@ msgstr "Methodd y dilysu, ceisiwch eto."
msgid "Verification settings"
msgstr "Gosodiadau dilysu"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Gosodiadau Dilysu"
@@ -12304,8 +12602,8 @@ msgstr "Dilysu eto"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Dilysu cod"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Dilysu Cofnod DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Dilysu'r cod e-bost"
@@ -12349,7 +12647,7 @@ msgstr "Dilysu'r cyfrif hwn?"
msgid "Verify your age"
msgstr "Dilyswch eich oed"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Fersiwn {0}"
msgid "Video"
msgstr "Fideo"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Methodd y fideo â phrosesu"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Ffrwd Fideo"
@@ -12419,7 +12717,7 @@ msgstr "Fideo heb ei ganfod."
msgid "Video settings"
msgstr "Gosodiadau fideo"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Fideo wedi'i lwytho i fyny"
@@ -12432,18 +12730,18 @@ msgstr "Fideo: {0}"
msgid "Videos"
msgstr "Fideos"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
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:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Edrych"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Gweld afatar {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Gweld proffil {0}"
msgid "View {0}’s profile"
msgstr "Gweld proffil {0}"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "Gweld proffil {displayName}"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Manylion"
msgid "View full thread"
msgstr "Gweld yr edefyn llawn"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr "Gweld ceisiadau sgwrsio newydd"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Gweld gwybodaeth am y labeli hyn"
@@ -12522,7 +12828,7 @@ msgstr "Gweld mwy"
msgid "View more trending videos"
msgstr "Edrychwch ar ragor o fideos sy'n trendio"
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Edrych ar y postiad"
@@ -12539,10 +12845,10 @@ msgstr "Gweld proffil"
msgid "View profile banner"
msgstr "Gweld baner proffil"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Gweld yr afatar"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "Gweld y ddolen gwahodd ar gyfer y grŵp sgwrsio hwn"
@@ -12563,7 +12869,7 @@ msgstr "Gweld y gwasanaeth labelu sy'n cael ei ddarparu gan @{0}"
msgid "View this user's verifications"
msgstr "Gweld dilysiadau'r defnyddiwr hwn"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Gweld defnyddwyr sy'n hoffi'r ffrwd hon"
@@ -12596,8 +12902,8 @@ msgstr "Gweld eich cyfrifon wedi tewi"
msgid "View your verifications"
msgstr "Gweld eich dilysiadau"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Yn gweld delwedd lawn"
@@ -12640,8 +12946,8 @@ msgstr "Rhybudd cynnwys"
msgid "Warn content and filter from feeds"
msgstr "Rhybudd cynnwys a hidlydd o ffrydiau"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Gwyliwch nawr"
@@ -12665,10 +12971,14 @@ msgstr "Methu canfod unrhyw ganlyniad ar gyfer y tag hwnnw."
msgid "We couldn't find any results for that topic."
msgstr "Methu ddod o hyd i ganlyniadau'r pwnc hwnnw."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Methu lwytho'r sgwrs hon"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "Wedi methu lwytho gosodiadau'r sgwrs hon"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Rydym yn argymell dewis o leiaf ddau ddiddordeb."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Anfonwyd e-bost at <0>{0}0> sy'n cynnwys dolen. Cliciwch arno i gwblhau'r broses dilysu e-bost."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Doedden ni ddim yn gallu penderfynu a ydych yn cael llwytho fideos i fyny. Ceisiwch eto."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "Byddwn yn gadael i chi wybod pan fyddwn yn dod o hyd i'ch ffrindiau."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Byddwn yn anfon e-bost at <0>{0}0> sy'n cynnwys dolen. Cliciwch arno i gwblhau'r broses dilysu e-bost."
@@ -12779,12 +13089,12 @@ msgstr "Rydym yn cael anawsterau cychwyn y broses sicrhau oed ar gyfer eich cyfr
msgid "We're having network issues, try again"
msgstr "Rydym yn cael problemau rhwydwaith, ceisiwch eto"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "Rydym yn cael anawsterau rhwydwaith, ceisiwch eto"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Rydyn ni'n cyflwyno haen newydd o ddilysu ar Bluesky - marc gwirio hawdd ei weld."
@@ -12814,12 +13124,12 @@ msgstr "Ymddiheuriadau, ond doedd dim modd cwblhau eich chwilio. Ceisiwch eto ym
msgid "We're sorry, you cannot access this screen at this time."
msgstr "Ymddiheuriadau, does dim modd i chi fynd at y sgrin hon ar hyn o bryd."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ 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.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Beth sy'n digwydd?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Pan fyddwch chi'n tapio ar dic, gallwch weld pa sefydliadau sydd wedi rhoi dilysiad."
@@ -12878,7 +13188,7 @@ msgstr "Pan fyddwch chi'n tapio ar dic, gallwch weld pa sefydliadau sydd wedi rh
msgid "Who can interact with this post?"
msgstr "Pwy all ryngweithio â'r postiad hwn?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "Pwy sy'n gallu ymuno â'r grŵp hwn a sut"
@@ -12887,13 +13197,13 @@ msgstr "Pwy sy'n gallu ymuno â'r grŵp hwn a sut"
msgid "Who can reply"
msgstr "Pwy all ateb"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Pwy sy'n gallu dilysu?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Wps!"
@@ -12939,7 +13249,7 @@ msgstr "Pam dylai'r pecyn cychwyn hwn gael ei adolygu?"
msgid "Why should this user be reviewed?"
msgstr "Pam dylai'r defnyddiwr hwn gael ei adolygu?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
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?"
@@ -12951,7 +13261,7 @@ msgstr ""
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:1320
+#: src/view/com/composer/Composer.tsx:1373
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?"
@@ -12960,12 +13270,12 @@ msgstr "Hoffech chi gadw hwn fel drafft i'w olygu'n nes ymlaen?"
msgid "Write a post"
msgstr "Ysgrifennu postiad"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Ysgrifennwch bostiad"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Ysgrifennwch eich ateb"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "DID anghywir wedi'i ddychwelyd o'r gweinydd. Derbyniwyd: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "Y math anghywir o sgwrs"
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "Rydych yn cael mynediad at Bluesky mewn ardal sydd â gofyniad cyfreithiol i ni wirio eich oed cyn caniatáu i chi gael mynediad at yr ap."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr "Rydych chi'n Fyw"
msgid "You are no longer live"
msgstr "Dydych chi ddim yn fyw mwyach"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Does dim caniatâd i chi lwytho fideos i fyny."
@@ -13117,12 +13428,12 @@ msgstr "Gallwch beidio â bod yn rhan o hyn a dileu eich data"
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Gallwch ddewis os oes gan hysbysiadau sgyrsiau sain yn y gosodiadau sgwrsio o fewn yr ap"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Gallwch barhau â sgyrsiau parhaus beth bynnag yw'r gosodiad rydych chi'n ei ddewis."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Gallwch nawr ddewis i gael gwybod pan fydd pobl benodol yn postio. Os oes 'na bobl rydych eisiau chi derbyn diweddariadau amserol ganddyn nhw, ewch i'w proffil a chwilio am yr eicon cloch wrth eu botwm dilyn."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "Dim ond 1000 nod y mae modd eu cadw mewn drafft."
@@ -13139,11 +13455,11 @@ msgstr "Dim ond 1000 nod y mae modd eu cadw mewn drafft."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "Dim ond 1000 nod y mae modd eu cadw mewn drafft. Hoffech chi ddileu'r postiad hwn cyn edrych ar eich drafftiau?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
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:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Dim ond un fideo ar y tro mai modd ei ddewis."
@@ -13155,10 +13471,10 @@ msgstr "Gallwch ailagor eich cyfrif i barhau i fewngofnodi. Bydd defnyddwyr erai
msgid "You can read chat history but can’t send new messages."
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: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."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr ""
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,9 +13482,9 @@ msgstr "Gallwch ddewis hyd at {MAX_IMAGES, plural, other {# delwedd}} i gyd."
msgid "You can update this later from your settings."
msgstr "Gallwch ddiweddaru hwn yn ddiweddarach o'ch gosodiadau."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
-msgstr ""
+msgstr "Does dim modd i chi greu sgwrs grŵp eto."
#: src/lib/hooks/useCleanError.ts:54
#: src/lib/strings/errors.ts:28
@@ -13197,6 +13513,10 @@ msgstr "Nid oes gennych unrhyw ffrydiau wedi'u cadw."
msgid "You got here first"
msgstr "Chi sydd wedi cyrraedd yma gyntaf"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
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?"
@@ -13336,7 +13656,7 @@ msgstr "Rhaid i chi fod yn dilyn o leiaf saith o bobl eraill i gynhyrchu pecyn c
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "Rhaid i chi ganiatáu mynediad i'ch llyfrgell cyfryngau."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Mae'n debyg eich bod chi eisiau ailgychwyn yr ap nawr."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Eich ymateb yw {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "Rydych wedi newid eich dyddiad geni'n ddiweddar"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Byddwch yn cael eich allgofnodi o'ch holl gyfrifon."
@@ -13390,7 +13710,7 @@ msgstr "Byddwch nawr yn derbyn hysbysiadau ar gyfer yr edefyn hwn"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Byddwch yn derbyn e-bost gyda \"cod ailosod.\" Rhowch y cod hwnnw yma, yna rhowch eich cyfrinair newydd."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "Bydd dim modd ichi ail ymuno oni bai i chi gael eich gwahodd."
@@ -13463,7 +13783,7 @@ msgstr "Rydych wedi dod i ddiwedd y cynnwys gweithredol."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Rydych wedi cyrraedd diwedd eich ffrwd! Dewch o hyd i ragor o gyfrifon i'w dilyn."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "Rydych wedi cyrraedd uchafswm y nifer o ddrafftiau"
@@ -13475,11 +13795,11 @@ msgstr "Rydych chi wedi cyrraedd y nifer uchaf o geisiadau sy'n cael eu caniatá
msgid "You've reached the start of the active content."
msgstr "Rydych wedi dod i ddechrau'r cynnwys gweithredol."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Rydych wedi cyrraedd terfyn dyddiol llwytho fideos i fyny (gormod o feitiau)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr "Mae eich cyfrif wedi'i ddileu, hwyl! ✌️"
msgid "Your account has been suspended"
msgstr "Mae eich cyfrif wedi'i atal"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Nid yw eich cyfrif yn ddigon hen eto i lwytho fideos i fyny. Ceisiwch eto yn nes ymlaen."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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\". 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."
@@ -13519,7 +13847,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Mae eich sgyrsiau wedi'u hanalluogi"
@@ -13561,7 +13889,7 @@ msgstr "Eich e-bost"
msgid "Your email appears to be invalid."
msgstr "Mae'n ymddangos bod eich e-bost yn annilys."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Dyw eich e-bost heb ei ddilysu eto. Dilyswch eich e-bost er mwyn mwynhau holl nodweddion Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "Mae'r ffrwd ganlynol yn wag! Dilynwch ragor ddefnyddwyr i weld beth sy'n
msgid "Your full handle will be <0>@{0}0>"
msgstr "Eich enw dangos llawn fydd <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "Mae eich lleoliad wedi'i ddiweddaru."
msgid "Your muted words"
msgstr "Eich geiriau wedi'u tewi"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "Bydd eich enw, afatar ac enw'r grŵp sgwrsio yn weladwy i bawb."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "Mae eich postiad wedi'i anfon"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "Mae eich postiadau wedi'u hanfon"
@@ -13635,7 +13963,7 @@ msgstr "Mae eich postiadau wedi'u hanfon"
msgid "Your preferred language"
msgstr "Eich dewis iaith"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "Eich llun proffil"
@@ -13648,12 +13976,12 @@ msgstr "Eich llun proffil wedi ei amgylchynu gan gylchoedd consentrig o luniau p
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Mae eich ateb wedi'i anfon"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Bydd eich adroddiad yn cael ei anfon at <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "Bydd eich adroddiad yn cael ei anfon at <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Mae'r diddordebau rydych wedi'u dewis yn ein helpu i ddarparu cynnwys sy'n bwysig i chi."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "Mae gan eich ffrwd bostiadau gwag fydd yn cael eu hepgor. Bydd y postiadau sy'n weddill yn cael eu cyhoeddi fel ffrwd."
diff --git a/src/locale/locales/da/messages.po b/src/locale/locales/da/messages.po
index fef879af13..ba06bf6b48 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minut} other {# minutter}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# måned} other {# måneder}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr "{0, plural, one {# ny anmodning om deltagelse} other {# nye anmodninger om deltagelse}}"
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, one {# person} other {# personer}} reagerede – {1}"
@@ -109,17 +114,17 @@ msgstr "{0, plural, one {# sekund} other {# sekunder}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# ulæst besked} other {# ulæste beskeder}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
-msgstr ""
+msgstr "{0, plural, one {#m} other {#m}}"
#. How many months have passed, displayed in a narrow form
#. placeholder {0}: diff.value
@@ -206,9 +211,9 @@ msgid "{0} following"
msgstr "{0} følger"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
-msgstr ""
+msgstr "{0} blokerer dig"
#. placeholder {0}: sanitizeHandle(profile.handle)
#: src/features/liveNow/components/LiveStatusDialog.tsx:84
@@ -264,7 +269,7 @@ msgstr "{0} ud af 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} reagerede med {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, en liste af {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "{0}s profilbillede"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "{0}s profilbillede"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr "{count, plural, one {# chatopdatering} other {# chatopdateringer}}"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, one {# anmodning} other {# anmodninger}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# ulæst besked} other {# ulæste beskeder}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "{count}+"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "{count}+ anmodninger"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} verificerede dig"
msgid "{following} following"
msgstr "{following} følger"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "{handle} kan ikke tilføjes"
@@ -547,7 +599,7 @@ msgstr "{handle} kan ikke tilføjes"
msgid "{handle} can't be messaged"
msgstr "{handle} kan ikke modtage beskeder"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "{handle} kan ikke modtage beskeder"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# time {minutesString}} other {# timer {minutesStri
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# time} other {# timer}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,9 +643,9 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, other {Du kan skjule højst # svar.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
-msgstr ""
+msgstr "{memberCount}/{memberLimit}"
#: src/features/liveNow/utils.ts:10
msgid "{minutes, plural, one {# minute} other {# minutes}}"
@@ -607,7 +669,7 @@ msgstr "{name}s foretrukne feeds and brugere – kom og vær med!"
msgid "{name}'s starter pack"
msgstr "{name}s startpakke"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# ulæst besked} other {# ulæste beskeder}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, one {# anmodning} other {# anmodninger}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "{requestCount}+ anmodninger"
@@ -747,7 +809,7 @@ msgstr "<0>Log ind0><1> eller 1><2>opret en konto2><3> 3><4>for at søge
#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:276
msgid "<0>Tap here to update your location with GPS.0>"
-msgstr ""
+msgstr "<0>Tryk her for at opdatere din lokalitet med GPS.0>"
#. placeholder {0}: getName(items[1] /* [0] is self, skip it */)
#: src/screens/StarterPack/Wizard/index.tsx:494
@@ -795,8 +857,11 @@ msgstr "Der opstod en netværksfejl. Tjek din internetforbindelse"
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Der opstod en netværksfejl. Tjek din internetforbindelse."
@@ -804,7 +869,7 @@ msgstr "Der opstod en netværksfejl. Tjek din internetforbindelse."
msgid "A new code has been sent"
msgstr "En ny kode blev sendt"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "En ny form for verifikation"
@@ -827,11 +892,11 @@ msgstr "Et screenshot af en profilside med et klokkeikon ved siden af Følg-knap
msgid "A screenshot of 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 "Et screenshot af skrivefeltet til opslag med en ny knap ved siden af “Slå op” med teksten “Kladder” men fyrværkerieffekt. I selve skrivefeltet er der indtastet “Hej, har du hørt det seneste nye? Bluesky understøtter nu kladder!”"
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
-msgstr ""
+msgstr "En valgt modtager følges ikke af afsenderen."
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Grov eller diskriminerende adfærd"
msgid "Accept"
msgstr "Accepter"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Accepter"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Accepter chatanmodning"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Accepter anmodning"
@@ -860,17 +935,26 @@ msgstr "Accepter anmodning"
msgid "Accept this language suggestion"
msgstr "Accepter foreslået sprog"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr "Accepterede samtaler"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Tilgængelighed"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Tilgængelighedsindstillinger"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Konto skjules ikke længere"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Konti med et amøbeformet blåt flueben <0><1/>0> kan verificere andre. De autoriserede verifikatorer er udvalgt af Bluesky."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Aktivitet fra andre"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Aktivitetsnotifikationer"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Tilføj"
@@ -999,8 +1079,8 @@ msgstr "Tilføj konto"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Tilføj alt-tekst (valgfrit)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Tilføj endnu en konto"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Tilføj endnu et opslag"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Tilføj endnu et opslag til tråd"
@@ -1035,7 +1115,7 @@ msgstr "Tilføj appadgangskode"
msgid "Add App Password"
msgstr "Tilføj appadgangskode"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "Tilføj botmærkat til konto"
@@ -1043,7 +1123,7 @@ msgstr "Tilføj botmærkat til konto"
msgid "Add emoji reaction"
msgstr "Tilføj emojireaktion"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Tilføj gruppechatmedlemmer"
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Føj medier til opslag"
@@ -1062,8 +1142,8 @@ msgstr "Føj medier til opslag"
msgid "Add members"
msgstr "Tilføj deltagere"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Tilføj yderligere oplysninger (valgfrit)"
@@ -1080,8 +1160,8 @@ msgstr "Tilføj skjult ord med de angivne indstillinger"
msgid "Add muted words and tags"
msgstr "Tilføj skjulte ord og tags"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "Tilføj medlemmer til liste ..."
msgid "Additional details (limit 1000 characters)"
msgstr "Yderligere oplysninger (maks. 1000 tegn)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Yderligere oplysninger (højst 300 tegn)"
@@ -1228,12 +1308,12 @@ msgstr "Anmodning om alderstjek"
msgid "Age assurance only takes a few minutes"
msgstr "Alderstjek tager kun et øjeblik"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "mette@eksempel.dk"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Alle"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "Alle {0}"
@@ -1278,13 +1358,13 @@ msgstr "Tillad adgang til dine direkte beskeder"
msgid "Allow anyone to reply"
msgstr "Tillad svar fra svar"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "Tillad direkte beskeder fra"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr "Tillad gruppechatinvitationer fra"
@@ -1338,12 +1418,12 @@ msgstr "Har du allerede en konto?"
msgid "Already signed in as @{0}"
msgstr "Allerede logget ind som @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Alt-tekst"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alt-tekst beskriver billeder for blinde og svagtseende brugere og bidrager med kontekst til glæde for alle."
@@ -1387,7 +1467,7 @@ msgstr "Der opstod en fejl"
msgid "An error occurred"
msgstr "Der opstod en fejl"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Der opstod en fejl under komprimering af videoen."
@@ -1432,11 +1512,11 @@ msgstr "Der opstod en fejl under lagring af QR-koden!"
msgid "An error occurred while trying to follow all"
msgstr "Der opstod en fejl, da du forsøgte at følge alle"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "Der opstod en fejl under upload af videoen. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "Der opstod en fejl under upload af videoen. Tjek din internetforbindelse og prøv igen."
@@ -1461,19 +1541,19 @@ msgstr "En illustration af adskillige Bluesky-opslag sammen med ikoner for vider
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Illustration som viser, hvordan Bluesky udvælger autoriserede verifikatorer, som herefter verificerer enkelte brugerkonti."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "En anden årsag, der ikke er omfattet af ovennævnte"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
-msgstr ""
+msgstr "Der opstod en fejl ved oprettelse af gruppechat, prøv igen."
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Der opstod en fejl ved åbning af chatten"
msgid "An issue occurred, please try again."
msgstr "Der opstod en fejl. Prøv igen."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Et mockup af en iPhone, der viser Bluesky-appen åbnet på profilen for en verificeret bruger med et blåt flueben ved siden af profilnavnet."
@@ -1539,13 +1619,17 @@ msgstr "Alle"
msgid "Anyone can interact"
msgstr "Alle kan interagere"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
-msgid "Anyone can join instantly"
-msgstr "Alle kan melde sig ind direkte"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
+#: src/screens/Messages/components/InviteLinkDialog.tsx:143
+msgid "Anyone can join instantly"
+msgstr "Alle kan melde sig ind med det samme"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "Alle kan anmode om at blive medlem"
@@ -1553,13 +1637,13 @@ msgstr "Alle kan anmode om at blive medlem"
#: src/screens/Settings/ActivityPrivacySettings.tsx:117
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163
msgid "Anyone who follows me"
-msgstr "Alle, som følger mig"
+msgstr "Alle som følger mig"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Navne på appadgangskoder skal bestå af mindst 4 tegn"
msgid "App passwords"
msgstr "Appadgangskoder"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Appadgangskoder"
@@ -1618,7 +1702,7 @@ msgstr "Klag over livestreamblokering"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Klage afsendt"
@@ -1632,14 +1716,14 @@ msgstr "Klag over suspendering"
msgid "Appeal Suspension"
msgstr "Klag over suspendering"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Klag over afgørelse"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "Er du helt, helt sikker?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Er du sikker på, du vil slette appadgangskoden \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Er du sikker på, du vil slette denne besked? Beskeden vil blive slettet hos dig men ikke hos de andre deltagere."
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "Er du sikker på, du vil forlade {groupName}?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
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: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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Er du sikker på, du vil kassere dette opslag?"
@@ -1752,7 +1836,7 @@ msgstr "Botkonto"
msgid "Automation label"
msgstr "Botmærkat"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "Botmærkat"
@@ -1767,12 +1851,12 @@ msgstr "Afspil videoer og GIF'er automatisk"
msgid "Available"
msgstr "Tilgængelig"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Tilgængelig"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Tilgængelig"
msgid "Back"
msgstr "Tilbage"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Tilbage til Chats"
@@ -1840,12 +1926,12 @@ msgstr "Før du kan acceptere denne chatanmodning, skal du først bekræfte din
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Før du kan modtage notifikationer om opslag fra {name}, skal du først bekræfte din e-mail."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Før du kan sende beskeder til andre brugere, skal du bekræfte din e-mail."
@@ -1877,7 +1963,7 @@ msgstr "Fødselsdato"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "Bloker {displayName}"
msgid "Block account"
msgstr "Bloker konto"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Bloker konto?"
@@ -1912,15 +1998,15 @@ msgstr "Bloker konto?"
msgid "Block accounts"
msgstr "Bloker konti"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
-msgstr ""
+msgstr "Bloker og slet"
#. After-report action for a conversation
#: src/components/dms/AfterReportConversationDialog.tsx:167
msgctxt "button"
msgid "Block and leave"
-msgstr ""
+msgstr "Bloker og forlad"
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
msgid "Block list"
@@ -1936,9 +2022,9 @@ msgstr "Bloker disse konti?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Bloker bruger"
@@ -1946,17 +2032,17 @@ msgstr "Bloker bruger"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Bloker bruger"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Bloker bruger og/eller slet denne samtale"
#: src/components/dms/AfterReportConversationDialog.tsx:217
msgid "Block user and/or leave this conversation"
-msgstr ""
+msgstr "Bloker bruger og/eller forlad denne samtale"
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Blokeret"
@@ -1964,13 +2050,13 @@ msgstr "Blokeret"
msgid "Blocked accounts"
msgstr "Blokerede konti"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Blokerede konti"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blokerede konti kan ikke svare i dine tråde, omtale dig eller på anden måde interagere med dig."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky virker bedre med venner!"
msgid "Bluesky is more fun with friends"
msgstr "Bluesky er sjovere med venner"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Bluesky er sjovere med venner! Importer dine kontakter for at se, hvem der allerede er her."
@@ -2053,7 +2139,7 @@ msgstr "Bluesky vil vælge et antal anbefalede konti fra personer i dit netværk
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 "Bluesky vil ikke vise din profil og dine opslag til udloggede brugere."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky vil løbende verificere populære konti."
@@ -2137,26 +2223,33 @@ msgstr "Om Bluesky"
msgid "Button to go back to the home timeline"
msgstr "Knap, der går til din hjemmetidslinje"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Af {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Af <0>{0}0>"
-#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
-msgid "by <0>@{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
msgstr ""
+#. placeholder {0}: authorProfile.handle
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
+msgid "by <0>@{0}0>"
+msgstr "af <0>@{0}0>"
+
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182
msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates."
msgstr "Ved at klikke \"Fortsæt\" bekræfter du, at du har forstået og accepterer disse ændringer."
@@ -2181,7 +2274,7 @@ msgstr "Ved at oprette en konto accepterer du <0>tjenestevilkårene0>."
msgid "By you"
msgstr "Af dig"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Kamera"
@@ -2192,8 +2285,8 @@ msgstr "Kamera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Kamera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Annuller"
@@ -2248,9 +2341,9 @@ msgstr "Annuller genaktivering og log ud"
msgid "Cancel search"
msgstr "Annuller søgning"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Kan ikke interagere med en blokeret bruger"
@@ -2264,7 +2357,7 @@ msgstr "Undertekster (.vtt)"
msgid "Captions & alt text"
msgstr "Undertekster og alt-tekst"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "karrusel"
@@ -2297,7 +2390,7 @@ msgstr "Vælg appsprog"
msgid "Change Handle"
msgstr "Skift handle"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Skift moderationstjeneste"
@@ -2310,11 +2403,11 @@ msgstr "Skift adgangskode"
msgid "Change password dialog"
msgstr "Skift adgangskode-dialog"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Skift anmeldelseskategori"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Skift årsag til anmeldelse"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Ændringer til startpakken vil ikke blive afspejlet i listen efter oprettelse. Listen vil blive en separat kopi."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Chat"
@@ -2361,6 +2454,13 @@ msgstr "Chat slettet"
msgid "Chat ended"
msgstr "Chat afsluttet"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "Chat låst"
@@ -2378,41 +2478,41 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Chat skjult"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
-msgstr ""
+msgstr "Chatmodtager følges ikke af afsenderen."
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Indbakke for chatanmodninger"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Chatanmodninger"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Chatindstillinger"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Chatindstillinger"
#: src/components/dms/getSystemMessageInfo.ts:115
msgid "Chat title changed"
-msgstr ""
+msgstr "Chats titel ændret"
#. placeholder {0}: data.newName
#: src/components/dms/getSystemMessageInfo.ts:114
msgid "Chat title changed to {0}"
-msgstr ""
+msgstr "Chats titel ændret til {0}"
#: src/components/dms/getSystemMessageInfo.ts:106
msgid "Chat unlocked"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Chat ikke længere skjult"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Chats"
@@ -2479,7 +2579,7 @@ msgstr "Vælg sprog for opslag"
msgid "Choose this color as your avatar"
msgstr "Vælg farve til din avatar"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "Vælg, hvem der kan blive medlem af denne gruppechat, og hvordan."
@@ -2533,7 +2633,7 @@ msgstr "Klik for information"
msgid "click here"
msgstr "klik her"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "Klik her for at føje personer til denne gruppechat"
@@ -2541,7 +2641,7 @@ msgstr "Klik her for at føje personer til denne gruppechat"
msgid "Click here to contact our support team"
msgstr "Klik her for at kontakte vores supportteam"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "Klik her for at oprette eller redigere et invitationslink for denne gruppechat"
@@ -2558,7 +2658,7 @@ msgstr "Klik her for at logge ud"
msgid "Click here to resend the email"
msgstr "Klik her for at gensende e-mailen"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Klik her for at starte bekræftelsesprocessen forfra."
@@ -2567,20 +2667,20 @@ msgstr "Klik her for at starte bekræftelsesprocessen forfra."
msgid "Click here to update your birthdate"
msgstr "Klik her for at opdatere din fødselsdato"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Klik her for at opdatere din e-mail"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
-msgstr ""
+msgstr "Klik her for at se invitationslinket for denne gruppechat"
#. placeholder {0}: isCashtag ? tag : `#${tag}`
#: src/components/RichTextTag.tsx:56
msgid "Click to open tag menu for {0}"
msgstr "Klik for at åbne tagmenuen for {0}"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Klik for at prøve at sende beskeden igen"
@@ -2594,28 +2694,30 @@ msgstr "Klik for at prøve at sende beskeden igen"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Klik for at prøve at sende beskeden igen"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Luk aktiv dialog"
msgid "Close alert"
msgstr "Luk advarsel"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Luk bundpanel"
@@ -2657,8 +2763,9 @@ msgstr "Luk bundpanel"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Luk dialog"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Luk billede"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Luk billedviser"
@@ -2683,6 +2790,14 @@ msgstr "Luk billedviser"
msgid "Close menu"
msgstr "Luk menu"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Luk dialog"
@@ -2695,7 +2810,7 @@ msgstr "Luk velkomstdialog"
msgid "Closes password update alert"
msgstr "Lukker besked om opdatering af adganskode"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Lukker skrivefelt og kasserer udkast til opslag"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Tegneserier"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Fælleskabsregler"
@@ -2740,12 +2855,12 @@ msgstr "Løs opgaven"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Skriv nyt opslag"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Skriv opslag på op til {0, plural, one {}other {# tegn}}"
@@ -2753,11 +2868,11 @@ msgstr "Skriv opslag på op til {0, plural, one {}other {# tegn}}"
msgid "Compose reply"
msgstr "Skriv svar"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "Komprimerer GIF ..."
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Komprimerer video..."
@@ -2780,7 +2895,7 @@ msgstr "Konfigureres i <0>moderationsindstillinger0>"
msgid "Confirm"
msgstr "Bekræft"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Indhold og medier"
msgid "Content and media"
msgstr "Indhold og medier"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Indhold og medier"
@@ -2889,7 +3004,7 @@ msgstr "Baggrund for kontekstmenu, klik for at lukke menuen."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Fortsæt tråd"
msgid "Continue thread..."
msgstr "Fortsæt tråd..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Fortsæt til gruppenavn"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Fortsæt til næste trin"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Samtale"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Samtale slettet"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Samtale slettet"
@@ -2939,13 +3054,20 @@ msgstr "Samtale slettet"
#: src/components/dms/AfterReportConversationDialog.tsx:179
msgctxt "toast"
msgid "Conversation left"
+msgstr "Samtale forladt"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
msgstr ""
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Kopieret versionsnummer til udklipsholder"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Kopier DID"
msgid "Copy host"
msgstr "Kopier værtsnavn"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Kopier link til profil"
msgid "Copy link to starter pack"
msgstr "Kopier link til startpakke"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Kopier beskedtekst"
@@ -3052,7 +3175,7 @@ msgstr "Kopier TXT-record"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Ophavsretspolitik"
@@ -3065,7 +3188,7 @@ msgstr "Kunne ikke forbinde til tilpasset feed"
msgid "Could not connect to feed service"
msgstr "Kunne ikke forbinde til feedtjeneste"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr "Kunne ikke hente opslag"
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Kunne ikke følge alle fundne venner. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Kunne ikke forlade chat"
@@ -3094,6 +3217,10 @@ msgstr "Kunne ikke forlade chat"
msgid "Could not load feed"
msgstr "Kunne ikke indlæse feed"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Landekode"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Opret"
@@ -3159,7 +3286,7 @@ msgstr "Opret en QR-kode til en startpakke"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Opret en startpakke"
@@ -3174,13 +3301,14 @@ msgstr "Opret en startpakke for mig"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Opret en konto"
msgid "Create an account without using this starter pack"
msgstr "Opret en konto uden at bruge denne startpakke"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Opret en avatar i stedet"
@@ -3206,7 +3334,7 @@ msgstr "Opret en avatar i stedet"
msgid "Create another"
msgstr "Opret endnu en"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Opret gruppechat"
@@ -3228,19 +3356,20 @@ msgstr "Opret liste ud fra startpakke"
msgid "Create moderation list"
msgstr "Opret moderationsliste"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Opret ny konto"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Opret anmeldelse for {0}"
@@ -3256,8 +3385,8 @@ msgstr "Opret brugerliste"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Oprettet {0}"
@@ -3341,7 +3470,7 @@ msgstr "Standard"
msgid "Default icons"
msgstr "Standardikoner"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Slet chatdeklarationsregistrering"
msgid "Delete contacts"
msgstr "Slet kontakter"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Slet samtale"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Slet for mig"
@@ -3399,11 +3528,11 @@ msgstr "Slet for mig"
msgid "Delete list"
msgstr "Slet liste"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Slet besked"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Slet besked for mig"
@@ -3413,7 +3542,7 @@ msgstr "Slet min konto"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Slet opslag"
@@ -3434,12 +3563,12 @@ msgstr "Slet denne liste?"
msgid "Delete this post?"
msgstr "Slet dette opslag?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Slettet"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Slettet konto"
@@ -3507,13 +3636,13 @@ msgstr "Dialog: Tilpas, hvem der kan interagere med dette opslag."
msgid "Dim"
msgstr "Dæmpet"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Deaktiver"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Deaktiver 2FA"
@@ -3521,7 +3650,7 @@ msgstr "Deaktiver 2FA"
msgid "Disable captions"
msgstr "Deaktiver undertekster"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Deaktiver 2FA via e-mail"
@@ -3534,8 +3663,8 @@ msgstr "Deaktiver tofaktorgodkendelse via e-mail"
msgid "Disable haptic feedback"
msgstr "Deaktiver haptisk feedback"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr "Deaktiver link"
@@ -3547,7 +3676,7 @@ msgstr "Deaktiver citatopslag af dette opslag"
msgid "Disable replies entirely"
msgstr "Deaktiver svar fuldstændigt"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "Deaktiver dette invitationslink?"
@@ -3560,9 +3689,9 @@ msgstr "Deaktiveret"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Kasser"
msgid "Discard changes?"
msgstr "Deaktiver ændringer?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Kasser udkast?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Kasser opslag?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Frakobl Germ DM"
@@ -3613,11 +3742,11 @@ msgstr "Find nye feeds"
msgid "Dismiss"
msgstr "Luk"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Fjern banner"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Luk fejlbesked"
@@ -3673,7 +3802,7 @@ msgstr "Omfatter ikke nøgenhed."
msgid "Domain verified!"
msgstr "Domæne bekræftet!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Har du ingen kode, eller har du brug for en ny? <0>Klik her.0>"
@@ -3681,7 +3810,7 @@ msgstr "Har du ingen kode, eller har du brug for en ny? <0>Klik her.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Har du ikke modtaget en kode? <0>Klik her for at gensende.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Har du ikke modtaget nogen e-mail? <0>Klik her for at sende en ny.0>"
@@ -3700,16 +3829,19 @@ msgstr "Bare rolig! Alle eksisterende beskeder og indstillinger er gemt og vi bl
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Udført"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Tryk dobbelt eller langt på beskeden for at tilføje en reaktion"
@@ -3741,15 +3873,6 @@ msgstr "Tryk dobbelt for at like"
msgid "Download Bluesky"
msgstr "Download Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Download CAR-fil"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Download CAR-fil"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Download chatdata"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Download chatdata"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Download billede"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr "Download profildata"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr "Download profildata"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Privatlivskrænkelse"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "fx Brugere, der laver for mange reklameopslag."
msgid "Eating disorders"
msgstr "Spiseforstyrrelser"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Rediger"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Rediger avatar"
@@ -3847,14 +3978,14 @@ msgstr "Rediger avatar"
msgid "Edit Feeds"
msgstr "Rediger feeds"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Rediger gruppenavn"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Rediger billede"
@@ -3868,7 +3999,16 @@ msgstr "Rediger interaktionsindstillinger"
msgid "Edit interests"
msgstr "Rediger interesser"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "Rediger linkindstillinger"
@@ -3886,20 +4026,15 @@ msgstr "Rediger livetilstand"
msgid "Edit moderation list"
msgstr "Rediger moderationsliste"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Rediger mine feeds"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "Rediger navn"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Rediger notifikationer fra {0}"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Rediger personer"
@@ -3925,7 +4060,7 @@ msgstr "Rediger profil"
msgid "Edit starter pack"
msgstr "Rediger startpakke"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "Rediger gruppechattens navn"
@@ -3937,7 +4072,7 @@ msgstr "Rediger brugerliste"
msgid "Edit who can reply"
msgstr "Rediger, hvem der kan svare"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Rediger din startpakke"
@@ -3971,7 +4106,7 @@ msgstr "E-mailadresse"
msgid "Email Resent"
msgstr "E-mail gensendt"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "E-mail afsendt!"
@@ -4006,8 +4141,8 @@ msgstr "Indlejr dette opslag på dit website. Kopier blot følgende kodestump og
msgid "Embedded video player"
msgstr "Indlejret videoafspiller"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Aktiver"
@@ -4025,7 +4160,7 @@ msgstr "Aktiver voksenindhold"
msgid "Enable captions"
msgstr "Aktiver undertekster"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Aktiver 2FA via e-mail"
@@ -4038,13 +4173,12 @@ msgstr "Aktiver eksterne medier"
msgid "Enable media players for"
msgstr "Aktiver medieafspillere for"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Aktiver notifikationer for en konto ved at besøge dens profil og trykke på <0>klokkeikonet0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Aktiver push-notifikationer"
@@ -4091,8 +4225,8 @@ msgstr "Indtast en adgangskode"
msgid "Enter a word or tag"
msgstr "Indtast et ord eller tag"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Indtast kode"
@@ -4143,7 +4277,7 @@ msgstr "Åbner i fuld skærm"
msgid "Entertainment"
msgstr "Underholdning"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Fejl"
@@ -4185,23 +4319,23 @@ msgstr "Alle kan svare"
msgid "Everybody can reply to this post."
msgstr "Alle kan besvare dette opslag."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Alle"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Alle"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Alle"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Alt andet"
@@ -4217,8 +4351,8 @@ msgstr "Anvendes ikke på brugere, du følger"
msgid "Exit fullscreen"
msgstr "Forlad fuld skærm"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Udvid alt-tekst"
@@ -4226,7 +4360,7 @@ msgstr "Udvid alt-tekst"
msgid "Expand list of users"
msgstr "Udvid brugerliste"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Udvid eller sammenklap det fulde opslag, du besvarer"
@@ -4238,7 +4372,7 @@ msgstr "Udvid opslagets tekst"
msgid "Expands or collapses post text"
msgstr "Udvider eller sammenklapper opslagets tekst"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Forventede, at URI henviste til et dataelement"
@@ -4277,9 +4411,9 @@ msgstr "Voldsomme eller stødende medier."
msgid "Explicit sexual images."
msgstr "Pornografiske billeder."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Udforsk"
@@ -4289,11 +4423,8 @@ msgstr "Udforsk"
msgid "Explore the app"
msgstr "Udforsk appen,"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr "Eksporter chatdata"
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "Eksporter mine chatdata"
@@ -4322,7 +4453,7 @@ msgstr "Eksterne medier"
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 "Afspilning af medier fra eksterne websites muliggør indsamling af oplysninger om dig og din enhed. Der udveksles ingen oplysninger, før du starter afspilningen."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Indstillinger for eksterne medier"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Kunne ikke acceptere chat"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Kunne ikke tilføje emojireaktion"
@@ -4354,7 +4489,7 @@ msgstr "Kunne ikke føje til startpakke"
msgid "Failed to change handle. Please try again."
msgstr "Ændring af handle fejlede. Prøv igen."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "Kunne ikke kopiere link"
@@ -4367,7 +4502,7 @@ msgstr "Oprettelse af appadgangskode fejlede. Prøv igen."
msgid "Failed to create conversation"
msgstr "Kunne ikke starte samtale"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "Kunne ikke oprette invitationslink"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Kunne ikke slette chat"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Sletning af besked fejlede"
@@ -4394,24 +4529,24 @@ msgstr "Sletning af opslag fejlede, prøv igen"
msgid "Failed to delete starter pack"
msgstr "Sletning af startpakke fejlede"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "Kunne ikke deaktivere invitationslink"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Kunne ikke frakoble Germ DM. Fejl: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "Kunne ikke redigere gruppechattens navn"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "Kunne ikke redigere invitationslink"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "Kunne ikke aktivere invitationslink"
@@ -4427,19 +4562,27 @@ msgstr "Kunne ikke følge alle dine venner, prøv igen"
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "Kunne ikke skjule forslag, tjek din internetforbindelse"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "Kunne ikke åbne sms-app"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "Kunne ikke forlade gruppechat"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Kunne ikke indlæse samtaler"
@@ -4456,17 +4599,8 @@ msgstr "Kunne ikke indlæse feeds"
msgid "Failed to load feeds preferences"
msgstr "Indlæsning af indstillinger for feeds fejlede"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Kunne ikke indlæse notifikationsindstillinger."
@@ -4493,16 +4627,15 @@ msgstr "Indlæsning af foreslåede feeds fejlede"
msgid "Failed to load suggested follows"
msgstr "Indlæsning af foreslåede konti fejlede"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "Kunne ikke låse gruppechat"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Kunne ikke markere alle anmodninger som læst"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "Kunne ikke skjule gruppechat"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Fastgørelse af opslag fejlede"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Kunne ikke genforbinde Germ DM. Fejl: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Kunne ikke fjerne data. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Kunne ikke fjerne emojireaktion"
@@ -4542,15 +4675,19 @@ msgstr "Kunne ikke fjerne medlem af gruppechat"
msgid "Failed to remove verification"
msgstr "Kunne ikke fjerne verifikation"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr "Kunne ikke bestemme din lokalitet. Prøv igen senere."
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Kunne ikke gemme kladde"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "Kunne ikke gemme billede"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Kunne ikke gemme dine interesser."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Kunne ikke sende e-mail, prøv igen."
@@ -4580,7 +4717,7 @@ msgstr "Kunne ikke sende fejlmelding"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Afsendelse af klage fejlede, prøv igen."
@@ -4589,20 +4726,20 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Kunne ikke ændre, om tråden skjules, prøv igen"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
-msgstr ""
+msgstr "Kunne ikke låse gruppechat op"
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107
msgid "Failed to unpin list"
msgstr "Kunne ikke frigøre liste"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Kunne ikke opdaterere 2FA-indstillinger"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Kunne ikke opdatere e-mail, prøv igen."
@@ -4614,7 +4751,7 @@ msgstr "Opdatering af feeds fejlede"
msgid "Failed to update notification declaration"
msgstr "Kunne ikke opdatere notifikationsbeskrivelse"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Opdatering af indstillinger fejlede"
@@ -4641,7 +4778,7 @@ msgstr "Falsk konto eller bot"
msgid "False information about elections"
msgstr "Misinformation om valg"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Feed"
@@ -4649,7 +4786,7 @@ msgstr "Feed"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Feed af {0}"
@@ -4662,7 +4799,7 @@ msgstr "Feedskaber"
msgid "Feed identifier"
msgstr "Feedidentifikator"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Feedmenu"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Feedback blev sendt feedets ejer"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Feeds"
@@ -4739,7 +4876,7 @@ msgstr "Filtrer efter sprog (pt. {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Begræns, hvem der kan modtage notifikationer om din aktivitet"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Begræns, hvem du kan modtage notifikationer fra"
@@ -4747,11 +4884,11 @@ msgstr "Begræns, hvem du kan modtage notifikationer fra"
msgid "Finalizing"
msgstr "Afslutter"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Endelig!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Økonomi"
msgid "Find accounts to follow"
msgstr "Find konti, du kan følge"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Find kontakter"
@@ -4799,7 +4936,7 @@ msgstr "Find personer, du kan følge"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Find opslag, brugere og feeds på Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Find dine venner"
@@ -4944,8 +5081,12 @@ msgstr "Følges af <0>{0}0> og <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Følges af <0>{0}0>, <1>{1}1> og {2, plural, one {# anden} other {# andre}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Følgere af @{0}, som du måske kender"
@@ -4995,19 +5136,16 @@ msgstr "Følger {handle}"
msgid "Following feed preferences"
msgstr "Indstillinger for følgerfeed"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Indstillinger for følgerfeed"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Følger dig"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Følger dig"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Skrifttype"
@@ -5069,7 +5207,7 @@ msgstr "Glemt?"
msgid "Free your feed"
msgstr "Slip dit feed fri"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "Fra"
@@ -5086,35 +5224,35 @@ msgstr "Fra <0/>"
msgid "Generate a starter pack"
msgstr "Generer en startpakke"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Opret invitationslink"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Opret nyt invitationslink"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Opret nyt link"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germ DM frakoblet"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Germ DM-link"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germ DM forbundet"
@@ -5122,46 +5260,50 @@ msgstr "Germ DM forbundet"
msgid "Get help"
msgstr "Få hjælp"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr "Få notifikationer om startpakker, bekræftelse og øvrig aktivitet."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Få notifikationer, når nogen følger dig."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Få notifikationer, når nogen liker de opslag, du har videredelt."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Få notifikationer, når nogen liker dine opslag."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr "Få notifikationer, når nogen liker dine videredelinger."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Få notifikationer, når nogen nævner dig."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Få notifikationer, når nogen citerer dine opslag."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Få notifikationer, når nogen besvarer dine opslag."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Få notifikationer, når nogen videredeler opslag, du har videredelt."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Få notifikationer, når nogen videredeler dine opslag."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr "Få notifikationer, når nogen deler dine videredelinger."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr "Få notifikationer, når der er aktivitet på de opslag, du abonnerer på."
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Bliv notificeret om nye opslag"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Bliv notificeret om opslag og svar fra konti, du vælger."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Bliv notificeret om nye opslag fra {name}"
@@ -5174,27 +5316,27 @@ msgstr "Bliv notificeret om denne kontos aktivitet"
msgid "Get notified when {name} posts"
msgstr "Bliv notificeret, når {name} laver opslag"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Bliv notificeret, når nogen laver opslag"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Kom i gang"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIF uploadet"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Sæt ansigt på din profil"
@@ -5213,20 +5355,21 @@ msgstr "Forherligelse af vold"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Gå tilbage"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Gå tilbage"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Gå tilbage til forrige trin"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Gå til forside"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Gå til forsiden"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Gå til forside"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Gå til kontoindstillinger"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Gå til samtale med {0}"
@@ -5299,12 +5440,12 @@ msgstr "Gå til næste"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Gå til profil"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "Gå til gruppechatten \"{chatName}\""
@@ -5314,14 +5455,14 @@ msgstr "Gå til brugers profil"
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87
msgid "Go to user’s profile"
-msgstr ""
+msgstr "Gå til brugers profil"
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:105
msgid "Going live is currently disabled for your account"
msgstr "Din konto er i øjeblikket spærret for at gå live"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Forstået"
@@ -5340,59 +5481,75 @@ msgstr "Udpenslet voldeligt indhold"
msgid "Grooming or predatory behavior"
msgstr "Grooming eller kontrollerende adfærd"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
-msgid "Group chat invite link dialog"
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
+msgid "Group chat invite link dialog"
+msgstr "Invitationslinkdialog for gruppechat"
+
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "Gruppehat låst"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "Gruppechat skjult"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
-msgstr ""
+msgstr "Gruppechatnavn opdateret"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "Gruppechatindstillinger"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "Gruppechat låst op"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "Gruppechat skjules ikke længere"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr "Gruppechat er endnu ikke tilgængelig"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr "Gruppechat er nu tilgængelig"
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "Gruppe er låst"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Gruppenavn"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Hacking eller systemangreb"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Handle er for langt. Prøv med et kortere."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "Sker lige nu"
@@ -5446,7 +5603,7 @@ msgstr "Skadelige eller risikable aktiviteter"
msgid "Harming or endangering minors"
msgstr "Udsættelse af mindreårige for skade eller fare"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Hashtag"
@@ -5458,14 +5615,14 @@ msgstr "Hashtag {tag}"
msgid "Hate speech"
msgstr "Hadtale"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Har du en kode? <0>Klik her.0>"
#: src/screens/Signup/StepInfo/index.tsx:320
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
-msgstr ""
+msgstr "Er din lokalitet forkert? <0>Tryk her for at opdatere din lokalitet med GPS.0>"
#: src/screens/Signup/index.tsx:231
msgid "Having trouble?"
@@ -5483,7 +5640,7 @@ msgstr "Gemmes af Bluesky i 7 dage for at forhindre misbrug og slettes herefter"
msgid "Help"
msgstr "Hjælp"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Lad andre vide, at du ikke er en robot, ved at uploade et billede eller oprette en avatar"
@@ -5652,18 +5809,18 @@ msgstr "Hmm, vi oplever problemer med at indlæse denne data. Se yderligere oply
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmm, vi kunne ikke indlæse moderationstjenesten."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Vent lidt! Vi udruller gradvist adgang til video, og du er stadig i kø. Prøv igen senere!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Hold lige hesten! Denne funktion er ikke tilgængelig for dig endnu. Kig forbi senere."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Forside"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
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"
@@ -5757,7 +5914,7 @@ msgstr "Hvis du sletter denne liste, kan den ikke genskabes."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Hvis du har dit eget domæne, kan du bruge det som handle. Dette giver dig mulighed for at bekræfte din identitet. <0>Læs mere her0>."
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Hvis du har brug for at opdatere din e-mail, <0>klik her0>."
@@ -5765,7 +5922,7 @@ msgstr "Hvis du har brug for at opdatere din e-mail, <0>klik her0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Hvis du sletter dette opslag, kan det ikke genskabes."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Hvis du opdaterer din e-mailadresse, vil 2FA via e-mail blive deaktiveret."
@@ -5773,7 +5930,6 @@ msgstr "Hvis du opdaterer din e-mailadresse, vil 2FA via e-mail blive deaktivere
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Hvis du vil skifte din adgangskode, sender vi dig en kode til at bekræfte, at dette er din konto."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Hvis du vil begrænse, hvem der kan modtage notifikationer om din egen kontos aktivitet, kan du ændre dette under <0>Indstillinger → Privatliv og sikkerhed0>."
@@ -5786,23 +5942,33 @@ msgstr "Hvis du er udvikler, kan du køre din egen server."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Billede"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "Billede {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Billede {0} af {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "Billede {0} af {imageCount}"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Billedcache tømt, frigjorde {0}"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "Billedgalleri, {0} billeder"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "Billede skjult pga. dine moderationsindstillinger."
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "Billede er utilgængeligt."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Billedindstillinger"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Falsk identitet"
msgid "Import contacts"
msgstr "Importer kontakter"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Importer kontakter"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Importer kontakter for at finde venner"
@@ -5881,40 +6047,40 @@ msgstr "Importeret {0}"
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 "For at kunne tilbyde en alderssvarende oplevelse har vi brug for at kende din fødselsdato. Det er hurtigt klaret, og vi passer godt på dine oplysninger."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "I appen"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Notifikationer i appen"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "I appen, Alle"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr "I appen, alle"
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "I appen, Personer, du følger"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr "I appen, personer du følger"
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "I appen, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr "I appen, push"
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "I appen, Push, Alle"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr "I appen, push, alle"
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "I appen, Push, Personer, du følger"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr "I appen, push, personer du følger"
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "Indbakke er tom"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Tom indbakke!"
@@ -5963,6 +6129,10 @@ msgstr "Vi præsenterer: Gemte opslag, også kendt som bogmærker"
msgid "Invalid 2FA confirmation code."
msgstr "Ugyldig 2FA-bekræftelseskode"
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Ugyldigt handle. Prøv et andet."
@@ -5977,10 +6147,14 @@ msgstr "Ugyldige interaktionsindstillinger."
msgid "Invalid phone number"
msgstr "Ugyldigt telefonnummer"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Ugyldigt emne for anmeldelse"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Ugyldig bekræftelseskode"
@@ -6010,12 +6184,12 @@ msgstr "Inviter venner"
msgid "Invite friends <0/>"
msgstr "Inviter venner <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Invitationslink"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "Invitationslink oprettet"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "Invitationslink deaktiveret"
@@ -6054,7 +6228,7 @@ msgstr "Invitationer, men personlige"
#: src/ageAssurance/components/NoAccessScreen.tsx:394
msgid "Is your location not accurate? <0>Tap here to update your location with GPS.0> "
-msgstr ""
+msgstr "Er din lokalitet ikke præcis? <0>Tryk her for at opdatere din lokalitet med GPS.0> "
#: src/components/contacts/components/InviteInfo.tsx:47
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."
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Lige nu er der kun dig! Føj flere personer til din startpakke ved at søge herover."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "Job-ID: {0}"
@@ -6083,6 +6257,11 @@ msgstr "Job-ID: {0}"
msgid "Jobs"
msgstr "Jobs"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Jobs"
msgid "Join Bluesky"
msgstr "Opret dig på Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Deltag i samtalen"
msgid "Journalism"
msgstr "Journalistik"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Fortsæt med at redigere"
@@ -6143,7 +6331,7 @@ msgstr "Mærkater på din konto"
msgid "Labels on your content"
msgstr "Mærkater på dit indhold"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Sprogindstillinger"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Seneste"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Læs mere om denne advarsel"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Læs mere om verifikation på Bluesky"
@@ -6239,7 +6427,7 @@ msgstr "Læs mere om verifikation på Bluesky"
msgid "Learn more about what is public on Bluesky."
msgstr "Læs mere om, hvad der er offentligt på Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Læs mere om dit Germ DM-link"
@@ -6252,8 +6440,8 @@ msgstr "Læs mere under <0>kontoindstillinger.0>"
msgid "Learn more."
msgstr "Læs mere."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Forlad"
@@ -6276,7 +6464,7 @@ msgstr "Forlad chat"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Forlad samtale"
@@ -6284,13 +6472,13 @@ msgstr "Forlad samtale"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Forlad samtale"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "Forlad gruppechat"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr "Forlad denne gruppechat"
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Lys"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Like ({0, plural, one {# like} other {# likes}})"
@@ -6346,11 +6534,7 @@ msgstr "Like 10 opslag"
msgid "Like 10 posts to train the Discover feed"
msgstr "Like 10 opslag for at træne Discover-feedet"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Notifikationer ved likes"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Like dette feed"
@@ -6358,8 +6542,8 @@ msgstr "Like dette feed"
msgid "Like this labeler"
msgstr "Like denne mærkningstjeneste"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Liket af"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Liket af {0, plural, one {# bruger} other {# brugere}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Liket af {likeCount, plural, one {# bruger} other {# brugere}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Likes"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Likes af dine videredelinger"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Notifikationer ved videredeling af videredelinger"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Likes af dette opslag"
@@ -6409,11 +6589,11 @@ msgstr "Likes af dette opslag"
msgid "Linear"
msgstr "Lineært"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "Link kopieret til udklipsholder"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Liste"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Liste ikke længere skjult"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Lister"
@@ -6545,7 +6725,7 @@ msgstr "Livebegivenhed ikke længere skjult"
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."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "Livefunktion er i beta"
@@ -6581,7 +6761,7 @@ msgstr "Indlæs nye opslag"
#: src/screens/Messages/components/MessageInput.web.tsx:202
msgctxt "placeholder"
msgid "Loading chat…"
-msgstr ""
+msgstr "Indlæser chat…"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:575
msgid "Loading lists..."
@@ -6595,27 +6775,27 @@ msgstr "Indlæser opslagsinteraktionsindstillinger..."
msgid "Loading..."
msgstr "Indlæser..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "Lås"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "Lås gruppechat"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "Lås gruppechat?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "Låser denne gruppechat"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "Låst"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Log"
@@ -6662,7 +6842,7 @@ msgstr "Det ser ud til, at du mangler et følgerfeed <0>Klik her for at tilføje
msgid "Love GIFs"
msgstr "Kærligheds-GIF’er"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Tilpas e-mailindstillinger for din konto"
@@ -6687,9 +6867,8 @@ msgstr "Administrer verifikationsindstillinger"
msgid "Manage your muted words and tags"
msgstr "Administrer dine skjulte ord og tags"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Marker alle læst"
@@ -6698,13 +6877,12 @@ msgstr "Marker alle læst"
msgid "Mark as read"
msgstr "Marker som læst"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Marker alle som læst"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Måske senere"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Medier, der kan virke stødende eller upassende for visse personer."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Medlemmer"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
-msgstr ""
-
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Omtalenotifikationer"
+msgstr "Medlemmer kan fortsat læse chathistorikken men ikke sende nye beskeder."
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "omtalte brugere"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Omtaler"
@@ -6775,22 +6949,22 @@ msgstr "Send besked til {0}"
msgid "Message {displayName}"
msgstr "Send besked til {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Besked slettet"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Besked slettet"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Besked kunne ikke sendes."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Besked fra @{0}: {1}"
@@ -6813,21 +6987,21 @@ msgstr "Beskeden er for lang"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "Besked for lang ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Beskedindstillinger"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Beskeder"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
-msgstr ""
+msgstr "Beskeder fra denne person er skjult, fordi du er blokeret."
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
-msgstr ""
+msgstr "Beskeder fra denne person er skjult, fordi du har blokeret vedkommende."
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101
msgctxt "Name of app icon variant"
@@ -6838,10 +7012,6 @@ msgstr "Midnat"
msgid "Minor harassment or bullying"
msgstr "Mild chikane eller mobning"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Diverse notifikationer"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Misvisende"
@@ -6850,7 +7020,7 @@ msgstr "Misvisende"
msgid "Missing media"
msgstr "Medier mangler"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderation"
@@ -6894,7 +7064,7 @@ msgstr "Moderationsliste opdateret"
msgid "Moderation lists"
msgstr "Moderationslister"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Moderationslister"
@@ -6903,7 +7073,7 @@ msgstr "Moderationslister"
msgid "moderation settings"
msgstr "moderationsindstillinger"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Moderationstilstande"
@@ -6949,7 +7119,7 @@ msgstr "Film"
msgid "Music"
msgstr "Musik"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Lydløs"
@@ -6994,7 +7164,7 @@ msgstr "Skjul liste"
msgid "Mute these accounts?"
msgstr "Skjul disse konti?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "Skjul denne gruppechat"
@@ -7032,7 +7202,7 @@ msgstr "Skjul tråd"
msgid "Mute words & tags"
msgstr "Skjul ord og tags"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "Skjult"
@@ -7040,7 +7210,7 @@ msgstr "Skjult"
msgid "Muted accounts"
msgstr "Skjulte konti"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Skjulte konti"
@@ -7108,8 +7278,8 @@ msgstr "Går til næste skærmbillede"
msgid "Navigates to your profile"
msgstr "Går til din profil"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Vil du kontakte os om en ophavsretskrænkelse eller et juridisk eller regulatorisk spørgsmål?"
@@ -7136,34 +7306,34 @@ msgstr "{postsCount, plural, one {Nyt} other {Nye}} opslag fra {firstAuthorLink}
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{postsCount, plural, one {Nyt} other {Nye}} opslag fra {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Ny chat"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "Ny chat med {0}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "Ny chat med {0} og {1}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "Ny chat med {0}, {1} og {memberCount, plural, one {{memberCount} anden} other {{memberCount} andre}}."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Ny e-mailadresse"
@@ -7174,29 +7344,25 @@ msgstr "Ny e-mailadresse"
msgid "New Feature"
msgstr "Ny feature"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Notifikationer ved nye følgere"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Nye følgere"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "Ny gruppechat"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "Ny gruppechat"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "Ny gruppechat med:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Nyt opslag"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Nyt opslag"
@@ -7262,8 +7428,8 @@ msgstr "Nyheder"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "Ingen GIF’er fundet for \"{query}\"."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "Ingen GIF’er at vise lige nu. Prøv igen om lidt."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Intet billede"
@@ -7362,7 +7528,7 @@ msgstr "Følger ikke længere {0}"
msgid "No media yet"
msgstr "Ingen medier endnu"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Ingen beskeder endnu"
@@ -7378,12 +7544,12 @@ msgstr "Intet navn"
msgid "No notifications yet!"
msgstr "Ingen notifikationer endnu!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Ingen"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Ingen"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Intet resultat"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Ingen resultater"
@@ -7509,10 +7675,6 @@ msgstr "Intime billeder uden samtykke"
msgid "Non-sexual Nudity"
msgstr "Ikkeseksuel nøgenhed"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Ingen"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7520,14 +7682,14 @@ msgstr "Ikke tilgængelig på denne på denne platform."
#: src/components/KnownFollowers.tsx:254
msgid "Not followed by anyone you’re following"
-msgstr "Følges ikke af nogen, du følger"
+msgstr "Følges ikke af nogen du følger"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Ikke fundet"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Ikke klar til at trykke Slå op? Gem dine bedste idéer i Kladder indtil tiden er inde."
@@ -7548,44 +7710,31 @@ msgstr "OBS: Dette opslag er kun synligt for indloggede brugere."
msgid "Nothing saved yet"
msgstr "Endnu ingen gemte"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Notifikationindstillinger"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Notifikationslyde"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Notifikationer"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Notifikationer for alt andet, fx når nogen opretter sig via en af dine startpakker."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "nu"
@@ -7601,7 +7750,7 @@ msgstr "Telefonnummer skal være et mobilnummer"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Deaktiveret"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "på<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Nulstil velkomst"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
-msgstr ""
+msgstr "En af de valgte modtagere tillader ikke gruppechats."
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
-msgstr ""
+msgstr "En af de valgte modtagere har blokeret dig og kan ikke kontaktes."
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "En eller flere GIF'er mangler alt-tekst."
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "En eller flere billeder mangler alt-tekst."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Et eller flere opslag er for lange til at blive gemt som kladde. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Kladder må være på højst # tegn.} other {Kladder må være på højst # tegn.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Et eller flere videoer mangler alt-tekst."
@@ -7685,6 +7835,26 @@ msgstr "Et eller flere videoer mangler alt-tekst."
msgid "Only {0} can reply."
msgstr "Kun {0} kan svare."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Kun følgere, jeg følger"
msgid "Only image files are supported"
msgstr "Kun billedfiler er understøttet"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Kun WebVTT-filer (.vtt) er understøttet"
@@ -7712,7 +7892,7 @@ msgstr "Ups, noget gik galt!"
msgid "Oops!"
msgstr "Ups!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Åbn avatarbygger"
@@ -7720,12 +7900,17 @@ msgstr "Åbn avatarbygger"
msgid "Open camera"
msgstr "Åbn kamera"
-#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
-msgid "Open chat member options for {displayName}"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
+msgid "Open chat member options for {displayName}"
+msgstr "Åbn chatmedlemindstillinger for {displayName}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Åbn samtaleindstillinger"
@@ -7739,16 +7924,16 @@ msgstr "Åbn navigation"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Åbn emojivælger"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Åbn feedinformation"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Åbn feedindstillingsmenu"
@@ -7760,13 +7945,17 @@ msgstr "Åbn hele emojilisten"
msgid "Open Germ DM"
msgstr "Åbn Germ DM"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "Åbn gruppechatindstillinger"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Åbn link til {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Åbn pakke"
msgid "Open post options menu"
msgstr "Åbn opslagsindstillingsmenu"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Åbn profil"
@@ -7817,6 +8006,10 @@ msgstr "Åbn storybook"
msgid "Open system log"
msgstr "Åbn systemlog"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Åbner yderligere oplysninger om en loghændelse"
msgid "Opens alt text dialog"
msgstr "Åbner alt-tekstdialog"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Åbner enhedens kamera"
@@ -7858,22 +8051,24 @@ msgstr "Åbner skrivefelt til nyt opslag"
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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Åbner formular til oprettelse af en ny Bluesky-konto"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Åbner formular til at logge ind på din eksisterende Bluesky-konto"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Viser hele billedet"
@@ -7890,7 +8085,7 @@ msgstr "Åbner billedvælger"
msgid "Opens link {0}"
msgstr "Åbner linket {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Åbner livetilstandsdialog"
@@ -7919,9 +8114,9 @@ msgstr "Åbner skrivefelt for nyt opslag"
msgid "Opens this draft in the composer"
msgstr "Åbner denne kladde i skrivefeltet"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Åbner denne profil"
@@ -7997,12 +8192,12 @@ msgstr "Vores blogindlæg"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Vores moderatorteam har modtaget din anmeldelse."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Vores moderatorer har gennemgået anmeldelser og besluttet at spærre din adgang til chats på Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Vores moderatorer har gennemgået anmeldelser og besluttet at spærre di
msgid "Owner"
msgstr "Ejer"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Side ikke fundet"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Side ikke fundet"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,44 +8264,44 @@ msgstr "Stop afspilning"
msgid "People"
msgstr "Personer"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
-msgstr ""
+msgstr "Personer {ownerName} følger, kan melde sig ind med det samme"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
-msgstr ""
+msgstr "Personer {ownerName} følger, kan anmode om at deltage"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
-msgstr "Personer, som følges af @{0}"
+msgstr "Personer som følges af @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
-msgstr "Personer, som @{0} følger"
+msgstr "Personer som @{0} følger"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Personer jeg følger"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "Brugere jeg følger, kan melde sig ind direkte"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "Brugere jeg følger, kan anmode om at blive medlem ind"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:510
msgid "People you follow"
-msgstr "Personer, du følger"
+msgstr "Personer du følger"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:524
msgid "People you mention"
-msgstr "Personer, du omtaler"
+msgstr "Personer du omtaler"
#: src/lib/media/save-image.ts:59
msgid "Permission to access your photo library was denied. Please enable it in your system settings."
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Billeder for voksne."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Fastgør feed"
@@ -8152,7 +8348,7 @@ msgstr "Fastgør feed"
msgid "Pin to home"
msgstr "Fastgør til forside"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fastgør til forside"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Fastgjort"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "Fastgjorde {0} til forside"
@@ -8236,7 +8432,7 @@ msgstr "Vælg dit handle."
msgid "Please choose your password."
msgstr "Vælg din adgangskode."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Klik på linket i den e-mail, vi lige har sendt dig, for at bekræfte din nye e-mailadresse. Dette er nødvendigt for, at du fortsat kan have glæde af alle Blueskys funktioner."
@@ -8244,7 +8440,7 @@ msgstr "Klik på linket i den e-mail, vi lige har sendt dig, for at bekræfte di
msgid "Please complete the verification captcha."
msgstr "Løs verifikationsopgaven"
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Bekræft din e-mailadresse for at uploade videoer."
@@ -8265,14 +8461,14 @@ msgstr "Indtast en adgangskode. Den skal bestå af mindst 8 tegn."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Vælg et unikt navn til denne appadgangskode eller brug et autogenereret navn."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Indtast en gyldig kode."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Indtast en gyldig e-mailadresse."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Indtast en gyldig, permanent e-mailadresse. Du kan få brug for at tilgå denne adresse i fremtiden."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Indtast den kode, vi har sendt til <0>{0}0>, nedenfor."
@@ -8293,7 +8489,7 @@ msgstr "Indtast den kode, vi har sendt til <0>{0}0>, nedenfor."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Indtast den kode, du har modtaget, samt den nye adgangskode, du ønsker at bruge."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Indtast den sikkerhedskode, vi har sendt til din gamle e-mailadresse."
@@ -8306,7 +8502,7 @@ msgstr "Indtast din e-mail."
msgid "Please enter your invite code."
msgstr "Indtast din invitationskode."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Indtast din nye e-mailadresse."
@@ -8323,7 +8519,7 @@ msgstr "Indtast dit brugernavn"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Forklar, hvorfor du mener, at denne mærkat er anvendt fejlagtigt af {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Forklar, hvorfor du mener, at dine chats er deaktiveret fejlagtigt"
@@ -8366,7 +8562,7 @@ msgstr "Brug vores mobilapp for at importere dine kontakter."
msgid "Please use the native app to sync your contacts."
msgstr "Brug mobilappen for at synkronisere dine kontakter."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Indtast din e-mail"
@@ -8383,7 +8579,7 @@ msgstr "Politik"
msgid "Porn"
msgstr "Porno"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Slå op"
@@ -8403,12 +8599,12 @@ msgstr "Lav et fotoopslag"
msgid "Post a video"
msgstr "Lav et videoopslag"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Slå alle op"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Opret alligevel"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Opslag blokeret"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Opslag af @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Opslag slettet"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Opslag kunne ikke publiceres. Tjek din internetforbindelse og prøv igen."
@@ -8454,7 +8650,7 @@ msgstr "Opslag skjult af dig"
msgid "Post interaction settings"
msgstr "Interaktionsindstillinger"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Interaktionsindstillinger"
@@ -8464,8 +8660,8 @@ msgstr "Interaktionsindstillinger"
msgid "Post language selection"
msgstr "Sprogvalg for opslag"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Send link"
@@ -8491,7 +8687,6 @@ msgstr "Opslag blev frigjort"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Opslag kan skjules baseret på deres tekst, tags eller begge dele. Vi an
msgid "Posts hidden"
msgstr "Opslag er skjult"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Opslag, svar"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Potentielt misvisende link"
@@ -8528,6 +8719,7 @@ msgstr "Tryk for at forsøge at forbinde igen"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Tryk for at prøve igen"
@@ -8536,7 +8728,7 @@ msgstr "Tryk for at prøve igen"
msgid "Press to view followers of this account that you also follow"
msgstr "Tryk for at vise følgere af denne konto, som du også følger"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Forhåndsvisning"
@@ -8559,21 +8751,20 @@ msgstr "Privatliv"
msgid "Privacy and security"
msgstr "Privatliv og sikkerhed"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privatliv og sikkerhed"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Privatlivs- og sikkerhedsindstillinger"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Privatlivspolitik"
msgid "Privacy violation of a minor"
msgstr "Privatlivskrænkelse af en mindreårig"
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "Behandler GIF ..."
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Behandler video..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Behandler..."
@@ -8602,8 +8793,8 @@ msgstr "Behandler..."
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Udgiv opslag"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Udgiv opslag"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Udgiv svar"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Udgiv svar"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Push"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Push-notifikationer"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr "Push, alle"
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "Push, Personer du følger"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr "Push, personer du følger"
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "QR-kode blev downloadet!"
msgid "QR code saved to your camera roll!"
msgstr "QR-kode blev gemt til din kamerarulle!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Notifikationer ved citater"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Citatopslag ikke tilladt"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Citater"
@@ -8733,11 +8920,11 @@ msgstr "Brugsgrænse overskredet. Prøv igen senere."
msgid "Re-attach quote"
msgstr "Gentilkobl citat"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Genaktiver invitationslink"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Genaktiver link"
@@ -8745,8 +8932,8 @@ msgstr "Genaktiver link"
msgid "React with {emoji}"
msgstr "Reager med {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Reaktioner"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "læs om, hvordan du bruger søgefiltre"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Læs blogindlæg"
@@ -8812,11 +8999,11 @@ msgstr "Ægte mennesker."
msgid "Reason for appeal"
msgstr "Begrundelse for klage"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Modtag notifikationer i appen"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Modtag push-notifikationer"
@@ -8841,6 +9028,10 @@ msgstr "Anbefalet"
msgid "Reconnect"
msgstr "Forbind igen"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Afvis"
msgid "Reject chat request"
msgstr "Afvis chatanmodning"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Genindlæs samtaler"
@@ -8896,17 +9087,17 @@ msgstr "Fjern konto"
msgid "Remove all contacts"
msgstr "Fjern alle kontakter"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Fjern vedhæftning"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Fjern profilbillede"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Fjern banner"
@@ -8914,8 +9105,9 @@ msgstr "Fjern banner"
msgid "Remove caption file"
msgstr "Fjern undertekstfil"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Fjern indlejring"
@@ -8933,8 +9125,8 @@ msgstr "Fjern feed?"
msgid "Remove from chat"
msgstr "Fjern fra chat"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Fjern fra gemte opslag"
msgid "Remove from your feeds?"
msgstr "Fjern fra dine feeds?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Fjern billede"
@@ -9009,11 +9201,11 @@ msgstr "Fjern verifikation"
msgid "Remove your verification for this account?"
msgstr "Fjern verifikation fra denne konto?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Fjernet af forfatter"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Fjernet af dig"
@@ -9035,7 +9227,7 @@ msgstr "Fjernet fra gemte opslag"
msgid "Removed from starter pack"
msgstr "Fjernet fra startpakke"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Svarede dig"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Svar"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Besvar"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Svar ({0, plural, one {# svar} other {# svar}})"
@@ -9125,10 +9316,6 @@ msgstr "Svar skjult af trådens forfatter"
msgid "Reply Hidden by You"
msgstr "Svar skjult af dig"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Notifikationer ved svar"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Svarindstillinger er bestemt af trådens forfatter"
@@ -9146,9 +9333,9 @@ msgstr "Svarets synlighed blev opdateret"
msgid "Reply was successfully hidden"
msgstr "Svar blev skjult"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Anmeld"
@@ -9164,13 +9351,13 @@ msgstr "Anmeld konto"
msgid "Report conversation"
msgstr "Anmeld samtale"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Anmeld dialog"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Anmeld feed"
@@ -9179,7 +9366,7 @@ msgstr "Anmeld feed"
msgid "Report list"
msgstr "Anmeld liste"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Anmeld besked"
@@ -9199,8 +9386,8 @@ msgstr "Anmeld startpakke"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Anmeldelse afsendt"
@@ -9213,7 +9400,7 @@ msgstr "Anmeld denne samtale"
msgid "Report this feed"
msgstr "Anmeld dette feed"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "Anmeld denne gruppechat"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Anmeld denne liste"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Anmeld denne livestream"
@@ -9256,10 +9443,6 @@ msgstr "Videredel"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Videredel ({0, plural, one {# deling} other {# delinger}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Notifikationer ved videredeling"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Videredelt af dig"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Videredelinger"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Videredelinger af dette opslag"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Videredeling af dine videredelinger"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Notifikationer ved videredeling af videredelinger"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Anmod om kode"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "Anmodninger"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Gør alt-tekst obligatorisk i dine egne opslag"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Kræv en bekræftelseskode via e-mail for at logge ind på din konto."
@@ -9328,7 +9534,11 @@ msgstr "Obligatorisk for denne udbyder"
msgid "Required in your region"
msgstr "Obligatorisk i din region"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Send igen"
@@ -9393,15 +9603,16 @@ msgstr "Prøver at gentage den seneste handling, der fejlede"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Prøver at gentage den seneste handling, der fejlede"
msgid "Retry"
msgstr "Prøv igen"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Prøv at genindlæse mulige årsager"
@@ -9426,14 +9637,14 @@ msgstr "Prøv at genindlæse mulige årsager"
msgid "Return to previous page"
msgstr "Gå til forrige side"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Vender tilbage til forsiden"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Går til forrige side"
@@ -9454,7 +9665,7 @@ msgstr "Triste GIF’er"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Gem fødselsdato"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Gem ændringer"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Gem ændringer?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Gem kladde"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Gem kladde?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Gem QR-kode"
msgid "Save these options for next time"
msgstr "Gem disse indstillinger til næste gang"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Føj til mine feeds"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Gemte"
msgid "Saved Feeds"
msgstr "Gemte feeds"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Gemte opslag"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Tilføjet dine feeds"
@@ -9551,8 +9764,8 @@ msgstr "Tilføjet dine feeds"
msgid "Say hello!"
msgstr "Sig hej!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "Sig hej til nogen"
@@ -9576,18 +9789,18 @@ msgstr "Rul til højre"
msgid "Scroll to top"
msgstr "Rul til toppen"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Søg"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Søg i opslag fra @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Søg i mine opslag"
msgid "Search posts"
msgstr "Søg opslag"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Søg efter profiler"
msgid "Search..."
msgstr "Søg..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Søg efter profiler"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Sikkerhedstjek krævet"
@@ -9759,7 +9972,7 @@ msgstr "Vælg {langName}"
msgid "Select a color"
msgstr "Vælg en farve"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Vælg en årsag"
@@ -9828,7 +10041,7 @@ msgstr "Vælg GIF"
msgid "Select GIF \"{0}\""
msgstr "Vælg GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "Vælg gruppechatmedlemmer"
@@ -9850,7 +10063,7 @@ msgstr "Vælg sprog..."
msgid "Select languages"
msgstr "Vælg sprog"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Vælg moderationstjeneste"
@@ -9904,11 +10117,11 @@ msgstr "Angiv dine interesser herunder"
msgid "Select your preferred language for translations in your feed."
msgstr "Vælg dit foretrukne sprog for oversættelser i dit feed"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Vælg dine foretrukne notifikationskanaler"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "Valg af flere medietyper er ikke understøttet."
@@ -9921,9 +10134,9 @@ msgstr "Selvskade eller farlig adfærd"
msgid "Send code"
msgstr "Send kode"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Send e-mail"
@@ -9939,7 +10152,7 @@ msgstr "Send fejlmelding"
msgid "Send feedback"
msgstr "Send feedback"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Send besked"
@@ -9952,7 +10165,7 @@ msgstr "Send opslag til {name}"
msgid "Send post to..."
msgstr "Send opslag til..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Send anmeldelse til {title}"
@@ -9960,7 +10173,7 @@ msgstr "Send anmeldelse til {title}"
msgid "Send the message from your phone"
msgstr "Send beskeden fra din telefon"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Send som direkte besked"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "Sendt kl. {0}"
@@ -10015,14 +10228,14 @@ msgstr "Angiv din fødselsdato herunder, så du kan fortsætte med at bruge Blue
msgid "Sets email for password reset"
msgstr "Angiver e-mail til nulstilling af adgangskode"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Indstillinger"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Indstillinger for aktivitet fra andre"
@@ -10030,39 +10243,39 @@ msgstr "Indstillinger for aktivitet fra andre"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Indstillinger for at tillade andre at blive notificeret om dine opslag"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Notifikationsindstillinger for likes"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Notifikationsindstillinger for omtaler"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Notifikationsindstillinger for nye følgere"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Notifikationsindstillinger for alt andet"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Notifikationsindstillinger for likes af dine videredelinger"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Notifikationsindstillinger for videredeling af dine videredelinger"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Notifikationsindstillinger for citater"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Notifikationsindstillinger for svar"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Notifikationsindstillinger for videredelinger"
@@ -10079,10 +10292,12 @@ msgstr "Seksuel aktivitet eller erotisk nøgenhed"
msgid "Sexually Suggestive"
msgstr "Erotik"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Del forfatter-DID"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Del billede"
@@ -10124,7 +10339,7 @@ msgstr "Del opslagets at://-URI"
msgid "Share QR code"
msgstr "Del QR-kode"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Del dette feed"
@@ -10151,7 +10366,7 @@ msgstr "Del via..."
msgid "Share your contacts to find friends"
msgstr "Del dine kontakter for at finde venner"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Test af delte indstillinger"
@@ -10167,16 +10382,16 @@ msgstr "Vis alt-tekst"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Vis alligevel"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "Vis botmærkat"
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Vis advarsel og filtrer fra feeds"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Vis, når nu er live"
@@ -10297,15 +10512,17 @@ msgstr "Viser indholdet"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Log ind eller opret en konto"
msgid "Sign in or create your account to join the conversation!"
msgstr "Log ind eller opret en konto for at deltage i samtalen!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Log på konto, der ikke er anført"
@@ -10337,6 +10558,10 @@ msgstr "Log på konto, der ikke er anført"
msgid "Sign in to Bluesky or create a new account"
msgstr "Log på Bluesky eller opret en ny konto"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Log ind for at se opslag"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Log ud"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Log ud"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Log ud?"
@@ -10391,7 +10616,7 @@ msgstr "Spring over"
msgid "Skip contact sharing and continue to the app"
msgstr "Spring kontaktdeling over og fortsæt til appen"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Spring tomme opslag over?"
@@ -10405,15 +10630,15 @@ msgstr "Spring introduktionen over og kom i gang med din konto"
msgid "Skip to next step"
msgstr "Spring til næste trin"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
-msgstr ""
+msgstr "swipe"
#: src/screens/Settings/AppearanceSettings.tsx:152
msgid "Smaller"
msgstr "Mindre"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Udsætter påmindelen"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "Et medlem forlod gruppen"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Nogen reagerede med {0}"
@@ -10487,17 +10712,22 @@ msgstr "Nogen blev fjernet"
msgid "Someone was removed from the group"
msgstr "Nogen blev fjernet fra gruppen"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Der er noget i vejen med din anmeldelse. Kontakt venligst support."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Noget gik galt"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Noget gik galt!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Noget gik galt. Prøv igen om lidt."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Noget gik galt. Prøv igen."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Noget galt? Fortæl os om det."
@@ -10568,7 +10798,7 @@ msgstr "Sport"
msgid "Start a conversation, and it will appear here."
msgstr "Start en samtale, og den vil blive vist her."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Start en ny chat"
@@ -10582,17 +10812,17 @@ msgstr "Kom i gang med at tilføje personer"
msgid "Start adding people!"
msgstr "Kom i gang med at tilføje personer!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Start chat"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Start chat med {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Startpakke"
@@ -10654,12 +10884,12 @@ msgstr "Lager tømt. Genstart appen nu."
msgid "Stored as part of a secure code for matching with others"
msgstr "Gemt som del af en tjeksum for match med andre"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Storybook"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 "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."
@@ -10671,8 +10901,8 @@ msgstr "Streamer du på Twitch? Aktiver livetilstand på Bluesky for at tilføje
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Gem"
@@ -10684,9 +10914,9 @@ msgstr "Afsend klage"
msgid "Submit Appeal"
msgstr "Afsend klage"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Send anmeldelse"
@@ -10695,15 +10925,15 @@ msgid "Subscribe"
msgstr "Abonner"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
-msgstr ""
+msgstr "Abonner via {0}"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
-msgstr ""
+msgstr "Abonner på {publicationTitle} via {0}"
#. placeholder {0}: labelerInfo.creator.handle
#: src/screens/Profile/Sections/Labels.tsx:231
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Succes"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Bekræftet!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Verificering lykkedes"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Foreslået"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Solnedgang"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,20 +11014,20 @@ msgstr "Support"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Denne funktion er endnu ikke lanceret i dit land! Kom igen senere."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
-msgstr ""
+msgstr "Spærrede konti kan ikke deltage i en gruppechat."
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
-msgstr ""
+msgstr "Spærrede konti kan ikke deltage i en chat."
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Skift konto"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Skift konti"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Skift til {0}"
@@ -10828,9 +11062,9 @@ msgstr "Kun tags"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Tryk for at give Bluesky adgang til din GPS-lokalitet. Vi bruger denne oplysning til at styre, hvilket indhold og hvilke funktioner der er tilgængelige i dit område."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
-msgstr ""
+msgstr "Tryk for flere oplysninger"
#: src/view/com/feeds/MissingFeed.tsx:90
msgid "Tap for information"
@@ -10842,7 +11076,7 @@ msgstr "Tryk for mere info"
#: src/screens/Signup/StepInfo/index.tsx:323
msgid "Tap here to update your location with GPS."
-msgstr ""
+msgstr "Tryk her for at opdatere din lokalitet med GPS."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165
msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky"
@@ -10854,33 +11088,51 @@ msgstr "Tryk for at bekræfte, at du forstår og accepterer disse ændringer, og
msgid "Tap to close context menu"
msgstr "Tryk for at lukke kontekstmenu"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Tryk for lukke"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Tryk for at fjerne"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "Tryk for at fjerne din reaktion med {0}"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Tryk for at prøve igen"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "Tryk for at vise reaktioner med {0}"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Tryk for at se alle reaktioner"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Tryk for at se reaktioner"
@@ -10924,7 +11176,7 @@ msgstr "Tjenestevilkår"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Tekst og tags"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Tekstfelt"
@@ -11049,6 +11301,11 @@ msgstr "Følgende indstillinger vil blive brugt som standard, når du opretter n
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "Lovgivningen i dit område kræver, at du skal bekræfte, at du er voksen for at benytte visse funktioner. Tryk for at læse mere."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Privatlivspolitikken er flyttet til <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "Der er ikke noget invitationslink for denne gruppechat."
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "Der opstod en fejl under indlæsning af GIF’er. Tjek din forbindelse og prøv igen."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "Der er problemer med din internetforbindelse, prøv igen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "Der er problemer med din internetforbindelse, prøv igen"
msgid "There was an issue contacting the server"
msgstr "Der kunne ikke skabes forbindelse til serveren"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Der kunne ikke skabes forbindelse til serveren. Tjek din internetforbindelse og prøv igen."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Notifikationer kunne ikke indlæses. Tryk her for at prøve igen."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Opslag kunne ikke indlæses. Tryk her for at prøve igen."
@@ -11161,7 +11420,7 @@ msgstr "Dine tjenesteindstillinger kunne ikke indlæses"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Feed kunne ikke fjernes. Tjek din internetforbindelse og prøv igen."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Denne klage vil blive sendt til <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Denne klage vil blive sendt til Blueskys moderationstjeneste."
@@ -11263,7 +11522,7 @@ msgstr "Denne klage vil blive sendt til Blueskys moderationstjeneste."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "Denne forfatter har valgt kun at gøre sine opslag synlige for personer, der er logget ind."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "Denne knap lader andre åbne Germ DM-appen for at sende dig en besked. Du kan styre dens synlighed fra Germ DM-appen, eller du kan helt frakoble din Bluesky-konto fra Germ DM ved at klikke på knappen herunder."
@@ -11271,7 +11530,12 @@ msgstr "Denne knap lader andre åbne Germ DM-appen for at sende dig en besked. D
msgid "This chat has ended"
msgstr "Denne chat er afsluttet"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "Denne chat er låst"
@@ -11310,7 +11574,11 @@ msgstr "Dette indhold er ikke tilgængeligt, fordi nogle af de involverede bruge
msgid "This content is not viewable without a Bluesky account."
msgstr "Denne indhold kan ikke ses uden en Bluesky-konto."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Denne samtale er med en slettet eller deaktiveret konto. Tryk for valgmu
msgid "This draft will be permanently deleted."
msgstr "Denne kladde vil blive slettet permanent."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Denne e-mail er allerede tilknyttet din konto."
@@ -11360,7 +11628,7 @@ msgstr "Dette feed er ikke længere online. Vi viser i stedet <0>Discover0>."
msgid "This handle is reserved. Please try a different one."
msgstr "Dette handle er reserveret. Prøv et andet."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "Dette billede kunne ikke bruges. Prøv et andet format som .jpg eller .png."
@@ -11368,6 +11636,18 @@ msgstr "Dette billede kunne ikke bruges. Prøv et andet format som .jpg eller .p
msgid "This information is private and not shared with other users."
msgstr "Denne oplysning er privat og vil ikke blive delt med andre brugere."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "Dette er en tom tilstand"
@@ -11377,7 +11657,7 @@ msgstr "Dette er en tom tilstand"
msgid "This is not a valid link"
msgstr "Dette er ikke et gyldigt link"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "Denne mærkat oplyser om, at denne konto er en bot. Når funktionen er aktiveret, vil denne mærkat blive vist ved siden af kontoens navn på dens profilside og opslag. Funktionen kan aktiveres og deaktiveres når som helst."
@@ -11410,15 +11690,15 @@ msgstr "Denne liste – oprettet dig – overtræder muligvis Blueskys fællessk
msgid "This list is empty."
msgstr "Denne liste er tom."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
-msgstr ""
+msgstr "Denne besked er skjult, fordi denne bruger blokerer dig."
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
-msgstr ""
+msgstr "Denne besked er skjult, fordi du blokerer denne bruger."
#: src/screens/Profile/ErrorState.tsx:41
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
@@ -11430,7 +11710,7 @@ msgstr ""
#: src/components/dms/MessagesListBlockedFooter.tsx:84
msgid "This person is blocking you"
-msgstr ""
+msgstr "Denne person blokerer dig"
#. placeholder {0}: niceDate(i18n, createdAt)
#. placeholder {1}: niceDate(i18n, indexedAt)
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Dette opslags forfatter har ikke tilladt citatopslag."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Dette svar vil blive vist i en skjult sektion nederst i din tråd og vil skjule notifikationer for yderligere svar - både for dig og andre"
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "Dette skærmbillede er kun tilgængeligt for gruppechats."
@@ -11494,18 +11775,18 @@ msgstr "Denne bruger har ikke et profilnavn og kan derfor ikke verificeres."
msgid "This user doesn't have any followers."
msgstr "Denne bruger har ikke nogen følgere."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Denne bruger har blokeret dig og kan ikke kontaktes."
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr "Denne bruger har blokeret dig. Du kan ikke se kontoens indhold."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
-msgstr ""
+msgstr "Denne bruger har deaktiveret chat og kan ikke kontaktes."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
@@ -11574,7 +11855,7 @@ msgstr "Indstillinger for tråde"
msgid "Threaded"
msgstr "Trådet"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Trådindstillinger"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "For at deaktivere 2FA via e-mail, skal du bekræfte, at du har adgang til e-mailadressen."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "For at deaktivere 2FA via e-mail, skal du bekræfte din adgang til <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Top"
msgid "Top replies first"
msgstr "Mest populære svar først"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Emne"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Populære videoer"
msgid "Trolling"
msgstr "Trolling"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "Tillid opstår gennem forbindelser, fællesskaber og delt indhold, så vi åbner nu for <0>autoriserede verifikatorer0>, dvs. organisationer, som kan verificere brugerkonto."
@@ -11763,13 +12044,17 @@ msgstr "Kan ikke kontakte din udbyder. Tjek din internetforbindelse."
msgid "Unable to delete"
msgstr "Kan ikke slette"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
-msgid "Unable to find a selected recipient."
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr "Kunne ikke finde en valgt modtager."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
-msgstr ""
+msgstr "Kunne ikke finde den valgte modtager."
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
@@ -11791,7 +12076,7 @@ msgstr "Utilgængelig"
msgid "Unavailable feed information"
msgstr "Utilgængelig feedinformation"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Bloker ikke længere liste"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Fortryd"
@@ -11872,7 +12157,7 @@ msgstr "Følg ikke længere konto"
msgid "Unfollows the user"
msgstr "Ophører med at følge brugeren"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Ingen af de moderationstjenester, du abonnerer på, understøtter denne anmeldelsestype."
@@ -11904,23 +12189,23 @@ msgstr "Umærket voksenindhold"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Umærket, krænkende eller ikke-samtykkebaseret voksenindhold"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Fjern ({0, plural, one {# like} other {# likes}})"
#: src/screens/Messages/components/ChatLocked.tsx:79
msgid "Unlock chat"
-msgstr ""
+msgstr "Lås chat op"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
-msgstr ""
+msgstr "Lås denne gruppechat op"
#: src/screens/ProfileList/components/Header.tsx:180
#: src/screens/ProfileList/components/Header.tsx:187
@@ -11955,7 +12240,7 @@ msgstr "Skjul ikke længere samtale"
msgid "Unmute list"
msgstr "Skjul ikke længere liste"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "Skjul ikke længere denne gruppechat"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Frigør"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Frigør feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Frigør fra forside"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Frigør moderationsliste"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "Frigjorde {0} fra forside"
@@ -12030,11 +12315,11 @@ msgstr "Afmeld abonnement på denne mærkningstjeneste"
msgid "Unsubscribed from list"
msgstr "Abonnement på liste afmeldt"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "Ikkeunderstøttet indhold i udklipsholder"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Ikkeunderstøttet videotype: {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "Opdater"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Opdater <0>{displayName}0> i lister"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Opdater e-mail"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Opdater invitationslink"
@@ -12065,11 +12354,19 @@ msgstr "Opdater invitationslink"
msgid "Update to {domain}"
msgstr "Skift til {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "Opdater din app til den nyeste version for at melde dig ind!"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Opdater din e-mail"
@@ -12078,7 +12375,7 @@ msgstr "Opdater din e-mail"
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:41
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:106
msgid "Update your location"
-msgstr ""
+msgstr "Opdater din lokalitet"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355
msgctxt "toast"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Opdatering af synlighed for svar fejlede"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Upload et foto i stedet"
@@ -12098,39 +12395,40 @@ msgstr "Upload et foto i stedet"
msgid "Upload a text file to:"
msgstr "Upload en tekstfil til:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Upload fra kamera"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Upload fra filer"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Upload fra bibliotek"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "Uploader GIF ..."
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Uploader billeder..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Uploader forhåndsvisning af link..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Uploader video..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "bruger"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Bruger blokeret"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Brugerliste af {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "Brugerliste af {0}"
@@ -12255,12 +12553,12 @@ msgstr "brugere, der følges af <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "brugere, der følger <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "Brugere, jeg følger"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Brugere, jeg følger"
@@ -12277,7 +12575,7 @@ msgstr "Verificering fejlede, prøv igen."
msgid "Verification settings"
msgstr "Verifikationsindstillinger"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Verifikationsindstillinger"
@@ -12304,8 +12602,8 @@ msgstr "Bekræft igen"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Bekræft kode"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Bekræft DNS-record"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Bekræft e-mailkode"
@@ -12349,7 +12647,7 @@ msgstr "Verificer denne konto?"
msgid "Verify your age"
msgstr "Bekræft din alder"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Version {0}"
msgid "Video"
msgstr "Video"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Videobehandling fejlede"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Videofeed"
@@ -12419,7 +12717,7 @@ msgstr "Video ikke fundet."
msgid "Video settings"
msgstr "Videoindstillinger"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Video uploadet"
@@ -12432,20 +12730,20 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videoer"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
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:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Vis"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
-msgstr ""
+msgstr "Se {0}"
#. placeholder {0}: profile.handle
#: src/screens/Profile/Header/Shell.tsx:257
@@ -12455,7 +12753,7 @@ msgstr "{0}s profilbillede"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,19 +12765,19 @@ msgstr "Se {0}s profil"
msgid "View {0}’s profile"
msgstr "Se {0}s profil"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "Se {displayName}s profil"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
-msgstr ""
+msgstr "Se {publicationTitle}"
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
-msgstr ""
+msgstr "Se @{0}s profil"
#: src/components/ProfileHoverCard/index.web.tsx:479
msgid "View blocked user's profile"
@@ -12503,10 +12801,18 @@ msgstr "Læs mere"
msgid "View full thread"
msgstr "Vis hele tråden"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr "Se modtagne gruppechatanmodninger"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Vis information om disse mærkater"
@@ -12522,7 +12828,7 @@ msgstr "Se flere"
msgid "View more trending videos"
msgstr "Se flere populære videoer"
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Vis opslag"
@@ -12539,18 +12845,18 @@ msgstr "Vis profil"
msgid "View profile banner"
msgstr "Se profilbanner"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
-msgstr ""
+msgstr "Vis udgivelse"
#: src/view/com/profile/ProfileSubpageHeader.tsx:108
msgid "View the avatar"
msgstr "Vis profilbilledet"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "Vis invitationslink for denne gruppechat"
@@ -12563,7 +12869,7 @@ msgstr "Vis mærkningstjenesten drevet af @{0}"
msgid "View this user's verifications"
msgstr "Se denne brugers verifikationer"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Vis brugere, der likede dette feed"
@@ -12596,8 +12902,8 @@ msgstr "Vis dine skjulte konti"
msgid "View your verifications"
msgstr "Se dine verifikationer"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Viser hele billedet"
@@ -12640,8 +12946,8 @@ msgstr "Advar om indhold"
msgid "Warn content and filter from feeds"
msgstr "Advar om indhold og filtrer fra feeds"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Se nu"
@@ -12665,10 +12971,14 @@ msgstr "Vi kunne ikke finde nogen resultater for dette tag."
msgid "We couldn't find any results for that topic."
msgstr "Vi kunne ikke finde nogen resultater for dette emne."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Vi kunne ikke indlæse denne samtale"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "Vi kunne ikke indlæse indstillingerne for denne samtale"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Vi anbefaler at vælge mindst to interesser."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Vi har sendt en e-mail til <0>{0}0> med et link. Klik på det for at afslutte bekræftelsesforløbet."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Vi kunne ikke afgøre, om du har lov til at uploade videoer. Prøv igen."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "Vi giver dig besked, når vi finder dine venner."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Vi vil sende en e-mail til <0>{0}0> med et link. Klik på det for at afslutte bekræftelsesforløbet."
@@ -12779,12 +13089,12 @@ msgstr "Vi kan desværre ikke starte alderstjek for din konto. <0>Kontakt suppor
msgid "We're having network issues, try again"
msgstr "Vi har netværksproblemer, prøv igen."
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "Vi har netværksproblemer, prøv igen"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Vi lancerer en nyt system til validering på Bluesky — et tydeligt flueben."
@@ -12814,12 +13124,12 @@ msgstr "Beklager, men din søgning kunne ikke gennemføres. Prøv igen om lidt."
msgid "We're sorry, you cannot access this screen at this time."
msgstr "Beklager, men du kan ikke tilgå dette skærmbillede i øjeblikket."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Beklager! Det opslag, du svarer på, er blevet slettet."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Hvad vil du kalde din startpakke?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Hvad sker der?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Når du trykker på et flueben, kan du se, hvilken organisation der har foretaget verificeringen."
@@ -12878,7 +13188,7 @@ msgstr "Når du trykker på et flueben, kan du se, hvilken organisation der har
msgid "Who can interact with this post?"
msgstr "Hvem kan interagere med dette opslag?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "Hvem kan melde sig ind i denne gruppechat, og hvordan"
@@ -12887,13 +13197,13 @@ msgstr "Hvem kan melde sig ind i denne gruppechat, og hvordan"
msgid "Who can reply"
msgstr "Hvem kan svare"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Hvem kan verificere?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Ups!"
@@ -12939,19 +13249,19 @@ msgstr "Hvorfor skal denne startpakke gennemgås?"
msgid "Why should this user be reviewed?"
msgstr "Hvorfor skal denne bruger gennemgås?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
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/components/dms/AfterReportConversationDialog.tsx:47
msgid "Would you like to block this user and/or leave this conversation?"
-msgstr ""
+msgstr "Vil du blokere denne bruger og/eller forlade samtalen?"
#: src/view/com/composer/drafts/DraftsButton.tsx:110
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr "Vil du gemme dette opslag som kladde, før du ser dine kladder?"
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr "Vil du gemme dette opslag som kladde, du kan redigere senere?"
@@ -12960,12 +13270,12 @@ msgstr "Vil du gemme dette opslag som kladde, du kan redigere senere?"
msgid "Write a post"
msgstr "Skriv et opslag"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Skriv dit opslag"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Skriv dit svar"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Forkert DID returneret fra server. Modtog: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "Forkert samtaletype"
@@ -13030,17 +13341,17 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "Du tilgår Bluesky fra et område, der pålægger os at bekræfte din alder, før vi giver dig adgang til appen."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
-msgstr ""
+msgstr "Du blokerer {0}"
#: src/components/dms/MessagesListBlockedFooter.tsx:81
msgid "You are blocking the chat owner"
-msgstr ""
+msgstr "Du blokerer chattens ejer"
#: src/components/dms/MessagesListBlockedFooter.tsx:83
msgid "You are blocking this person"
-msgstr ""
+msgstr "Du blokerer denne person"
#: src/components/forms/HostingProvider.tsx:46
msgid "You are creating an account on"
@@ -13068,7 +13379,7 @@ msgstr "Du er live"
msgid "You are no longer live"
msgstr "Du er ikke længere live"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Du har ikke adgang til at uploade videoer."
@@ -13117,12 +13428,12 @@ msgstr "Du kan altid sige stop og slette dine data"
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "I appen kan du kan vælge, om chatnotifikationer skal være med lyd"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Du kan fortsætte igangværende samtaler, uanset hvilken indstilling du vælger."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Du kan nu vælge at blive notificeret om opslag fra udvalgte personer. Hvis du ønsker at modtage opdateringer fra en bruger, så gå til deres profil og find det nye klokkeikon nær Følg-knappen."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "Du kan kun gemme kladder på maks. 1000 tegn."
@@ -13139,11 +13455,11 @@ msgstr "Du kan kun gemme kladder på maks. 1000 tegn."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "Du kan kun gemme kladder på maks. 1000 tegn. Vil du kassere dette opslag, før du ser dine kladder?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
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:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Du kan kun vælge én video ad gangen."
@@ -13153,12 +13469,12 @@ msgstr "Du kan genaktivere din konto ved at logge ind. Andre brugere vil igen ku
#: src/components/dms/MessagesListBlockedFooter.tsx:93
msgid "You can read chat history but can’t send new messages."
-msgstr ""
+msgstr "Du kan læse chathistorikken men ikke sende nye beskeder."
-#. 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: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."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr ""
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,9 +13482,9 @@ msgstr "Du kan vælge op til {MAX_IMAGES, plural, one {}other {# billeder}} i al
msgid "You can update this later from your settings."
msgstr "Du kan opdatere dette senere under Indstillinger."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
-msgstr ""
+msgstr "Du kan endnu oprette en gruppechat endnu."
#: src/lib/hooks/useCleanError.ts:54
#: src/lib/strings/errors.ts:28
@@ -13197,6 +13513,10 @@ msgstr "Du har ikke nogen gemte feeds."
msgid "You got here first"
msgstr "Du kom først"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr "Du har ikke-gemte ændringer til denne kladde. Vil du gemme dem?"
@@ -13336,7 +13656,7 @@ msgstr "Du skal følge mindst syv andre konti for at oprette en startpakke."
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "Du skal give adgang til dit mediebibliotek."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Du vil nok foretrække at genstarte appen nu."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Du reagerede med {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "Du har for nylig opdateret din fødselsdato"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Du vil blive logget ud af alle dine konti."
@@ -13390,7 +13710,7 @@ msgstr "Du vil nu modtage notifikationer for denne tråd"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Du vil modtage en e-mail med en nulstillingskode. Indtast koden her, og indtast så din nye adgangskode."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "Du kan melde dig ind igen uden være blive inviteret."
@@ -13463,7 +13783,7 @@ msgstr "Du er nået slutningen af det aktive indhold."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Du er nået enden af dit feed! Find flere konti, du kan føge."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "Du har nået det maksimale antal kladder"
@@ -13475,11 +13795,11 @@ msgstr "Du har nået det maksimalt tilladte antal forespørgsler. Prøv igen sen
msgid "You've reached the start of the active content."
msgstr "Du er nået begyndelsen af det aktive indhold."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Du har nået din daglige grænse for videouploads (for mange bytes)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr "Din konto blev slettet. Vi ses! ✌️"
msgid "Your account has been suspended"
msgstr "Din konto er suspenderet"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Din konto er ikke gammel nok til videoupload. Prøv igen senere."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr "Din konto er for ny"
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr "Din konto skal være mindst 7 dage gammel for at kunne oprette en ny gruppechat."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Dit kontoarkiv, som indeholder al din offentlige data, kan downloades som en CAR-fil. Denne fil indeholder ikke vedhæftede medier, fx billeder, eller dine private oplysninger, som skal downloades separat."
@@ -13519,7 +13847,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Din adgang til chats er blevet deaktiveret"
@@ -13561,7 +13889,7 @@ msgstr "Din e-mail"
msgid "Your email appears to be invalid."
msgstr "Din e-mail ser ud til at være ugyldig."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Din e-mail er endnu ikke bekræftet. Bekræft din e-mail for at få glæde af alle Blueskys muligheder."
@@ -13582,7 +13910,7 @@ msgstr "Dit følgerfeed er tomt! Følg flere brugere for at se, hvad der foregå
msgid "Your full handle will be <0>@{0}0>"
msgstr "Dit fulde handle bliver <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "Din lokalitet blev opdateret."
msgid "Your muted words"
msgstr "Dine skjulte ord"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "Dit navn og profilbillede samt gruppechattens navn vil være synlige for alle."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "Dit opslag blev sendt"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "Dine opslag blev sendt"
@@ -13635,7 +13963,7 @@ msgstr "Dine opslag blev sendt"
msgid "Your preferred language"
msgstr "Dit foretrukne sprog"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "Dit profilbillede"
@@ -13648,12 +13976,12 @@ msgstr "Dit profilbillede omgivet af koncentriske cirkler af andre brugeres prof
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Dit svar blev sendt"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Din anmeldelse vil blive sendt til <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "Din anmeldelse vil blive sendt til <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Dine valgte interesser hjælper os med at vise dig relevant indhold."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "Din tråd har tomme opslag, som vil blive sprunget over. De resterende opslag vil blive oprettet som en tråd."
diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po
index a804061b2d..4c0af2c7b8 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# Minute} other {# Minuten}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# Monat} other {# Monate}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr "{0, plural, one {# neue Beitrittsanfrage} other {# neue Beitrittsanfragen}}"
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, one {# Person hat reagiert} other {# Personen haben reagiert}} – {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# Sekunde} other {# Sekunden}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr "{0, plural, one {# Min.} other {# Min.}}"
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} Folge ich"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr "{0} blockiert dich"
@@ -264,7 +269,7 @@ msgstr "{0} von 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} hat mit {1} reagiert"
@@ -309,16 +314,38 @@ msgstr "{0}, eine Liste von {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Profilbild von {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "Profilbild von {0}"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr "{0}/{1}"
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr "{0}/{1} {2, plural, one {Mitglied} other {Mitglieder}}"
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr "{0}/{1} Mitglieder"
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0} Min."
msgid "{0}s"
msgstr "{0} Sek."
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr "{count, plural, =0 {Keine Beitrittsanfragen} one {# Beitrittsanfrage} other {# Beitrittsanfragen}}"
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr "{count, plural, one {# Chat-Update} other {# Chat-Updates}}"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr "{count, plural, one {# neue Beitrittsanfrage} other {# neue Beitrittsanfragen}}"
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, one {# Anfrage} other {# Anfragen}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr "{count, plural, one {Aktualisiere die Seite, um es zu sehen.} other {Aktualisiere die Seite, um sie alle zu sehen.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr "{count, plural, one {Dieser Post enthält # Foto.} other {Dieser Post enthält # Fotos.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr "{count, plural, one {Aktualisiere deine App, um es zu sehen.} other {Aktualisiere deine App, um sie alle zu sehen.}}"
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr "{count, plural, other {#+ Beitrittsanfragen}}"
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "{count}+"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "{count}+ Anfragen"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} hat dich verifiziert"
msgid "{following} following"
msgstr "{following} Folge ich"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "{handle} kann nicht hinzugefügt werden"
@@ -547,7 +599,7 @@ msgstr "{handle} kann nicht hinzugefügt werden"
msgid "{handle} can't be messaged"
msgstr "{handle} kann nicht angeschrieben werden"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "{handle} kann nicht angeschrieben werden"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# Stunde {minutesString}} other {# Stunden {minutes
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# Stunde} other {# Stunden}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "{JOIN_REQUESTS_THRESHOLD}+ neue Beitrittsanfragen"
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "{JOIN_REQUESTS_THRESHOLD}+ neue Beitrittsanfragen"
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,9 +643,9 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, other {Du kannst maximal # Antworten ausblenden.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
-msgstr ""
+msgstr "{memberCount}/{memberLimit}"
#: src/features/liveNow/utils.ts:10
msgid "{minutes, plural, one {# minute} other {# minutes}}"
@@ -607,7 +669,7 @@ msgstr "Die liebsten Feeds und Personen von {name} – sei dabei!"
msgid "{name}'s starter pack"
msgstr "Startpaket von {name}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, one {# Anfrage} other {# Anfragen}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "{requestCount}+ Anfragen"
@@ -795,8 +857,11 @@ msgstr "Ein Netzwerkfehler ist aufgetreten. Bitte überprüfe deine Internetverb
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Ein Netzwerkfehler ist aufgetreten. Bitte überprüfe deine Internetverbindung."
@@ -804,7 +869,7 @@ msgstr "Ein Netzwerkfehler ist aufgetreten. Bitte überprüfe deine Internetverb
msgid "A new code has been sent"
msgstr "Ein neuer Code wurde gesendet"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Eine neue Form der Verifizierung"
@@ -827,11 +892,11 @@ msgstr "Ein Screenshot einer Profilseite mit einem Glocken-Symbol neben dem Folg
msgid "A screenshot of 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 "Ein Screenshot des Post-Editors mit einem neuen Button „Entwürfe“ neben dem Posten-Button, begleitet von einem Feuerwerk in Regenbogenfarben. Darunter steht im Editor (aus dem Englischen übersetzt) der Text: „Hey, hast du schon gehört? Bluesky hat jetzt Entwürfe!!!“."
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
-msgstr ""
+msgstr "Der Absender folgt einem ausgewählten Empfänger nicht."
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Missbräuchliches oder diskriminierendes Verhalten"
msgid "Accept"
msgstr "Annehmen"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Annehmen"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Chat-Anfrage annehmen"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr "Beitrittsanfrage annehmen"
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Anfrage annehmen"
@@ -860,17 +935,26 @@ msgstr "Anfrage annehmen"
msgid "Accept this language suggestion"
msgstr "Diesen Sprachvorschlag akzeptieren"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr "Akzeptierte Konversationen"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr "Zugang angefragt! Der Gruppeninhaber wird deine Anfrage prüfen."
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Barrierefreiheit"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Barrierefreiheitseinstellungen"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Account nicht mehr stummgeschaltet"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Accounts mit einem gewellten blauen Häkchen <0><1/>0> können andere verifizieren. Diese vertrauenswürdigen Verifizierer werden von Bluesky ausgewählt."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Aktivität von anderen"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Aktivitätsmitteilungen"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Hinzufügen"
@@ -999,8 +1079,8 @@ msgstr "Account hinzufügen"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Alt-Text hinzufügen (optional)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Weiteren Account hinzufügen"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Einen weiteren Post hinzufügen"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Einen weiteren Post zum Thread hinzufügen"
@@ -1035,7 +1115,7 @@ msgstr "App-Passwort hinzufügen"
msgid "Add App Password"
msgstr "App-Passwort hinzufügen"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "Automatisierungskennzeichnung zum Account hinzufügen"
@@ -1043,7 +1123,7 @@ msgstr "Automatisierungskennzeichnung zum Account hinzufügen"
msgid "Add emoji reaction"
msgstr "Emoji-Reaktion hinzufügen"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Mitglieder zum Gruppenchat hinzufügen"
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Medien zum Post hinzufügen"
@@ -1062,8 +1142,8 @@ msgstr "Medien zum Post hinzufügen"
msgid "Add members"
msgstr "Mitglieder hinzufügen"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Weitere Details hinzufügen (optional)"
@@ -1080,8 +1160,8 @@ msgstr "Stummgeschaltetes Wort mit den gewählten Einstellungen hinzufügen"
msgid "Add muted words and tags"
msgstr "Stummgeschaltete Wörter und Tags hinzufügen"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "Mitglieder zur Liste hinzufügen..."
msgid "Additional details (limit 1000 characters)"
msgstr "Zusätzliche Angaben (max. 1000 Zeichen)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Zusätzliche Details (max. 300 Zeichen)"
@@ -1228,12 +1308,12 @@ msgstr "Anfrage zur Altersverifikation wurde übermittelt"
msgid "Age assurance only takes a few minutes"
msgstr "Die Altersverifikation dauert nur wenige Minuten"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Alle"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "Alle {0}"
@@ -1278,13 +1358,13 @@ msgstr "Erlaube den Zugriff auf deine Direktnachrichten"
msgid "Allow anyone to reply"
msgstr "Jedem erlauben zu antworten"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "Direktnachrichten erlauben von"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr "Gruppenchat-Einladungen erlauben von"
@@ -1338,12 +1418,12 @@ msgstr "Hast du bereits einen Account?"
msgid "Already signed in as @{0}"
msgstr "Bereits als @{0} eingeloggt"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Alt-Text"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alt-Text beschreibt Bilder für blinde und sehbehinderte Leser und hilft, den Kontext für alle zu vermitteln."
@@ -1387,7 +1467,7 @@ msgstr "Ein Fehler ist aufgetreten"
msgid "An error occurred"
msgstr "Ein Fehler ist aufgetreten"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Beim Komprimieren des Videos ist ein Fehler aufgetreten."
@@ -1432,11 +1512,11 @@ msgstr "Beim Speichern des QR-Codes ist ein Fehler aufgetreten!"
msgid "An error occurred while trying to follow all"
msgstr "Beim Versuch, allen zu folgen, ist ein Fehler aufgetreten."
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "Beim Hochladen des Videos ist ein Fehler aufgetreten. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "Beim Hochladen des Videos ist ein Fehler aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut."
@@ -1461,21 +1541,21 @@ msgstr "Eine Illustration mehrerer Bluesky-Posts mit Repost-, Gefällt-mir- und
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Eine Illustration, die zeigt, dass Bluesky vertrauenswürdige Verifizierer auswählt und diese wiederum einzelne Nutzeraccounts verifizieren."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "Über einen Einladungslink können Personen diesem Gruppenchat beitreten, ohne direkt hinzugefügt zu werden. Du bestimmst, wer den Link nutzen darf und ob deine Zustimmung erforderlich ist. Du kannst den Link jederzeit deaktivieren."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr "Über einen Einladungslink können Personen diesem Gruppenchat beitreten, ohne direkt hinzugefügt zu werden. Du bestimmst, wer dem Chat beitreten kann. Du kannst den Link jederzeit deaktivieren."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Ein Problem, das hier nicht aufgelistet ist"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
-msgstr ""
+msgstr "Beim Erstellen des Gruppenchats ist ein Problem aufgetreten. Bitte versuche es erneut."
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
-msgstr ""
+msgstr "Beim Starten des Chats ist ein Problem aufgetreten. Bitte versuche es erneut."
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
msgid "An issue occurred while trying to open the chat"
@@ -1490,7 +1570,7 @@ msgstr "Beim Öffnen des Chats ist ein Problem aufgetreten"
msgid "An issue occurred, please try again."
msgstr "Ein Problem ist aufgetreten, bitte versuche es erneut."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Ein Mockup eines iPhones, auf dem die Bluesky-App mit dem Profil eines verifizierten Nutzers geöffnet ist, dessen Anzeigename mit einem blauen Häkchen versehen ist."
@@ -1539,13 +1619,17 @@ msgstr "Jeder"
msgid "Anyone can interact"
msgstr "Jeder kann interagieren"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr "Jeder kann beitreten"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "Jeder kann sofort beitreten"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "Jeder kann eine Beitrittsanfrage stellen"
@@ -1555,11 +1639,11 @@ msgstr "Jeder kann eine Beitrittsanfrage stellen"
msgid "Anyone who follows me"
msgstr "Jeden, der mir folgt"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr "Jeder, der ihn hat, kann damit nicht mehr beitreten oder eine Beitrittsanfrage stellen. Du kannst jederzeit einen neuen erstellen."
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Namen von App-Passwörtern müssen mindestens 4 Zeichen enthalten"
msgid "App passwords"
msgstr "App-Passwörter"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "App-Passwörter"
@@ -1618,7 +1702,7 @@ msgstr "Einspruch gegen die Sperrung des Livestreams einlegen"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Einspruch eingereicht"
@@ -1632,14 +1716,14 @@ msgstr "Suspendierung anfechten"
msgid "Appeal Suspension"
msgstr "Suspendierung anfechten"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Einspruch gegen diese Entscheidung"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "Bist du dir wirklich, wirklich sicher?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Bist du sicher, dass du das App-Passwort „{0}“ löschen möchtest?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Möchtest du diese Nachricht wirklich löschen? Die Nachricht wird nur für dich gelöscht, nicht für die anderen Teilnehmer."
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "Möchtest du {groupName} wirklich verlassen?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
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: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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr "Möchtest du diese Konversation wirklich verlassen? Deine Nachrichten werden für dich gelöscht, jedoch nicht für die anderen Teilnehmer."
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Bist du sicher, dass du diesen Post verwerfen möchtest?"
@@ -1752,7 +1836,7 @@ msgstr "Automatisierter Account"
msgid "Automation label"
msgstr "Automatisierungskennzeichnung"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "Automatisierungskennzeichnung"
@@ -1767,12 +1851,12 @@ msgstr "Videos und GIFs automatisch abspielen"
msgid "Available"
msgstr "Verfügbar"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Verfügbar"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Verfügbar"
msgid "Back"
msgstr "Zurück"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Zurück zu Chats"
@@ -1840,12 +1926,12 @@ msgstr "Bevor du diese Chat-Anfrage annehmen kannst, musst du zuerst deine E-Mai
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Bevor du Mitteilungen zu den Posts von {name} erhalten kannst, musst du zuerst deine E-Mail verifizieren."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Bevor du einem anderen Nutzer eine Nachricht senden kannst, musst du zuerst deine E-Mail verifizieren."
@@ -1877,7 +1963,7 @@ msgstr "Geburtstag"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "{displayName} blockieren"
msgid "Block account"
msgstr "Account blockieren"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Account blockieren?"
@@ -1912,15 +1998,15 @@ msgstr "Account blockieren?"
msgid "Block accounts"
msgstr "Accounts blockieren"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
-msgstr ""
+msgstr "Blockieren und löschen"
#. After-report action for a conversation
#: src/components/dms/AfterReportConversationDialog.tsx:167
msgctxt "button"
msgid "Block and leave"
-msgstr ""
+msgstr "Blockieren und verlassen"
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
msgid "Block list"
@@ -1936,9 +2022,9 @@ msgstr "Diese Accounts blockieren?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Nutzer blockieren"
@@ -1946,17 +2032,17 @@ msgstr "Nutzer blockieren"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Nutzer blockieren"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Nutzer blockieren und/oder diese Konversation löschen"
#: src/components/dms/AfterReportConversationDialog.tsx:217
msgid "Block user and/or leave this conversation"
-msgstr ""
+msgstr "Nutzer blockieren und/oder diese Konversation verlassen"
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Blockiert"
@@ -1964,13 +2050,13 @@ msgstr "Blockiert"
msgid "Blocked accounts"
msgstr "Blockierte Accounts"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Blockierte Accounts"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blockierte Accounts können nicht in deinen Threads antworten, dich erwähnen oder anderweitig mit dir interagieren."
@@ -2029,7 +2115,7 @@ msgstr "Mit Freunden ist Bluesky besser!"
msgid "Bluesky is more fun with friends"
msgstr "Bluesky macht mit Freunden mehr Spaß"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Bluesky macht mit Freunden mehr Spaß! Importiere deine Kontakte, um zu sehen, wer schon hier ist."
@@ -2053,7 +2139,7 @@ msgstr "Bluesky wählt eine Reihe von empfohlenen Accounts von Personen in deine
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 "Bluesky zeigt dein Profil und deine Posts nicht für ausgeloggte Nutzer an. Andere Apps kommen dieser Aufforderung möglicherweise nicht nach."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky wird proaktiv bekannte und authentische Accounts verifizieren."
@@ -2137,23 +2223,30 @@ msgstr "Unternehmen"
msgid "Button to go back to the home timeline"
msgstr "Button, um zur Startseite zurückzukehren"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Von {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Von <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr "Von <0>{ownerDisplayName}0>"
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr "von <0>@{0}0>"
@@ -2181,7 +2274,7 @@ msgstr "Mit der Erstellung eines Accounts stimmst du den <0>Nutzungsbedingungen<
msgid "By you"
msgstr "Von dir"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Kamera"
@@ -2192,8 +2285,8 @@ msgstr "Kamera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Kamera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Abbrechen"
@@ -2248,9 +2341,9 @@ msgstr "Reaktivierung abbrechen und ausloggen"
msgid "Cancel search"
msgstr "Suche abbrechen"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Kann nicht mit einem blockierten Nutzer interagieren"
@@ -2264,7 +2357,7 @@ msgstr "Untertitel (.vtt)"
msgid "Captions & alt text"
msgstr "Untertitel und Alt-Text"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "Bildergalerie"
@@ -2297,7 +2390,7 @@ msgstr "App-Sprache ändern"
msgid "Change Handle"
msgstr "Handle ändern"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Moderationsdienst ändern"
@@ -2310,11 +2403,11 @@ msgstr "Passwort ändern"
msgid "Change password dialog"
msgstr "Passwort ändern Dialog"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Kategorie der Meldung ändern"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Grund für Meldung ändern"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Änderungen am Startpaket werden nach der Erstellung nicht in der Liste übernommen. Die Liste ist eine unabhängige Kopie."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Chat"
@@ -2361,6 +2454,13 @@ msgstr "Chat gelöscht"
msgid "Chat ended"
msgstr "Chat beendet"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr "Dieser Chat-Einladungslink ist nicht mehr verfügbar"
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "Chat gesperrt"
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Chat stummgeschaltet"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
-msgstr ""
+msgstr "Der Absender folgt dem Empfänger des Chats nicht."
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Posteingang für Chat-Anfragen"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Chat-Anfragen"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Chat-Einstellungen"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Chat-Einstellungen"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Chat nicht mehr stummgeschaltet"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Chats"
@@ -2479,7 +2579,7 @@ msgstr "Post-Sprachen auswählen"
msgid "Choose this color as your avatar"
msgstr "Diese Farbe als dein Profilbild verwenden"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "Lege fest, wer diesem Gruppenchat beitreten kann und wie."
@@ -2533,7 +2633,7 @@ msgstr "Klicken für Informationen"
msgid "click here"
msgstr "hier klicken"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "Hier klicken, um Personen zu diesem Gruppenchat hinzuzufügen"
@@ -2541,7 +2641,7 @@ msgstr "Hier klicken, um Personen zu diesem Gruppenchat hinzuzufügen"
msgid "Click here to contact our support team"
msgstr "Klicke hier, um unser Support-Team zu kontaktieren"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "Klicke hier, um einen Einladungslink für diesen Gruppenchat zu erstellen oder zu verwalten"
@@ -2558,7 +2658,7 @@ msgstr "Klicke hier, um dich auszuloggen"
msgid "Click here to resend the email"
msgstr "Hier klicken, um die E-Mail erneut zu senden"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Klicke hier, um den Verifizierungsprozess neu zu starten."
@@ -2567,11 +2667,11 @@ msgstr "Klicke hier, um den Verifizierungsprozess neu zu starten."
msgid "Click here to update your birthdate"
msgstr "Klicke hier, um dein Geburtsdatum zu aktualisieren"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Klicke hier, um deine E-Mail zu aktualisieren"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "Klicke hier, um den Einladungslink für diesen Gruppenchat anzuzeigen"
@@ -2580,7 +2680,7 @@ msgstr "Klicke hier, um den Einladungslink für diesen Gruppenchat anzuzeigen"
msgid "Click to open tag menu for {0}"
msgstr "Klicken, um das Tag-Menü für {0} zu öffnen"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden"
@@ -2594,28 +2694,30 @@ msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Aktiven Dialog schließen"
msgid "Close alert"
msgstr "Meldung schließen"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr "Banner schließen"
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Untere Schublade schließen"
@@ -2657,8 +2763,9 @@ msgstr "Untere Schublade schließen"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Dialog schließen"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Bild schließen"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Bildansicht schließen"
@@ -2683,6 +2790,14 @@ msgstr "Bildansicht schließen"
msgid "Close menu"
msgstr "Menü schließen"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr "Banner mit eingehenden Anfragen schließen"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Diesen Dialog schließen"
@@ -2695,7 +2810,7 @@ msgstr "Willkommensfenster schließen"
msgid "Closes password update alert"
msgstr "Schließt die Passwort-Update-Benachrichtigung"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Schließt den Post-Editor und verwirft den Post-Entwurf"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Comics"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Community-Richtlinien"
@@ -2740,12 +2855,12 @@ msgstr "Schließe die Herausforderung ab"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Neuen Post verfassen"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
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}}"
@@ -2753,11 +2868,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:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "GIF wird komprimiert..."
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Video wird komprimiert..."
@@ -2780,7 +2895,7 @@ msgstr "Konfiguriert in <0>Moderationseinstellungen0>"
msgid "Confirm"
msgstr "Bestätigen"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Inhalte und Medien"
msgid "Content and media"
msgstr "Inhalte und Medien"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Inhalte und Medien"
@@ -2889,7 +3004,7 @@ msgstr "Hintergrund des Kontextmenüs; klicken, um das Menü zu schließen"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Thread fortsetzen"
msgid "Continue thread..."
msgstr "Thread fortsetzen…"
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Weiter zum Gruppennamen"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Weiter zum nächsten Schritt"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Konversation"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Konversation gelöscht"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Konversation gelöscht"
@@ -2939,13 +3054,20 @@ msgstr "Konversation gelöscht"
#: src/components/dms/AfterReportConversationDialog.tsx:179
msgctxt "toast"
msgid "Conversation left"
-msgstr ""
+msgstr "Konversation verlassen"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr "Konversation nicht gefunden."
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Die Build-Version wurde in die Zwischenablage kopiert"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "DID kopieren"
msgid "Copy host"
msgstr "Host kopieren"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Link zum Profil kopieren"
msgid "Copy link to starter pack"
msgstr "Link zum Startpaket kopieren"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Nachrichtentext kopieren"
@@ -3052,7 +3175,7 @@ msgstr "TXT-Eintragswert kopieren"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Urheberrechtsrichtlinie"
@@ -3065,7 +3188,7 @@ msgstr "Verbindung zum benutzerdefinierten Feed konnte nicht hergestellt werden"
msgid "Could not connect to feed service"
msgstr "Verbindung zum Feed-Dienst konnte nicht hergestellt werden"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr "Post konnte nicht abgerufen werden"
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Nicht alle Übereinstimmungen konnten gefolgt werden. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Du konntest den Chat nicht verlassen"
@@ -3094,6 +3217,10 @@ msgstr "Du konntest den Chat nicht verlassen"
msgid "Could not load feed"
msgstr "Feed konnte nicht geladen werden"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr "Einladung konnte nicht geladen werden"
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Landesvorwahl"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Erstellen"
@@ -3159,7 +3286,7 @@ msgstr "QR-Code für ein Startpaket erstellen"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Ein Startpaket erstellen"
@@ -3174,13 +3301,14 @@ msgstr "Ein Startpaket für mich erstellen"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Einen Account erstellen"
msgid "Create an account without using this starter pack"
msgstr "Stattdessen ohne dieses Startpaket einen Account erstellen"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Stattdessen ein Profilbild erstellen"
@@ -3206,7 +3334,7 @@ msgstr "Stattdessen ein Profilbild erstellen"
msgid "Create another"
msgstr "Ein weiteres erstellen"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Gruppenchat erstellen"
@@ -3228,19 +3356,20 @@ msgstr "Liste aus Startpaket erstellen"
msgid "Create moderation list"
msgstr "Moderationsliste erstellen"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Neuen Account erstellen"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr "Einen Einladungslink für diesen Gruppenchat erstellen oder bearbeiten"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Meldung für {0} erstellen"
@@ -3256,8 +3385,8 @@ msgstr "Nutzerliste erstellen"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Erstellt {0}"
@@ -3341,7 +3470,7 @@ msgstr "Standard"
msgid "Default icons"
msgstr "Standardsymbole"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Datensatz für die Chat-Erklärung löschen"
msgid "Delete contacts"
msgstr "Kontakte löschen"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Konversation löschen"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Für mich löschen"
@@ -3399,11 +3528,11 @@ msgstr "Für mich löschen"
msgid "Delete list"
msgstr "Liste löschen"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Nachricht löschen"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Nachricht für mich löschen"
@@ -3413,7 +3542,7 @@ msgstr "Meinen Account löschen"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Post löschen"
@@ -3434,12 +3563,12 @@ msgstr "Diese Liste löschen?"
msgid "Delete this post?"
msgstr "Diesen Post löschen?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Gelöscht"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Gelöschter Account"
@@ -3507,13 +3636,13 @@ msgstr "Dialog: Anpassen, wer mit diesem Post interagieren kann"
msgid "Dim"
msgstr "Gedimmt"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Deaktivieren"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "2FA deaktivieren"
@@ -3521,7 +3650,7 @@ msgstr "2FA deaktivieren"
msgid "Disable captions"
msgstr "Untertitel deaktivieren"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "E-Mail-2FA (Zwei-Faktor-Authentisierung) deaktivieren"
@@ -3534,8 +3663,8 @@ msgstr "E-Mail-2FA (Zwei-Faktor-Authentisierung) deaktivieren"
msgid "Disable haptic feedback"
msgstr "Haptische Rückmeldung deaktivieren"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr "Link deaktivieren"
@@ -3547,7 +3676,7 @@ msgstr "Zitieren dieses Posts deaktivieren"
msgid "Disable replies entirely"
msgstr "Antworten vollständig deaktivieren"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "Diesen Einladungslink deaktivieren?"
@@ -3560,9 +3689,9 @@ msgstr "Deaktiviert"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Verwerfen"
msgid "Discard changes?"
msgstr "Änderungen verwerfen?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Entwurf verwerfen?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Post verwerfen?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Germ DM trennen"
@@ -3613,11 +3742,11 @@ msgstr "Entdecke neue Feeds"
msgid "Dismiss"
msgstr "Verwerfen"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Banner schließen"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Fehler verwerfen"
@@ -3673,7 +3802,7 @@ msgstr "Beinhaltet keine Nacktheit."
msgid "Domain verified!"
msgstr "Domain verifiziert!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Du hast keinen Code oder benötigst einen neuen? <0>Hier klicken.0>"
@@ -3681,7 +3810,7 @@ msgstr "Du hast keinen Code oder benötigst einen neuen? <0>Hier klicken.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Keinen Code erhalten? <0>Klicke hier, um ihn erneut zu senden.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Du hast keine E-Mail erhalten? <0>Hier klicken, um sie erneut zu senden.0>"
@@ -3700,16 +3829,19 @@ msgstr "Keine Sorge! Alle vorhandenen Nachrichten und Einstellungen werden gespe
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Fertig"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Doppeltippen oder lange auf die Nachricht drücken, um eine Reaktion hinzuzufügen"
@@ -3741,15 +3873,6 @@ msgstr "Doppelt tippen, um „Gefällt mir“ zu geben"
msgid "Download Bluesky"
msgstr "Bluesky herunterladen"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "CAR-Datei herunterladen"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "CAR-Datei herunterladen"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Chat-Daten herunterladen"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Chat-Daten herunterladen"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Bild herunterladen"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr "Profildaten herunterladen"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr "Profildaten herunterladen"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Doxxing"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "z. B. Nutzer, die wiederholt mit Werbung antworten."
msgid "Eating disorders"
msgstr "Essstörungen"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Bearbeiten"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Profilbild bearbeiten"
@@ -3847,14 +3978,14 @@ msgstr "Profilbild bearbeiten"
msgid "Edit Feeds"
msgstr "Feeds bearbeiten"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Gruppenname bearbeiten"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Bild bearbeiten"
@@ -3868,7 +3999,16 @@ msgstr "Interaktionseinstellungen bearbeiten"
msgid "Edit interests"
msgstr "Interessen bearbeiten"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr "Einladungslink bearbeiten"
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr "Einladungslink bearbeiten"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "Link-Einstellungen bearbeiten"
@@ -3886,20 +4026,15 @@ msgstr "Live-Status bearbeiten"
msgid "Edit moderation list"
msgstr "Moderationsliste bearbeiten"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Meine Feeds bearbeiten"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "Name bearbeiten"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Mitteilungen von {0} bearbeiten"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Personen bearbeiten"
@@ -3925,7 +4060,7 @@ msgstr "Profil bearbeiten"
msgid "Edit starter pack"
msgstr "Startpaket bearbeiten"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "Namen dieses Gruppenchats bearbeiten"
@@ -3937,7 +4072,7 @@ msgstr "Nutzerliste bearbeiten"
msgid "Edit who can reply"
msgstr "Bearbeiten, wer antworten kann"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Dein Startpaket bearbeiten"
@@ -3971,7 +4106,7 @@ msgstr "E-Mail-Adresse"
msgid "Email Resent"
msgstr "E-Mail erneut gesendet"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "E-Mail gesendet!"
@@ -4006,8 +4141,8 @@ msgstr "Bette diesen Post in deine Website ein. Kopiere einfach den folgenden Co
msgid "Embedded video player"
msgstr "Eingebetteter Video-Player"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Aktivieren"
@@ -4025,7 +4160,7 @@ msgstr "Inhalte für Erwachsene aktivieren"
msgid "Enable captions"
msgstr "Untertitel aktivieren"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "E-Mail-2FA (Zwei-Faktor-Authentisierung) aktivieren"
@@ -4038,13 +4173,12 @@ msgstr "Externe Medien aktivieren"
msgid "Enable media players for"
msgstr "Medienplayer aktivieren für"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Aktiviere Mitteilungen für einen Account, indem du dessen Profil aufrufst und auf das <0>Glocken-Symbol0> <1/> klickst."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Push-Mitteilungen aktivieren"
@@ -4091,8 +4225,8 @@ msgstr "Gib ein Passwort ein"
msgid "Enter a word or tag"
msgstr "Gib ein Wort oder einen Tag ein"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Code eingeben"
@@ -4143,7 +4277,7 @@ msgstr "Vollbildmodus aktivieren"
msgid "Entertainment"
msgstr "Unterhaltung"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Fehler"
@@ -4185,23 +4319,23 @@ msgstr "Jeder kann antworten"
msgid "Everybody can reply to this post."
msgstr "Jeder kann auf diesen Post antworten."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Jedem"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Jedem"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Jedem"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Alles andere"
@@ -4217,8 +4351,8 @@ msgstr "Nutzer ausgeschlossen, denen du folgst"
msgid "Exit fullscreen"
msgstr "Vollbildmodus beenden"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Alt-Text erweitern"
@@ -4226,7 +4360,7 @@ msgstr "Alt-Text erweitern"
msgid "Expand list of users"
msgstr "Liste der Nutzer erweitern"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Erweitere oder reduziere den gesamten Post, auf den du antwortest"
@@ -4238,7 +4372,7 @@ msgstr "Text des Posts ausklappen"
msgid "Expands or collapses post text"
msgstr "Text des Posts erweitern oder einklappen"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Erwartete uri, um einen Eintrag aufzulösen"
@@ -4277,9 +4411,9 @@ msgstr "Explizite oder potenziell verstörende Medien."
msgid "Explicit sexual images."
msgstr "Explizite sexuelle Bilder."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Entdecken"
@@ -4289,11 +4423,8 @@ msgstr "Entdecken"
msgid "Explore the app"
msgstr "Entdecke die App"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr "Chatdaten exportieren"
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "Meine Chatdaten exportieren"
@@ -4322,7 +4453,7 @@ msgstr "Externe Medien"
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 "Externe Medien können es Websites ermöglichen, Informationen über dich und dein Gerät zu sammeln. Es werden keine Informationen gesendet oder angefordert, bis du die Schaltfläche „Abspielen“ drückst."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Externe Medienpräferenzen"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Chat konnte nicht angenommen werden"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr "Beitrittsanfrage konnte nicht angenommen werden"
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Fehler beim Hinzufügen der Emoji-Reaktion"
@@ -4354,7 +4489,7 @@ msgstr "Hinzufügen zum Startpaket fehlgeschlagen"
msgid "Failed to change handle. Please try again."
msgstr "Fehler beim Ändern des Handles. Bitte versuche es erneut."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "Link konnte nicht kopiert werden"
@@ -4367,7 +4502,7 @@ msgstr "Fehler beim Erstellen des App-Passworts. Bitte versuche es erneut."
msgid "Failed to create conversation"
msgstr "Fehler beim Erstellen der Konversation"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "Einladungslink konnte nicht erstellt werden"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Chat konnte nicht gelöscht werden"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Nachricht konnte nicht gelöscht werden"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "Einladungslink konnte nicht deaktiviert werden"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Germ DM konnte nicht getrennt werden. Fehler: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "Gruppenchat-Name konnte nicht bearbeitet werden"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "Einladungslink konnte nicht bearbeitet werden"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "Einladungslink konnte nicht aktiviert werden"
@@ -4427,19 +4562,27 @@ msgstr "Fehler beim Folgen all deiner Freunde. Bitte versuche es erneut"
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "Vorschlag konnte nicht ausgeblendet werden. Bitte überprüfe deine Internetverbindung"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr "Beitrittsanfrage konnte nicht ignoriert werden"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr "Du konntest dem Gruppenchat nicht beitreten. Bitte versuche es erneut."
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "SMS-App konnte nicht gestartet werden"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "Gruppenchat konnte nicht verlassen werden"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Fehler beim Laden der Konversationen"
@@ -4456,17 +4599,8 @@ msgstr "Feeds konnten nicht geladen werden"
msgid "Failed to load feeds preferences"
msgstr "Fehler beim Laden der Einstellungen für Feeds"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Mitteilungseinstellungen konnten nicht geladen werden."
@@ -4493,16 +4627,15 @@ msgstr "Die vorgeschlagenen Feeds konnten nicht geladen werden."
msgid "Failed to load suggested follows"
msgstr "Die vorgeschlagenen Accounts, denen du folgen solltest, konnten nicht geladen werden"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "Gruppenchat konnte nicht gesperrt werden"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Fehler beim Markieren aller Anfragen als gelesen"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "Gruppenchat konnte nicht stummgeschaltet werden"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Post konnte nicht angeheftet werden"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Germ DM konnte nicht wieder verbunden werden. Fehler: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Daten konnten nicht entfernt werden. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Fehler beim Entfernen der Emoji-Reaktion"
@@ -4542,15 +4675,19 @@ msgstr "Gruppenmitglied konnte nicht entfernt werden"
msgid "Failed to remove verification"
msgstr "Verifizierung konnte nicht entfernt werden"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr "Deine Anfrage konnte nicht zurückgezogen werden. Bitte versuche es erneut."
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr "Standort konnte nicht ermittelt werden. Bitte versuche es erneut."
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Fehler beim Speichern des Entwurfs"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "Bild konnte nicht gespeichert werden"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Interessen konnten nicht gespeichert werden."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "E-Mail konnte nicht gesendet werden, bitte versuche es erneut."
@@ -4580,7 +4717,7 @@ msgstr "Meldung konnte nicht gesendet werden"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Einspruch konnte nicht eingereicht werden. Bitte versuche es erneut."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Du konntest die Stummschaltung des Threads nicht aktivieren oder deaktivieren. Bitte versuche es erneut"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr "Gruppenchat konnte nicht entsperrt werden"
@@ -4597,12 +4734,12 @@ msgstr "Gruppenchat konnte nicht entsperrt werden"
msgid "Failed to unpin list"
msgstr "Fehler beim Lösen der Liste"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Fehler beim Aktualisieren der E-Mail-2FA-Einstellungen"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "E-Mail konnte nicht aktualisiert werden, bitte versuche es erneut."
@@ -4614,7 +4751,7 @@ msgstr "Aktualisierung der Feeds fehlgeschlagen"
msgid "Failed to update notification declaration"
msgstr "Aktualisierung der Mitteilungserklärung fehlgeschlagen"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Einstellungen konnten nicht aktualisiert werden"
@@ -4641,7 +4778,7 @@ msgstr "Fake-Account oder Bot"
msgid "False information about elections"
msgstr "Falsche Informationen über Wahlen"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Feed"
@@ -4649,7 +4786,7 @@ msgstr "Feed"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Feed von {0}"
@@ -4662,7 +4799,7 @@ msgstr "Feed-Ersteller"
msgid "Feed identifier"
msgstr "Feed-Kennzeichen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Feed-Menü"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Feedback an Feed-Betreiber gesendet"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Feeds"
@@ -4739,7 +4876,7 @@ msgstr "Suche nach Sprache filtern (derzeit: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Filtere, wer Mitteilungen zu deiner Aktivität erhalten kann"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Filtere, von wem du Mitteilungen erhalten möchtest"
@@ -4747,11 +4884,11 @@ msgstr "Filtere, von wem du Mitteilungen erhalten möchtest"
msgid "Finalizing"
msgstr "Abschließen"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Endlich!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Finanzen"
msgid "Find accounts to follow"
msgstr "Accounts zum Folgen finden"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Kontakte finden"
@@ -4799,7 +4936,7 @@ msgstr "Finde Leute zum Folgen"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Finde Posts, Nutzer und Feeds auf Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Finde deine Freunde"
@@ -4944,8 +5081,12 @@ msgstr "Gefolgt von <0>{0}0> und <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Gefolgt von <0>{0}0>, <1>{1}1> und {2, plural, one {# anderer Person} other {# anderen}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr "Follower können beitreten"
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Follower von @{0}, die du kennst"
@@ -4995,19 +5136,16 @@ msgstr "{handle} Folge ich"
msgid "Following feed preferences"
msgstr "Following-Feed-Einstellungen"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Following-Feed-Einstellungen"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Folgt dir"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Folgt dir"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Schriftart"
@@ -5069,7 +5207,7 @@ msgstr "Vergessen?"
msgid "Free your feed"
msgstr "Befreie deinen Feed"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "Von"
@@ -5086,35 +5224,35 @@ msgstr "Von <0/>"
msgid "Generate a starter pack"
msgstr "Ein Startpaket generieren"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Einladungslink generieren"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Neuen Einladungslink generieren"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Neuen Link generieren"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germ DM getrennt"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Germ DM-Link"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germ DM wieder verbunden"
@@ -5122,46 +5260,50 @@ msgstr "Germ DM wieder verbunden"
msgid "Get help"
msgstr "Hilfe erhalten"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr "Erhalte Mitteilungen über Startpaket-Beitritte, Verifizierungen und andere Aktivitäten."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Mitteilungen erhalten, wenn dir jemand folgt."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Mitteilungen erhalten, wenn Personen Posts mit „Gefällt mir“ markieren, die du repostet hast."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Mitteilungen erhalten, wenn Personen deine Posts mit „Gefällt mir“ markieren."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr "Erhalte Mitteilungen, wenn Personen deine Reposts mit „Gefällt mir“ markieren."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Mitteilungen erhalten, wenn dich jemand erwähnt."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Mitteilungen erhalten, wenn jemand deine Posts zitiert."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Mitteilungen erhalten, wenn jemand auf deine Posts antwortet."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Mitteilungen erhalten, wenn jemand Posts repostet, die du repostet hast."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Mitteilungen erhalten, wenn jemand deine Posts repostet."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr "Erhalte Mitteilungen, wenn Personen deine Reposts reposten."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr "Erhalte Mitteilungen über Aktivitäten zu Posts, die du abonniert hast."
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Erhalte Mitteilungen über neue Posts"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Mitteilungen zu Posts und Antworten von ausgewählten Accounts erhalten."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Erhalte Mitteilungen über neue Posts von {name}"
@@ -5174,27 +5316,27 @@ msgstr "Erhalte Mitteilungen über die Aktivitäten dieses Accounts"
msgid "Get notified when {name} posts"
msgstr "Mitteilungen erhalten, wenn {name} Posts veröffentlicht"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Mitteilungen erhalten, wenn jemand Posts veröffentlicht"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Los geht's"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIF hochgeladen"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Gib deinem Profil ein Gesicht"
@@ -5213,20 +5355,21 @@ msgstr "Verherrlichung von Gewalt"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Zurück"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Zurück"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Zum vorherigen Schritt zurückgehen"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Zur Startseite"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Zur Startseite"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Zur Startseite"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Zu Account-Einstellungen gehen"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Zur Konversation mit {0} gehen"
@@ -5299,12 +5440,12 @@ msgstr "Zum nächsten Schritt wechseln"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Zum Profil"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "Zum Gruppenchat „{chatName}“ wechseln"
@@ -5320,8 +5461,8 @@ msgstr "Zum Profil des Nutzers gehen"
msgid "Going live is currently disabled for your account"
msgstr "Die Live-Funktion ist für deinen Account derzeit deaktiviert"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Verstanden"
@@ -5340,59 +5481,75 @@ msgstr "Drastische Gewaltdarstellungen"
msgid "Grooming or predatory behavior"
msgstr "Grooming oder ausbeuterisches Verhalten"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr "Gruppenchat"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "Dialog für Einladungslink des Gruppenchats"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "Gruppenchat gesperrt"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "Gruppenchat stummgeschaltet"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr "Name des Gruppenchats aktualisiert"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "Gruppenchat-Einstellungen"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "Gruppenchat entsperrt"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "Gruppenchat nicht mehr stummgeschaltet"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr "Gruppenchats sind noch nicht verfügbar"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr "Gruppenchats sind jetzt verfügbar"
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr "Gruppenchats können maximal {0, plural, other {# Personen}} umfassen."
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "Gruppe ist gesperrt"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Gruppenname"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr "Gruppenname ist zu lang. Die maximale Anzahl an Zeichen beträgt {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Hacking oder Systemangriffe"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Handle zu lang. Bitte versuche einen kürzeren."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "Jetzt gerade"
@@ -5446,7 +5603,7 @@ msgstr "Schädliche oder riskante Aktivitäten"
msgid "Harming or endangering minors"
msgstr "Schädigung oder Gefährdung von Minderjährigen"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Hashtag"
@@ -5458,8 +5615,8 @@ msgstr "Hashtag {tag}"
msgid "Hate speech"
msgstr "Hassrede"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Du hast einen Code? <0>Hier klicken.0>"
@@ -5483,7 +5640,7 @@ msgstr "Von Bluesky 7 Tage lang gespeichert, um Missbrauch zu verhindern, anschl
msgid "Help"
msgstr "Hilfe"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Hilf anderen zu erkennen, dass du kein Bot bist, indem du ein Bild hochlädst oder ein Profilbild erstellst."
@@ -5652,18 +5809,18 @@ msgstr "Hm, es scheint Probleme beim Laden dieser Daten zu geben. Weitere Detail
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hm, wir konnten diesen Moderationsdienst nicht laden."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Einen Moment! Wir gewähren nach und nach Zugriff auf dieses Video und du bist noch in der Warteschlange. Versuche es in Kürze erneut!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Moment! Diese Funktion ist für dich noch nicht verfügbar. Bitte schau später nochmal vorbei."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Startseite"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Schaltet den erweiterten Status des Alt-Textes um, wenn dieser lang ist"
@@ -5757,7 +5914,7 @@ msgstr "Wenn du diese Liste löschst, kannst du sie nicht wiederherstellen."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Wenn du eine eigene Domain hast, kannst du diese als deinen Handle verwenden. Dadurch kannst du deine Identität selbst verifizieren. <0>Hier erfährst du mehr (auf Englisch).0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Wenn du deine E-Mail aktualisieren musst, <0>klicke hier0>."
@@ -5765,7 +5922,7 @@ msgstr "Wenn du deine E-Mail aktualisieren musst, <0>klicke hier0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Wenn du diesen Post löschst, kannst du ihn nicht wiederherstellen."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Wenn du deine E-Mail aktualisierst, wird E-Mail-2FA (Zwei-Faktor-Authentisierung) deaktiviert."
@@ -5773,7 +5930,6 @@ msgstr "Wenn du deine E-Mail aktualisierst, wird E-Mail-2FA (Zwei-Faktor-Authent
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Wenn du dein Passwort ändern möchtest, senden wir dir einen Code, um zu verifizieren, dass dies dein Account ist."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Wenn du einschränken möchtest, wer Mitteilungen über die Aktivitäten deines Accounts erhalten kann, kannst du das unter <0>Einstellungen → Datenschutz und Sicherheit0> ändern."
@@ -5786,23 +5942,33 @@ msgstr "Falls du ein Entwickler bist, kannst du deinen eigenen Server hosten."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr "Ignorieren"
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr "Beitrittsanfrage ignorieren"
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Bild"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "Bild {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Bild {0} von {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "Bild {0} von {imageCount}"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Bildcache geleert, {0} freigegeben"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "Bildergalerie, {0} Bilder"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "Bild ist aufgrund deiner Moderationseinstellungen ausgeblendet."
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "Bild nicht verfügbar."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Bildoptionen"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Identitätsvortäuschung"
msgid "Import contacts"
msgstr "Kontakte importieren"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Kontakte importieren"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Kontakte importieren, um deine Freunde zu finden"
@@ -5881,40 +6047,40 @@ msgstr "Importiert am {0}"
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 "Um dir ein altersgerechtes Erlebnis bieten zu können, benötigen wir dein Geburtsdatum. Das ist einmalig und deine Daten werden vertraulich behandelt."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "In-App"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "In-App-Mitteilungen"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr "In-App, alle"
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr "In-App, Personen, denen du folgst"
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr "In-App, Push"
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr "In-App, Push, alle"
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr "In-App, Push, Personen, denen du folgst"
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "Postfach leer"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Posteingang leer!"
@@ -5963,6 +6129,10 @@ msgstr "Einführung gespeicherter Posts, auch bekannt als Lesezeichen"
msgid "Invalid 2FA confirmation code."
msgstr "Ungültiger 2FA-Bestätigungscode."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr "Ungültiger Gruppenchat-Code."
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Ungültiger handle. Bitte versuche einen anderen."
@@ -5977,10 +6147,14 @@ msgstr "Ungültige Interaktionseinstellungen."
msgid "Invalid phone number"
msgstr "Ungültige Telefonnummer"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Ungültiges Meldethema"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr "Anfrage konnte nicht zurückgezogen werden."
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Ungültiger Bestätigungscode"
@@ -6010,12 +6184,12 @@ msgstr "Freunde einladen"
msgid "Invite friends <0/>"
msgstr "Freunde einladen <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Einladungslink"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "Einladungslink erstellt"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "Einladungslink deaktiviert"
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Hier bist gerade nur du! Füge mehr Leute zu deinem Startpaket hinzu, indem du oben nach ihnen suchst."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "Job-ID: {0}"
@@ -6083,6 +6257,11 @@ msgstr "Job-ID: {0}"
msgid "Jobs"
msgstr "Jobs"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr "Beitreten"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Jobs"
msgid "Join Bluesky"
msgstr "Tritt Bluesky bei"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr "Gruppenchat beitreten"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr "Beitrittsanfrage zurückgezogen."
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "An der Konversation teilnehmen"
msgid "Journalism"
msgstr "Journalismus"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Weiter bearbeiten"
@@ -6143,7 +6331,7 @@ msgstr "Kennzeichnungen auf deinem Account"
msgid "Labels on your content"
msgstr "Kennzeichnungen zu deinen Inhalten"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Spracheinstellungen"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Neuste"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Erfahre mehr über diese Warnung"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Mehr über die Verifizierung auf Bluesky erfahren (auf Englisch)"
@@ -6239,7 +6427,7 @@ msgstr "Mehr über die Verifizierung auf Bluesky erfahren (auf Englisch)"
msgid "Learn more about what is public on Bluesky."
msgstr "Erfahre mehr darüber, was auf Bluesky öffentlich ist (auf Englisch)."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Mehr über deinen Germ DM-Link erfahren"
@@ -6252,8 +6440,8 @@ msgstr "Mehr dazu in deinen <0>Account-Einstellungen0>"
msgid "Learn more."
msgstr "Mehr erfahren."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Verlassen"
@@ -6276,7 +6464,7 @@ msgstr "Chat verlassen"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Konversation verlassen"
@@ -6284,13 +6472,13 @@ msgstr "Konversation verlassen"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Konversation verlassen"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "Gruppenchat verlassen"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr "Diesen Gruppenchat verlassen"
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Hell"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Gefällt mir ({0, plural, one {# Gefällt mir} other {# Gefällt mir}})"
@@ -6346,11 +6534,7 @@ msgstr "10 Posts mit „Gefällt mir“ markieren"
msgid "Like 10 posts to train the Discover feed"
msgstr "Markiere 10 Posts mit „Gefällt mir“, um den Discover-Feed zu trainieren"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "„Gefällt mir“-Mitteilungen"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Diesen Feed mit „Gefällt mir“ markieren"
@@ -6358,8 +6542,8 @@ msgstr "Diesen Feed mit „Gefällt mir“ markieren"
msgid "Like this labeler"
msgstr "Diesen Kennzeichner mit „Gefällt mir“ markieren"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Mit „Gefällt mir“ markiert von"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Gefällt {0, plural, one {# Nutzer} other {# Nutzern}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Gefällt {likeCount, plural, one {# Nutzer} other {# Nutzern}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Gefällt mir"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "„Gefällt mir“ für deine Reposts"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Mitteilungen über „Gefällt mir“-Angaben zu deinen Reposts"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "„Gefällt mir“-Angaben für diesen Post"
@@ -6409,11 +6589,11 @@ msgstr "„Gefällt mir“-Angaben für diesen Post"
msgid "Linear"
msgstr "Linear"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "Link in die Zwischenablage kopiert"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Liste"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Liste nicht mehr stummgeschaltet"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listen"
@@ -6545,7 +6725,7 @@ msgstr "Live-Event wieder eingeblendet"
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."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "Die Live-Funktion befindet sich in der Beta-Phase"
@@ -6595,27 +6775,27 @@ msgstr "Post-Interaktionseinstellungen werden geladen..."
msgid "Loading..."
msgstr "Wird geladen..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "Sperren"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "Gruppenchat sperren"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "Gruppenchat sperren?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "Diesen Gruppenchat sperren"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "Gesperrt"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Log"
@@ -6662,7 +6842,7 @@ msgstr "Es sieht so aus, als ob du einen Following-Feed vermisst. <0>Klicke hier
msgid "Love GIFs"
msgstr "Liebes-GIFs"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "E-Mail-Einstellungen für deinen Account anpassen"
@@ -6687,9 +6867,8 @@ msgstr "Verifizierungseinstellungen verwalten"
msgid "Manage your muted words and tags"
msgstr "Verwalte deine stummgeschalteten Wörter und Tags"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Alle als gelesen markieren"
@@ -6698,13 +6877,12 @@ msgstr "Alle als gelesen markieren"
msgid "Mark as read"
msgstr "Als gelesen markieren"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Alle als gelesen markiert"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Vielleicht später"
@@ -6727,25 +6905,21 @@ 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."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Mitglieder"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "Mitglieder können weiterhin den Chatverlauf lesen, aber keine neuen Nachrichten senden."
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Erwähnungsmitteilungen"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "erwähnte Nutzer"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Erwähnungen"
@@ -6775,22 +6949,22 @@ msgstr "{0} anschreiben"
msgid "Message {displayName}"
msgstr "Nachricht an {displayName} senden"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Nachricht gelöscht"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Nachricht gelöscht"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Nachricht konnte nicht gesendet werden."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Nachricht von @{0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Nachricht ist zu lang"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "Nachricht ist zu lang ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Nachrichtenoptionen"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Nachrichten"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr "Nachrichten dieser Person sind ausgeblendet, solange sie dich blockiert."
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr "Nachrichten dieser Person sind ausgeblendet, solange du sie blockierst."
@@ -6838,10 +7012,6 @@ msgstr "Mitternacht"
msgid "Minor harassment or bullying"
msgstr "Belästigung oder Mobbing von Minderjährigen"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Sonstige Mitteilungen"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Irreführend"
@@ -6850,7 +7020,7 @@ msgstr "Irreführend"
msgid "Missing media"
msgstr "Fehlende Medien"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderation"
@@ -6894,7 +7064,7 @@ msgstr "Moderationsliste aktualisiert"
msgid "Moderation lists"
msgstr "Moderationslisten"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Moderationslisten"
@@ -6903,7 +7073,7 @@ msgstr "Moderationslisten"
msgid "moderation settings"
msgstr "Moderationseinstellungen"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Moderationsstatus"
@@ -6949,7 +7119,7 @@ msgstr "Filme"
msgid "Music"
msgstr "Musik"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Stummschalten"
@@ -6994,7 +7164,7 @@ msgstr "Liste stummschalten"
msgid "Mute these accounts?"
msgstr "Diese Accounts stummschalten?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "Diesen Gruppenchat stummschalten"
@@ -7032,7 +7202,7 @@ msgstr "Thread stummschalten"
msgid "Mute words & tags"
msgstr "Wörter und Tags stummschalten"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "Stummgeschaltet"
@@ -7040,7 +7210,7 @@ msgstr "Stummgeschaltet"
msgid "Muted accounts"
msgstr "Stummgeschaltete Accounts"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Stummgeschaltete Accounts"
@@ -7108,8 +7278,8 @@ msgstr "Navigiert zum nächsten Bildschirm"
msgid "Navigates to your profile"
msgstr "Navigiert zu deinem Profil"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Möchtest du eine Urheberrechtsverletzung, eine rechtliche Anfrage oder ein Problem mit der Einhaltung von Vorschriften melden?"
@@ -7136,34 +7306,34 @@ msgstr "{postsCount, plural, one {Neuer Post} other {Neue Posts}} von {firstAuth
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{postsCount, plural, one {Neuer Post} other {Neue Posts}} von {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Neuer Chat"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "Neuer Chat mit {0}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "Neuer Chat mit {0} und {1}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "Neuer Chat mit {0}, {1} und {memberCount, plural, one {{memberCount} weiteren Person} other {{memberCount} weiteren Personen}}."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Neue E-Mail-Adresse"
@@ -7174,29 +7344,25 @@ msgstr "Neue E-Mail-Adresse"
msgid "New Feature"
msgstr "Neue Funktion"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Mitteilungen über neue Follower"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Neue Follower"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "Neuer Gruppenchat"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "Neuer Gruppenchat"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "Neuer Gruppenchat mit:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Neuer Post"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Neuer Post"
@@ -7262,8 +7428,8 @@ msgstr "Aktuelles"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "Keine GIFs für „{query}“ gefunden."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "Derzeit gibt es keine GIFs zum Anzeigen. Versuche es gleich noch einmal."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Kein Bild"
@@ -7362,7 +7528,7 @@ msgstr "Du folgst {0} nicht mehr"
msgid "No media yet"
msgstr "Noch keine Medien"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Noch keine Nachrichten"
@@ -7378,12 +7544,12 @@ msgstr "Kein Name"
msgid "No notifications yet!"
msgstr "Noch keine Mitteilungen!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Niemandem"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Niemandem"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Kein Ergebnis"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Keine Ergebnisse"
@@ -7509,10 +7675,6 @@ msgstr "Intime Bilder ohne Einwilligung"
msgid "Non-sexual Nudity"
msgstr "Nicht-sexuelle Nacktheit"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Keine"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "Auf dieser Plattform nicht verfügbar."
msgid "Not followed by anyone you’re following"
msgstr "Gefolgt von niemandem, dem du folgst"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Nicht gefunden"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Noch nicht bereit zum Posten? Bewahre deine besten Ideen in den Entwürfen auf, bis der richtige Moment gekommen ist."
@@ -7548,44 +7710,31 @@ msgstr "Hinweis: Dieser Post ist nur für eingeloggte Nutzer sichtbar."
msgid "Nothing saved yet"
msgstr "Noch nichts gespeichert"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Mitteilungseinstellungen"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Mitteilungstöne"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Mitteilungen"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Mitteilungen für alles andere, z. B. wenn jemand über eines deiner Startpakete beitritt."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "jetzt"
@@ -7601,7 +7750,7 @@ msgstr "Nummer muss eine Handynummer sein"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Aus"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "auf<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Onboarding zurücksetzen"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
-msgstr ""
+msgstr "Einer der ausgewählten Empfänger erlaubt keine Gruppenchats."
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Einer der ausgewählten Empfänger hat dich blockiert und kann nicht angeschrieben werden."
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "Bei einem oder mehreren GIFs fehlen Alt-Texte."
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "Bei einem oder mehreren Bildern fehlen Alt-Texte."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr "Eine oder mehrere deiner ausgewählten Dateien sind zu groß. Die maximale Größe beträgt {VIDEO_MAX_SIZE_MB} MB."
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Ein oder mehrere Posts sind zu lang, um als Entwurf gespeichert zu werden. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Die maximale Zeichenzahl beträgt # Zeichen.} other {Die maximale Zeichenzahl beträgt # Zeichen.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Bei einem oder mehreren Videos fehlen Alt-Texte."
@@ -7685,6 +7835,26 @@ msgstr "Bei einem oder mehreren Videos fehlen Alt-Texte."
msgid "Only {0} can reply."
msgstr "Nur {0} kann antworten."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr "Nur {0} von {1} {2, plural, one {Bild} other {Bilder}} hinzugefügt; das Limit liegt bei {MAX_GALLERY_IMAGES}"
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr "Nur Administratoren können Beitrittsanfragen annehmen."
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr "Nur Administratoren können Beitrittsanfragen ignorieren."
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr "Nur Follower können diesem Gruppenchat beitreten."
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Nur Follower, denen ich folge"
msgid "Only image files are supported"
msgstr "Es werden nur Bilddateien unterstützt"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr "Nur Personen, denen {0} folgt, können beitreten."
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr "Nur Personen, denen der Chat-Inhaber folgt, können beitreten"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Es werden nur WebVTT-Dateien (.vtt) unterstützt"
@@ -7712,7 +7892,7 @@ msgstr "Huch, da ist etwas schief gelaufen!"
msgid "Oops!"
msgstr "Huch!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Profilbild-Editor öffnen"
@@ -7720,12 +7900,17 @@ msgstr "Profilbild-Editor öffnen"
msgid "Open camera"
msgstr "Kamera öffnen"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr "Chat öffnen"
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "Chat-Mitglieds-Optionen für {displayName} öffnen"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Konversationsoptionen öffnen"
@@ -7739,16 +7924,16 @@ msgstr "Seitenmenü öffnen"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Emoji-Picker öffnen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Feed-Infobildschirm öffnen"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Feed-Optionsmenü öffnen"
@@ -7760,13 +7945,17 @@ msgstr "Vollständige Emoji-Liste öffnen"
msgid "Open Germ DM"
msgstr "Germ DM öffnen"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr "Gruppenchat öffnen"
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "Gruppenchat-Einstellungen öffnen"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Link zu {niceUrl} öffnen"
@@ -7790,8 +7979,8 @@ msgstr "Paket öffnen"
msgid "Open post options menu"
msgstr "Post-Optionen-Menü öffnen"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Profil öffnen"
@@ -7817,6 +8006,10 @@ msgstr "Storybook öffnen"
msgid "Open system log"
msgstr "Systemprotokoll öffnen"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr "Diesen Gruppenchat öffnen"
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Öffnet zusätzliche Details für einen Debug-Eintrag"
msgid "Opens alt text dialog"
msgstr "Öffnet den Alt-Text-Dialog"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Öffnet die Kamera auf dem Gerät"
@@ -7858,22 +8051,24 @@ msgstr "Öffnet den Post-Editor"
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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr "Öffnet die Gerätegalerie, um bis zu {MAX_GALLERY_IMAGES, plural, other {# Bilder}} oder ein einzelnes Video oder GIF auszuwählen."
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Öffnet den Ablauf, um einen neuen Bluesky-Account zu erstellen"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Öffnet den Ablauf zum Einloggen bei deinem bestehenden Bluesky-Account"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Öffnet das vollständige Bild"
@@ -7890,7 +8085,7 @@ msgstr "Öffnet die Bildauswahl"
msgid "Opens link {0}"
msgstr "Öffnet Link {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Öffnet den Live-Status-Dialog"
@@ -7919,9 +8114,9 @@ msgstr "Öffnet den Post-Editor"
msgid "Opens this draft in the composer"
msgstr "Öffnet diesen Entwurf im Editor"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Öffnet dieses Profil"
@@ -7997,12 +8192,12 @@ msgstr "Unser Blogpost"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Unser Moderationsteam hat deinen Bericht erhalten."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Unsere Moderatoren haben die Meldungen geprüft und beschlossen, deinen Zugriff auf Chats auf Bluesky zu deaktivieren."
@@ -8010,16 +8205,17 @@ msgstr "Unsere Moderatoren haben die Meldungen geprüft und beschlossen, deinen
msgid "Owner"
msgstr "Inhaber"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr "Der Inhaber muss die Gruppe sperren, bevor er sie verlassen kann."
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Seite nicht gefunden"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Seite nicht gefunden"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Video pausieren"
msgid "People"
msgstr "Personen"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "Personen, denen {ownerName} folgt, können sofort beitreten"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "Personen, denen {ownerName} folgt, können eine Beitrittsanfrage stellen"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Personen gefolgt von @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Personen, die @{0} folgen"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Personen, denen ich folge"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "Personen, denen ich folge, können sofort beitreten"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "Personen, denen ich folge, können eine Beitrittsanfrage stellen"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Bilder für Erwachsene."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Feed anheften"
@@ -8152,7 +8348,7 @@ msgstr "Feed anheften"
msgid "Pin to home"
msgstr "An die Startseite anheften"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "An Startbildschirm anheften"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Angeheftet"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} an Startseite angepinnt"
@@ -8236,7 +8432,7 @@ msgstr "Bitte wähle deinen Handle."
msgid "Please choose your password."
msgstr "Bitte wähle dein Passwort."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Bitte klicke auf den Link in der E-Mail, die wir dir gerade gesendet haben, um deine neue E-Mail-Adresse zu verifizieren. Dies ist ein wichtiger Schritt, um weiterhin alle Funktionen von Bluesky nutzen zu können."
@@ -8244,7 +8440,7 @@ msgstr "Bitte klicke auf den Link in der E-Mail, die wir dir gerade gesendet hab
msgid "Please complete the verification captcha."
msgstr "Bitte vervollständige das Verifizierungs-Captcha."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Bitte bestätige deine E-Mail-Adresse, um Videos hochladen zu können."
@@ -8265,14 +8461,14 @@ msgstr "Bitte gib ein Passwort ein. Es muss mindestens 8 Zeichen lang sein."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Bitte gib einen eindeutigen Namen für dieses App-Passwort ein oder verwende unseren zufällig generierten Namen."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Bitte gib einen gültigen Code ein."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Bitte gib eine gültige E-Mail-Adresse ein."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Bitte gib eine gültige, dauerhafte E-Mail-Adresse ein. Du musst möglicherweise später auf diese E-Mail zugreifen können."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Bitte gib unten den Code ein, den wir an <0>{0}0> gesendet haben."
@@ -8293,7 +8489,7 @@ msgstr "Bitte gib unten den Code ein, den wir an <0>{0}0> gesendet haben."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Bitte gib den erhaltenen Code und das neue Passwort ein, das du verwenden möchtest."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Bitte gib den Sicherheitscode ein, den wir an deine vorherige E-Mail-Adresse gesendet haben."
@@ -8306,7 +8502,7 @@ msgstr "Bitte gib deine E-Mail ein."
msgid "Please enter your invite code."
msgstr "Bitte gib deinen Einladungscode ein."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Bitte gib deine neue E-Mail-Adresse ein."
@@ -8323,7 +8519,7 @@ msgstr "Bitte gib deinen Nutzernamen ein"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Bitte erläutere, warum du denkst, dass diese Kennzeichnung von {0} fälschlicherweise vergeben wurde"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Bitte erkläre, warum du denkst, dass deine Chats fälschlicherweise deaktiviert wurden"
@@ -8366,7 +8562,7 @@ msgstr "Bitte verwende die native App, um deine Kontakte zu importieren."
msgid "Please use the native app to sync your contacts."
msgstr "Bitte nutze die native App, um deine Kontakte synchronisieren zu können."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Bitte verifiziere deine E-Mail"
@@ -8383,7 +8579,7 @@ msgstr "Politik"
msgid "Porn"
msgstr "Pornografie"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Posten"
@@ -8403,12 +8599,12 @@ msgstr "Foto posten"
msgid "Post a video"
msgstr "Video posten"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Alle posten"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Trotzdem posten"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Post blockiert"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Post von @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Post gelöscht"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Fehler beim Hochladen des Posts. Bitte prüfe deine Internetverbindung und versuche es erneut."
@@ -8454,7 +8650,7 @@ msgstr "Post von dir ausgeblendet"
msgid "Post interaction settings"
msgstr "Post-Interaktionseinstellungen"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Post-Interaktionseinstellungen"
@@ -8464,8 +8660,8 @@ msgstr "Post-Interaktionseinstellungen"
msgid "Post language selection"
msgstr "Post-Sprache auswählen"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Link posten"
@@ -8491,7 +8687,6 @@ msgstr "Post gelöst"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Posts können basierend auf ihrem Text, ihren Tags oder beidem stummgesc
msgid "Posts hidden"
msgstr "Posts ausgeblendet"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Posts, Antworten"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Möglicherweise irreführender Link"
@@ -8528,6 +8719,7 @@ msgstr "Drücke, um die Verbindung erneut zu versuchen"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Zum wiederholen drücken"
@@ -8536,7 +8728,7 @@ msgstr "Zum wiederholen drücken"
msgid "Press to view followers of this account that you also follow"
msgstr "Drücken, um Follower dieses Accounts anzuzeigen, denen du ebenfalls folgst"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Vorschau"
@@ -8559,21 +8751,20 @@ msgstr "Datenschutz"
msgid "Privacy and security"
msgstr "Datenschutz und Sicherheit"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Datenschutz und Sicherheit"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Datenschutz- und Sicherheitseinstellungen"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Datenschutzerklärung"
msgid "Privacy violation of a minor"
msgstr "Verletzung der Privatsphäre eines Minderjährigen"
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "GIF wird verarbeitet..."
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Video wird verarbeitet..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Wird verarbeitet..."
@@ -8602,8 +8793,8 @@ msgstr "Wird verarbeitet..."
msgid "profile"
msgstr "Profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Post veröffentlichen"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Posts veröffentlichen"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Antworten veröffentlichen"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Antwort veröffentlichen"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Push"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Push-Mitteilungen"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr "Push, alle"
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr "Push, Personen, denen du folgst"
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "QR-Code wurde heruntergeladen!"
msgid "QR code saved to your camera roll!"
msgstr "QR-Code in deiner Galerie gespeichert!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Zitat-Mitteilungen"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Zitieren deaktiviert"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Zitate"
@@ -8733,11 +8920,11 @@ msgstr "Limit für Anfragen überschritten. Bitte versuche es später erneut."
msgid "Re-attach quote"
msgstr "Zitat wieder anhängen"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Einladungslink wieder aktivieren"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Link wieder aktivieren"
@@ -8745,8 +8932,8 @@ msgstr "Link wieder aktivieren"
msgid "React with {emoji}"
msgstr "Mit {emoji} reagieren"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Reaktionen"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "Erfahre, wie du Suchfilter verwendest (auf Englisch)"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Blogpost lesen (auf Englisch)"
@@ -8812,11 +8999,11 @@ msgstr "Echte Personen."
msgid "Reason for appeal"
msgstr "Grund für den Einspruch"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Erhalte In-App-Mitteilungen"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Erhalte Push-Mitteilungen"
@@ -8841,6 +9028,10 @@ msgstr "Empfohlen"
msgid "Reconnect"
msgstr "Erneut verbinden"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr "Aktualisiere die Seite, um es zu sehen."
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Ablehnen"
msgid "Reject chat request"
msgstr "Chat-Anfrage ablehnen"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Konversationen neu laden"
@@ -8896,17 +9087,17 @@ msgstr "Account entfernen"
msgid "Remove all contacts"
msgstr "Alle Kontakte entfernen"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Anhang entfernen"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Profilbild entfernen"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Banner entfernen"
@@ -8914,8 +9105,9 @@ msgstr "Banner entfernen"
msgid "Remove caption file"
msgstr "Untertiteldatei entfernen"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Einbettung entfernen"
@@ -8933,8 +9125,8 @@ msgstr "Feed entfernen?"
msgid "Remove from chat"
msgstr "Aus dem Chat entfernen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Aus gespeicherten Posts entfernen"
msgid "Remove from your feeds?"
msgstr "Aus deinen Feeds entfernen?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Bild entfernen"
@@ -9009,11 +9201,11 @@ msgstr "Verifizierung entfernen"
msgid "Remove your verification for this account?"
msgstr "Deine Verifizierung für diesen Account entfernen?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Vom Autor entfernt"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Von dir entfernt"
@@ -9035,7 +9227,7 @@ msgstr "Aus gespeicherten Posts entfernt"
msgid "Removed from starter pack"
msgstr "Aus dem Startpaket entfernt"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Antwort auf deinen Post"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Antworten"
@@ -9104,14 +9295,14 @@ msgstr "Antworten deaktiviert"
msgid "Replies to this post are disabled."
msgstr "Antworten zu diesem Post sind deaktiviert."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Antworten"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Antworten ({0, plural, one {# Antwort} other {# Antworten}})"
@@ -9125,10 +9316,6 @@ msgstr "Antwort vom Thread-Autor ausgeblendet"
msgid "Reply Hidden by You"
msgstr "Antwort von dir ausgeblendet"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Antwort-Mitteilungen"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Die Antworteinstellungen werden vom Autor des Threads festgelegt"
@@ -9146,9 +9333,9 @@ msgstr "Sichtbarkeit der Antwort aktualisiert"
msgid "Reply was successfully hidden"
msgstr "Antwort wurde erfolgreich ausgeblendet"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Melden"
@@ -9164,13 +9351,13 @@ msgstr "Account melden"
msgid "Report conversation"
msgstr "Konversation melden"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Melde-Dialog"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Feed melden"
@@ -9179,7 +9366,7 @@ msgstr "Feed melden"
msgid "Report list"
msgstr "Liste melden"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Nachricht melden"
@@ -9199,8 +9386,8 @@ msgstr "Startpaket melden"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Meldung eingereicht"
@@ -9213,7 +9400,7 @@ msgstr "Diese Konversation melden"
msgid "Report this feed"
msgstr "Melde diesen Feed"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "Diesen Gruppenchat melden"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Melde diese Liste"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Diesen Livestream melden"
@@ -9256,10 +9443,6 @@ msgstr "Reposten"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Reposten ({0, plural, one {# Repost} other {# Reposts}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Repost-Mitteilungen"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Repostet von dir"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Reposts"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Reposts von diesem Post"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Reposts deiner Reposts"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Mitteilungen über Reposts deiner Reposts"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr "Zugang zum Gruppenchat anfragen"
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr "Anfrage angenommen."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Code anfordern"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr "Anfrage ignoriert."
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr "Beitrittsanfrage"
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr "Angefragt"
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "Anfragen"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr "Beitrittsanfragen"
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Vor dem Posten ist ein Alternativtext erforderlich"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Erfordert einen E-Mail-Code, um dich in deinen Account einzuloggen."
@@ -9328,7 +9534,11 @@ msgstr "Für diesen Anbieter erforderlich"
msgid "Required in your region"
msgstr "Erforderlich in deiner Region"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr "Anfrage zurückziehen"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Erneut senden"
@@ -9393,15 +9603,16 @@ msgstr "Wiederholt die letzte Aktion, bei der ein Fehler aufgetreten ist"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Wiederholt die letzte Aktion, bei der ein Fehler aufgetreten ist"
msgid "Retry"
msgstr "Wiederholen"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Ladeoptionen für Meldung erneut laden"
@@ -9426,14 +9637,14 @@ msgstr "Ladeoptionen für Meldung erneut laden"
msgid "Return to previous page"
msgstr "Zurück zur vorherigen Seite"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Zurück zur Startseite"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Zurück zur vorherigen Seite"
@@ -9454,7 +9665,7 @@ msgstr "Traurige GIFs"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Geburtsdatum speichern"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Änderungen speichern"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Änderungen speichern?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Entwurf speichern"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Entwurf speichern?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "QR-Code speichern"
msgid "Save these options for next time"
msgstr "Diese Optionen für das nächste Mal speichern"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "In meinen Feeds speichern"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Gespeichert"
msgid "Saved Feeds"
msgstr "Gespeicherte Feeds"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Gespeicherte Posts"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "In deinen Feeds gespeichert"
@@ -9551,8 +9764,8 @@ msgstr "In deinen Feeds gespeichert"
msgid "Say hello!"
msgstr "Sag Hallo!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "Sag jemandem Hallo"
@@ -9576,18 +9789,18 @@ msgstr "Nach rechts scrollen"
msgid "Scroll to top"
msgstr "Nach oben scrollen"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Suche"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Posts von @{0} durchsuchen"
@@ -9667,7 +9880,7 @@ msgstr "Meine Posts durchsuchen"
msgid "Search posts"
msgstr "Posts durchsuchen"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Profile suchen"
msgid "Search..."
msgstr "Suche..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Sucht nach Profilen"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Sicherheitsmaßnahme erforderlich"
@@ -9759,7 +9972,7 @@ msgstr "{langName} auswählen"
msgid "Select a color"
msgstr "Wähle eine Farbe"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Grund auswählen"
@@ -9828,7 +10041,7 @@ msgstr "GIF auswählen"
msgid "Select GIF \"{0}\""
msgstr "GIF „{0}“ auswählen"
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "Mitglieder für den Gruppenchat auswählen"
@@ -9850,7 +10063,7 @@ msgstr "Sprache auswählen..."
msgid "Select languages"
msgstr "Sprachen auswählen"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Moderationsdienst auswählen"
@@ -9904,11 +10117,11 @@ msgstr "Wähle deine Interessen aus den folgenden Optionen aus"
msgid "Select your preferred language for translations in your feed."
msgstr "Wähle deine bevorzugte Sprache für Übersetzungen in deinem Feed aus."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Wähle deine bevorzugten Mitteilungs-Kanäle aus"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "Das Auswählen mehrerer Medientypen wird nicht unterstützt."
@@ -9921,9 +10134,9 @@ msgstr "Selbstverletzendes oder gefährliches Verhalten"
msgid "Send code"
msgstr "Code senden"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "E-Mail senden"
@@ -9939,7 +10152,7 @@ msgstr "Fehlerbericht senden"
msgid "Send feedback"
msgstr "Feedback senden"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Nachricht senden"
@@ -9952,7 +10165,7 @@ msgstr "Post an {name} senden"
msgid "Send post to..."
msgstr "Post senden an..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Meldung senden an {title}"
@@ -9960,7 +10173,7 @@ msgstr "Meldung senden an {title}"
msgid "Send the message from your phone"
msgstr "Sende die Nachricht von deinem Handy aus"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Per Direktnachricht senden"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "Gesendet um {0}"
@@ -10015,14 +10228,14 @@ msgstr "Gib unten dein Geburtsdatum ein und schon kannst du wieder posten und en
msgid "Sets email for password reset"
msgstr "Legt die E-Mail für das Zurücksetzen des Passworts fest"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Einstellungen"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Einstellungen für Aktivitäten von anderen"
@@ -10030,39 +10243,39 @@ msgstr "Einstellungen für Aktivitäten von anderen"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Einstellungen, um anderen zu erlauben, Mitteilungen über deine Posts zu erhalten"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Einstellungen für Mitteilungen zu „Gefällt mir“-Angaben"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Einstellungen für Erwähnungsmitteilungen"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Einstellungen für Mitteilungen über neue Follower"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Einstellungen für Mitteilungen für alles andere"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Einstellungen für Mitteilungen zu „Gefällt mir“-Angaben für deine Reposts"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Einstellungen für Mitteilungen zu Reposts deiner Reposts"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Einstellungen für Mitteilungen zu Zitaten"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Einstellungen für Mitteilungen zu Antworten"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Einstellungen für Mitteilungen zu Reposts"
@@ -10079,10 +10292,12 @@ msgstr "Sexuelle Aktivität oder erotische Nacktheit."
msgid "Sexually Suggestive"
msgstr "Sexuell suggestiv"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Autor-DID teilen"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Bild teilen"
@@ -10124,7 +10339,7 @@ msgstr "Post über at:// URI teilen"
msgid "Share QR code"
msgstr "QR-Code teilen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Diesen Feed teilen"
@@ -10151,7 +10366,7 @@ msgstr "Teilen über..."
msgid "Share your contacts to find friends"
msgstr "Teile deine Kontakte, um Freunde finden zu können"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Tester für gemeinsame Einstellungen"
@@ -10167,16 +10382,16 @@ msgstr "Alt-Text anzeigen"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Trotzdem anzeigen"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "Automatisierungskennzeichnung anzeigen"
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Warnung anzeigen und aus Feeds filtern"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Anzeigen, wenn du live bist"
@@ -10297,15 +10512,17 @@ msgstr "Zeigt den Inhalt an"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Einloggen oder einen Account erstellen"
msgid "Sign in or create your account to join the conversation!"
msgstr "Logge dich ein oder erstelle einen Account, um der Konversation beizutreten!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr "Logge dich ein, um die Einladung annehmen zu können."
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Einloggen bei einem Account, der nicht aufgeführt ist"
@@ -10337,6 +10558,10 @@ msgstr "Einloggen bei einem Account, der nicht aufgeführt ist"
msgid "Sign in to Bluesky or create a new account"
msgstr "Logge dich bei Bluesky ein oder erstelle einen neuen Account"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr "Logge dich ein, um Zugang zu diesem Gruppenchat anfragen zu können."
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Logge dich ein, um den Post zu sehen"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Ausloggen"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Ausloggen"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Ausloggen?"
@@ -10391,7 +10616,7 @@ msgstr "Überspringen"
msgid "Skip contact sharing and continue to the app"
msgstr "Kontakte nicht teilen und mit der App fortfahren"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Leere Posts überspringen?"
@@ -10405,7 +10630,7 @@ msgstr "Überspringe die Einführung und beginne mit der Nutzung deines Accounts
msgid "Skip to next step"
msgstr "Zum nächsten Schritt springen"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "Bild"
@@ -10413,7 +10638,7 @@ msgstr "Bild"
msgid "Smaller"
msgstr "Kleiner"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Erinnerung vorübergehend ausblenden"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "Jemand hat die Gruppe verlassen"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Jemand hat mit {0} reagiert"
@@ -10487,17 +10712,22 @@ msgstr "Jemand wurde entfernt"
msgid "Someone was removed from the group"
msgstr "Jemand wurde aus der Gruppe entfernt"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr "Es gibt etwas Neues"
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Etwas stimmt mit den Daten, die du melden möchtest, nicht. Bitte kontaktiere den Support."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Etwas ist schiefgelaufen"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Etwas ist schiefgelaufen!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Etwas ist schiefgelaufen. Bitte versuche es in Kürze noch einmal."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Etwas stimmt nicht? Lass es uns wissen."
@@ -10568,7 +10798,7 @@ msgstr "Sport"
msgid "Start a conversation, and it will appear here."
msgstr "Starte eine Konversation, und sie wird hier angezeigt."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Starte einen neuen Chat"
@@ -10582,17 +10812,17 @@ msgstr "Beginne, Personen hinzuzufügen"
msgid "Start adding people!"
msgstr "Beginne, Personen hinzuzufügen!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Chat starten"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Chat mit {displayName} starten"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Startpaket"
@@ -10654,12 +10884,12 @@ msgstr "Der Speicher wurde gelöscht, du musst die App jetzt neu starten."
msgid "Stored as part of a secure code for matching with others"
msgstr "Als Teil eines sicheren Codes gespeichert, um Abgleiche mit anderen durchführen zu können"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Storybook"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 "Du streamst auf Twitch? Setze deinen Live-Status auf Bluesky, um deinem Profilbild ein Abzeichen hinzuzufügen. Ein Tipp darauf führt direkt zu deinem Stream."
@@ -10671,8 +10901,8 @@ msgstr "Du streamst auf Twitch? Setze deinen Live-Status auf Bluesky, um deinem
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Einreichen"
@@ -10684,9 +10914,9 @@ msgstr "Einspruch einlegen"
msgid "Submit Appeal"
msgstr "Einspruch einlegen"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Meldung absenden"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Abonnieren"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr "Auf {0} abonnieren"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr "{publicationTitle} auf {0} abonnieren"
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Erfolg"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Erfolgreich!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr "Du bist dem Gruppenchat erfolgreich beigetreten!"
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Erfolgreich verifiziert"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Vorgeschlagen"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Sonnenuntergang"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,20 +11014,20 @@ msgstr "Support"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Die Unterstützung für diese Funktion in deinem Land ist noch nicht aktiviert! Bitte versuche es später erneut."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
-msgstr ""
+msgstr "Gesperrte Accounts können nicht an Gruppenchats teilnehmen."
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
-msgstr ""
+msgstr "Gesperrte Accounts können nicht am Chat teilnehmen."
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Account wechseln"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Accounts wechseln"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Zu {0} wechseln"
@@ -10828,7 +11062,7 @@ msgstr "Nur Tags"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Klicke unten, um Bluesky den Zugriff auf deinen GPS-Standort zu erlauben. Wir verwenden diese Daten, um genauer bestimmen zu können, welche Inhalte und Funktionen in deiner Region verfügbar sind."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr "Für Details tippen"
@@ -10854,33 +11088,51 @@ msgstr "Tippe, um zu bestätigen, dass du diese Änderungen verstanden hast und
msgid "Tap to close context menu"
msgstr "Tippen, um das Kontextmenü zu schließen"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr "Tippe hier, um diesen Einladungslink zu kopieren"
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Tippe, um zu schließen"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr "Tippe hier, um diesem Gruppenchat sofort beizutreten"
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr "Tippe hier, um diesen Gruppenchat zu öffnen"
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Tippen, um zu entfernen"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "Tippen, um deine {0} Reaktion zu entfernen"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr "Tippe hier, um Zugang zu diesem Gruppenchat anzufragen"
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Tippen, um es erneut zu versuchen"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "Tippen, um {0} Reaktionen anzuzeigen"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Tippen, um alle Reaktionen anzuzeigen"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Tippen, um Reaktionen anzuzeigen"
@@ -10924,7 +11176,7 @@ msgstr "Bedingungen"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Text & Tags"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Text-Eingabefeld"
@@ -11049,6 +11301,11 @@ msgstr "Die folgenden Einstellungen werden als Standard für das Erstellen neuer
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "Die Gesetze in deiner Region verlangen, dass du verifizierst, dass du volljährig bist, um auf bestimmte Funktionen zugreifen zu können. Tippe hier, um mehr zu erfahren."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr "Das Mitgliederlimit wurde erreicht."
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "Der Post, auf den du antwortest, wurde vom Autor als {suggestedLanguageName} markiert. Möchtest du auf <0>{suggestedLanguageName}0> antworten?"
@@ -11057,10 +11314,10 @@ msgstr "Der Post, auf den du antwortest, wurde vom Autor als {suggestedLanguageN
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Die Datenschutzerklärung wurde nach <0/> verschoben"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
-msgstr "Das ausgewählte Video ist größer als {videoSize} MB. Bitte versuche es erneut mit einer kleineren Datei."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
+msgstr "Das ausgewählte Video ist größer als {VIDEO_MAX_SIZE_MB} MB. Bitte versuche es erneut mit einer kleineren Datei."
#: src/lib/hooks/useCleanError.ts:41
#: src/lib/strings/errors.ts:19
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "Für diesen Gruppenchat gibt es keinen Einladungslink."
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "Beim Laden der GIFs ist ein Problem aufgetreten. Überprüfe deine Verbindung und versuche es erneut."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "Es gab ein Problem mit deiner Internetverbindung. Bitte versuche es erneut"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "Es gab ein Problem mit deiner Internetverbindung. Bitte versuche es erne
msgid "There was an issue contacting the server"
msgstr "Beim Kontaktieren des Servers ist ein Problem aufgetreten"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Beim Kontaktieren des Servers ist ein Problem aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Beim Abrufen von Mitteilung ist ein Problem aufgetreten. Tippe hier, um es erneut zu versuchen."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Beim Abrufen von Posts ist ein Problem aufgetreten. Tippe hier, um es erneut zu versuchen."
@@ -11161,7 +11420,7 @@ msgstr "Es gab ein Problem beim Abrufen deiner Service-Informationen"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Beim Entfernen dieses Feeds ist ein Problem aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Dieser Einspruch wird an <0>{sourceName}0> gesendet."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Dieser Einspruch wird an den Moderationsdienst von Bluesky gesendet."
@@ -11263,7 +11522,7 @@ msgstr "Dieser Einspruch wird an den Moderationsdienst von Bluesky gesendet."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "Dieser Autor hat entschieden, seine Posts nur für eingeloggte Nutzer sichtbar zu machen."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "Über diesen Button können andere die Germ DM-App öffnen, um dir eine Nachricht zu senden. Die Sichtbarkeit kannst du in der Germ DM-App verwalten oder über den untenstehenden Button die Verbindung zwischen deinem Bluesky-Account und Germ DM vollständig trennen."
@@ -11271,7 +11530,12 @@ msgstr "Über diesen Button können andere die Germ DM-App öffnen, um dir eine
msgid "This chat has ended"
msgstr "Dieser Chat wurde beendet"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr "Dieser Chat ist voll"
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "Dieser Chat ist gesperrt"
@@ -11310,7 +11574,11 @@ msgstr "Dieser Inhalt ist nicht verfügbar, da einer der beteiligten Nutzer den
msgid "This content is not viewable without a Bluesky account."
msgstr "Dieser Inhalt ist ohne einen Bluesky-Account nicht sichtbar."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr "Diese Konversation ist gesperrt."
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Diese Konversation ist mit einem gelöschten oder deaktivierten Account.
msgid "This draft will be permanently deleted."
msgstr "Dieser Entwurf wird endgültig gelöscht."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Diese E-Mail ist bereits mit deinem Account verknüpft."
@@ -11360,7 +11628,7 @@ msgstr "Dieser Feed ist nicht mehr online. Wir zeigen stattdessen <0>„Discover
msgid "This handle is reserved. Please try a different one."
msgstr "Dieser Handle ist reserviert. Bitte versuche einen anderen."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "Dieses Bild konnte nicht verwendet werden. Bitte versuche es mit einem anderen Format wie .jpg oder .png."
@@ -11368,6 +11636,18 @@ msgstr "Dieses Bild konnte nicht verwendet werden. Bitte versuche es mit einem a
msgid "This information is private and not shared with other users."
msgstr "Diese Information ist privat und wird nicht mit anderen Nutzern geteilt."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr "Dieser Einladungslink wurde deaktiviert."
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr "Dieser Einladungslink ist abgelaufen"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr "Dieser Einladungslink ist ungültig"
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "Hier ist noch nichts"
@@ -11377,7 +11657,7 @@ msgstr "Hier ist noch nichts"
msgid "This is not a valid link"
msgstr "Das ist kein gültiger Link"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "Diese Kennzeichnung zeigt anderen, dass dieser Account automatisiert ist. Ist die Kennzeichnung aktiviert, erscheint sie neben dem Accountnamen im Profil und bei Posts. Die Kennzeichnung kann jederzeit ein- oder ausgeschaltet werden."
@@ -11410,13 +11690,13 @@ msgstr "Diese Liste – erstellt von dir – enthält mögliche Verstöße gegen
msgid "This list is empty."
msgstr "Diese Liste ist leer."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr "Diese Nachricht ist ausgeblendet, weil dieser Nutzer dich blockiert."
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr "Diese Nachricht ist ausgeblendet, weil du diesen Nutzer blockierst."
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Der Autor dieses Posts hat das Zitieren dieses Posts deaktiviert."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Diese Antwort wird in einen ausgeblendeten Bereich am Ende deines Threads verschoben und Mitteilungen über nachfolgende Antworten werden sowohl für dich als auch für andere stummgeschaltet."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "Dieser Bildschirm ist nur für Gruppenkonversationen verfügbar."
@@ -11494,18 +11775,18 @@ msgstr "Dieser Nutzer hat keinen Anzeigenamen und kann daher nicht verifiziert w
msgid "This user doesn't have any followers."
msgstr "Dieser Nutzer hat keine Follower."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Dieser Nutzer hat dich blockiert und kann nicht angeschrieben werden."
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr "Dieser Nutzer hat dich blockiert. Du kannst seinen Inhalt nicht sehen."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
-msgstr ""
+msgstr "Dieser Nutzer hat den Chat deaktiviert und kann nicht angeschrieben werden."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
@@ -11574,7 +11855,7 @@ msgstr "Thread-Einstellungen"
msgid "Threaded"
msgstr "Thread"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Thread-Einstellungen"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Um die E-Mail-2FA-Methode zu deaktivieren, verifiziere bitte deinen Zugriff auf die E-Mail-Adresse."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Um E-Mail-2FA (Zwei-Faktor-Authentisierung) zu deaktivieren, verifiziere bitte deinen Zugriff auf <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Top"
msgid "Top replies first"
msgstr "Beliebte Antworten zuerst"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Thema"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Angesagte Videos"
msgid "Trolling"
msgstr "Trolling"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "Vertrauen entsteht durch Beziehungen, Communitys und einem gemeinsamen Kontext. Deshalb ermöglichen wir auch <0>vertrauenswürdige Verifizierer0>: Organisationen, die Verifizierungen direkt ausstellen können."
@@ -11763,13 +12044,17 @@ msgstr "Dein Dienst kann nicht kontaktiert werden. Bitte überprüfe deine Inter
msgid "Unable to delete"
msgstr "Löschen nicht möglich"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
-msgid "Unable to find a selected recipient."
-msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr "Beitrittsanfragen konnten nicht geladen werden."
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr "Ein ausgewählter Empfänger konnte nicht gefunden werden."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
-msgstr ""
+msgstr "Der ausgewählte Empfänger konnte nicht gefunden werden."
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
@@ -11791,7 +12076,7 @@ msgstr "Nicht verfügbar"
msgid "Unavailable feed information"
msgstr "Feed-Information nicht verfügbar"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Liste entsperren"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Rückgängig machen"
@@ -11872,7 +12157,7 @@ msgstr "Account entfolgen"
msgid "Unfollows the user"
msgstr "Entfolgt dem Nutzer"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Leider unterstützt keiner deiner abonnierten Kennzeichner diesen Meldungstyp."
@@ -11904,13 +12189,13 @@ msgstr "Nicht gekennzeichnete Inhalte für Erwachsene"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Nicht gekennzeichnete, missbräuchliche oder nicht einvernehmliche Inhalte für Erwachsene"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Gefällt mir nicht mehr ({0, plural, one {# Gefällt mir} other {# Gefällt mir}})"
@@ -11918,7 +12203,7 @@ msgstr "Gefällt mir nicht mehr ({0, plural, one {# Gefällt mir} other {# Gefä
msgid "Unlock chat"
msgstr "Chat entsperren"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr "Diesen Gruppenchat entsperren"
@@ -11955,7 +12240,7 @@ msgstr "Stummschaltung von Konversation aufheben"
msgid "Unmute list"
msgstr "Liste nicht mehr stummschalten"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "Stummschaltung für diesen Gruppenchat aufheben"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Lösen"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Feed lösen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Von Startseite lösen"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Moderationsliste lösen"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} von der Startseite gelöst"
@@ -12030,11 +12315,11 @@ msgstr "Von diesem Kennzeichner abmelden"
msgid "Unsubscribed from list"
msgstr "Von der Liste abgemeldet"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "Inhalt der Zwischenablage wird nicht unterstützt"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Nicht unterstützter Videotyp: {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "Aktualisieren"
msgid "Update <0>{displayName}0> in Lists"
msgstr "<0>{displayName}0> in Listen aktualisieren"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr "App aktualisieren"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "E-Mail aktualisieren"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Einladungslink aktualisieren"
@@ -12065,11 +12354,19 @@ msgstr "Einladungslink aktualisieren"
msgid "Update to {domain}"
msgstr "Aktualisieren auf {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr "Aktualisiere deine App"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr "Aktualisiere deine App, um es zu sehen."
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "Aktualisiere deine App auf die neueste Version, um mitzumachen!"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Aktualisiere deine E-Mail-Adresse"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Aktualisieren der Antwort-Sichtbarkeit ist fehlgeschlagen"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Stattdessen ein Foto hochladen"
@@ -12098,39 +12395,40 @@ msgstr "Stattdessen ein Foto hochladen"
msgid "Upload a text file to:"
msgstr "Hochladen einer Textdatei auf:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Von Kamera hochladen"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Von Dateien hochladen"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Aus der Bibliothek hochladen"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "GIF wird hochgeladen..."
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Bilder werden hochgeladen..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Link-Vorschaubild wird hochgeladen..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Video wird hochgeladen..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "Nutzer"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Nutzer blockiert"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Nutzerliste von {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "Nutzerliste von {0}"
@@ -12255,12 +12553,12 @@ msgstr "Nutzer gefolgt von <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "Nutzer, die <0>@{0}0> folgen"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "Nutzern, denen ich folge"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Nutzern, denen ich folge"
@@ -12277,7 +12575,7 @@ msgstr "Verifizierung fehlgeschlagen. Bitte versuche es erneut."
msgid "Verification settings"
msgstr "Verifizierungseinstellungen"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Verifizierungseinstellungen"
@@ -12304,8 +12602,8 @@ msgstr "Erneut verifizieren"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Code verifizieren"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "DNS-Eintrag verifizieren"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "E-Mail-Code verifizieren"
@@ -12349,7 +12647,7 @@ msgstr "Diesen Account verifizieren?"
msgid "Verify your age"
msgstr "Verifiziere dein Alter"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Version {0}"
msgid "Video"
msgstr "Video"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Video konnte nicht verarbeitet werden"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Video-Feed"
@@ -12419,7 +12717,7 @@ msgstr "Video nicht gefunden."
msgid "Video settings"
msgstr "Video-Einstellungen"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Video hochgeladen"
@@ -12432,18 +12730,18 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videos"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
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:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Ansehen"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr "{0} ansehen"
@@ -12455,7 +12753,7 @@ msgstr "Profilbild von {0} ansehen"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Profil von {0} ansehen"
msgid "View {0}’s profile"
msgstr "Profil von {0} ansehen"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "Profil von {displayName} anzeigen"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr "{publicationTitle} ansehen"
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr "Profil von @{0} ansehen"
@@ -12503,10 +12801,18 @@ msgstr "Details ansehen"
msgid "View full thread"
msgstr "Vollständigen Thread ansehen"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr "Eingehende Gruppenchat-Anfragen anzeigen"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr "Eingehende Anfragen ansehen"
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr "Eingehende Beitrittsanfragen für diesen Gruppenchat ansehen"
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Informationen zu diesen Kennzeichnungen anzeigen"
@@ -12522,7 +12828,7 @@ msgstr "Mehr ansehen"
msgid "View more trending videos"
msgstr "Mehr angesagte Videos ansehen"
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Post ansehen"
@@ -12539,18 +12845,18 @@ msgstr "Profil ansehen"
msgid "View profile banner"
msgstr "Profilbanner ansehen"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
-msgstr "Veröffentlichung ansehen"
+msgstr "Seite besuchen"
#: src/view/com/profile/ProfileSubpageHeader.tsx:108
msgid "View the avatar"
msgstr "Profilbild ansehen"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "Einladungslink für diesen Gruppenchat anzeigen"
@@ -12563,7 +12869,7 @@ msgstr "Sieh dir den von @{0} bereitgestellten Kennzeichnungsdienst an"
msgid "View this user's verifications"
msgstr "Verifizierungen dieses Nutzers ansehen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Nutzer ansehen, denen dieser Feed gefällt"
@@ -12596,8 +12902,8 @@ msgstr "Sieh dir deine stummgeschalteten Accounts an"
msgid "View your verifications"
msgstr "Deine Verifizierungen ansehen"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Vollständiges Bild ansehen"
@@ -12640,8 +12946,8 @@ msgstr "Inhaltswarnung anzeigen"
msgid "Warn content and filter from feeds"
msgstr "Inhaltswarnung anzeigen und in Feeds ausblenden"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Jetzt ansehen"
@@ -12665,10 +12971,14 @@ msgstr "Für diesen Tag konnten wir keine Ergebnisse finden."
msgid "We couldn't find any results for that topic."
msgstr "Wir konnten keine Ergebnisse zu diesem Thema finden."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Wir konnten diese Konversation nicht laden"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr "Beitrittsanfragen für diese Konversation konnten nicht geladen werden"
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "Einstellungen für diese Konversation konnten nicht geladen werden"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Wir empfehlen, mindestens zwei Interessen auszuwählen."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Wir haben eine E-Mail an <0>{0}0> gesendet, die einen Link enthält. Bitte klicke darauf, um den E-Mail-Verifizierungsprozess abzuschließen."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Wir konnten nicht feststellen, ob du berechtigt bist, Videos hochzuladen. Bitte versuche es erneut."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "Wir benachrichtigen dich, sobald wir deine Freunde gefunden haben."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Wir senden eine E-Mail an <0>{0}0>, die einen Link enthält. Bitte klicke darauf, um den E-Mail-Verifizierungsprozess abzuschließen."
@@ -12779,12 +13089,12 @@ msgstr "Wir haben Probleme bei der Initialisierung des Altersverifizierungsproze
msgid "We're having network issues, try again"
msgstr "Wir haben Netzwerkprobleme, versuche es erneut"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "Wir haben Netzwerkprobleme. Bitte versuche es erneut"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Wir führen eine neue Ebene der Verifizierung auf Bluesky ein — ein leicht erkennbares Häkchen."
@@ -12814,12 +13124,12 @@ msgstr "Es tut uns leid, aber deine Suche konnte nicht abgeschlossen werden. Bit
msgid "We're sorry, you cannot access this screen at this time."
msgstr "Leider kannst du derzeit nicht auf diesen Bildschirm zugreifen."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Wie möchtest du dein Startpaket nennen?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Was gibt's?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Wenn du auf das Häkchen tippst, siehst du, welche Organisationen die Verifizierung vergeben haben."
@@ -12878,7 +13188,7 @@ msgstr "Wenn du auf das Häkchen tippst, siehst du, welche Organisationen die Ve
msgid "Who can interact with this post?"
msgstr "Wer kann mit diesem Post interagieren?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "Wer diesem Gruppenchat beitreten kann und wie"
@@ -12887,13 +13197,13 @@ msgstr "Wer diesem Gruppenchat beitreten kann und wie"
msgid "Who can reply"
msgstr "Wer kann antworten"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Wer kann verifizieren?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Ups!"
@@ -12939,19 +13249,19 @@ msgstr "Warum sollte dieses Startpaket überprüft werden?"
msgid "Why should this user be reviewed?"
msgstr "Warum sollte dieser Nutzer überprüft werden?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
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/components/dms/AfterReportConversationDialog.tsx:47
msgid "Would you like to block this user and/or leave this conversation?"
-msgstr ""
+msgstr "Möchtest du diesen Nutzer blockieren und/oder diese Konversation verlassen?"
#: src/view/com/composer/drafts/DraftsButton.tsx:110
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:1320
+#: src/view/com/composer/Composer.tsx:1373
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?"
@@ -12960,12 +13270,12 @@ msgstr "Möchtest du dies als Entwurf speichern, um es später zu bearbeiten?"
msgid "Write a post"
msgstr "Post verfassen"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Post verfassen"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Antwort schreiben"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Falsche DID vom Server zurückgegeben. Empfangen: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "Falscher Konversationstyp"
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "Du greifst aus einer Region auf Bluesky zu, in der wir gesetzlich verpflichtet sind, dein Alter zu verifizieren, bevor wir dir Zugriff auf die App gewähren dürfen."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr "Du blockierst {0}"
@@ -13068,7 +13379,7 @@ msgstr "Du bist live"
msgid "You are no longer live"
msgstr "Du bist nicht mehr live"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Du darfst keine Videos hochladen."
@@ -13117,12 +13428,12 @@ msgstr "Du kannst dich jederzeit abmelden und deine Daten löschen"
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Du kannst in den Chat-Einstellungen der App festlegen, ob Chat-Mitteilungen einen Ton haben sollen"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Du kannst laufende Konversationen fortsetzen, unabhängig davon, welche Einstellung du wählst."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Du kannst jetzt auswählen, ob du Mitteilungen erhalten möchtest, wenn bestimmte Personen etwas posten. Wenn du zeitnahe Updates von jemandem erhalten möchtest, gehe zu dessen Profil und suche das neue Glocken-Symbol neben dem „Folgen“-Button."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr "Du kannst pro Post maximal {MAX_GALLERY_IMAGES, plural, other {# Bilder}} hinzufügen"
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "Entwürfe können nur mit bis zu 1000 Zeichen gespeichert werden."
@@ -13139,11 +13455,11 @@ msgstr "Entwürfe können nur mit bis zu 1000 Zeichen gespeichert werden."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "Du kannst Entwürfe nur mit bis zu 1000 Zeichen speichern. Möchtest du diesen Post verwerfen, bevor du deine Entwürfe ansiehst?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
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:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Du kannst jeweils nur ein Video auswählen."
@@ -13155,10 +13471,10 @@ msgstr "Du kannst deinen Account reaktivieren, um dich weiterhin einzuloggen. De
msgid "You can read chat history but can’t send new messages."
msgstr "Du kannst den Chatverlauf lesen, aber keine neuen Nachrichten senden."
-#. 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: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."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr "Du kannst insgesamt maximal {MAX_GALLERY_IMAGES, plural, other {# Bilder}} auswählen."
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,9 +13482,9 @@ msgstr "Du kannst insgesamt bis zu {MAX_IMAGES, plural, other {# Bilder}} auswä
msgid "You can update this later from your settings."
msgstr "Du kannst dies später in deinen Einstellungen aktualisieren."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
-msgstr ""
+msgstr "Du kannst noch keinen Gruppenchat erstellen."
#: src/lib/hooks/useCleanError.ts:54
#: src/lib/strings/errors.ts:28
@@ -13197,6 +13513,10 @@ msgstr "Du hast keine gespeicherten Feeds."
msgid "You got here first"
msgstr "Du warst zuerst hier"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr "Du wurdest zuvor aus dieser Gruppe entfernt und kannst ihr über diesen Link nicht beitreten."
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
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?"
@@ -13336,7 +13656,7 @@ msgstr "Du musst mindestens sieben anderen Personen folgen, um ein Startpaket er
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "Du musst den Zugriff auf deine Galerie erlauben."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Du solltest die App jetzt wahrscheinlich neu starten."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Du hast mit {0} reagiert"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "Du hast kürzlich dein Geburtsdatum geändert"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Du wirst von all deinen Accounts ausgeloggt."
@@ -13390,7 +13710,7 @@ msgstr "Du erhältst nun Mitteilungen für diesen Thread"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Du erhältst eine E-Mail mit einem „Zurücksetzungscode“. Gib diesen Code hier ein und anschließend dein neues Passwort."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "Du kannst erst wieder beitreten, wenn du eingeladen wirst."
@@ -13463,7 +13783,7 @@ msgstr "Du hast das Ende des aktiven Inhalts erreicht."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Du hast das Ende deines Feeds erreicht! Finde weitere Accounts, denen du folgen kannst."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "Du hast die maximale Anzahl an Entwürfen erreicht"
@@ -13475,11 +13795,11 @@ msgstr "Du hast die maximale Anzahl an Anfragen erreicht. Bitte versuche es spä
msgid "You've reached the start of the active content."
msgstr "Du hast den Anfang des aktiven Inhalts erreicht."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Du hast dein tägliches Limit für Video-Uploads erreicht (zu viele Bytes)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr "Dein Account wurde gelöscht, tschüss! ✌️"
msgid "Your account has been suspended"
msgstr "Dein Account wurde gesperrt"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Dein Account ist noch nicht alt genug, um Videos hochzuladen. Bitte versuche es später erneut."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr "Dein Account ist zu neu"
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr "Dein Account muss mindestens 7 Tage alt sein, um einen neuen Gruppenchat erstellen zu können."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Dein Account-Repository, das alle öffentlichen Datensätze enthält, kann als „CAR“-Datei heruntergeladen werden. Diese Datei enthält keine Medien-Einbettungen, wie Bilder, oder deine privaten Daten, die separat abgerufen werden müssen."
@@ -13519,7 +13847,7 @@ msgstr "Deine Beschwerde wurde eingereicht. Falls sie erfolgreich ist, erhältst
msgid "Your birth date"
msgstr "Dein Geburtsdatum"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Deine Chats wurden deaktiviert"
@@ -13561,7 +13889,7 @@ msgstr "Deine E-Mail"
msgid "Your email appears to be invalid."
msgstr "Deine E-Mail scheint ungültig zu sein."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Deine E-Mail wurde noch nicht verifiziert. Bitte verifiziere deine E-Mail, um alle Funktionen von Bluesky nutzen zu können."
@@ -13582,7 +13910,7 @@ msgstr "Dein Following-Feed ist leer! Folge mehr Nutzern, um zu sehen, was passi
msgid "Your full handle will be <0>@{0}0>"
msgstr "Dein vollständiger Handle lautet <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "Dein Standort wurde aktualisiert."
msgid "Your muted words"
msgstr "Deine stummgeschalteten Wörter"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "Dein Name, dein Profilbild und der Name des Gruppenchats sind für alle sichtbar."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr "Dein Name, dein Profilbild, der Name des Gruppenchats und die Anzahl der Mitglieder werden für alle sichtbar sein."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "Dein Post wurde gesendet"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "Deine Posts wurden gesendet"
@@ -13635,7 +13963,7 @@ msgstr "Deine Posts wurden gesendet"
msgid "Your preferred language"
msgstr "Deine bevorzugte Sprache"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "Dein Profilbild"
@@ -13648,12 +13976,12 @@ msgstr "Dein Profilbild, umgeben von konzentrischen Kreisen mit den Profilbilder
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Deine Antwort wurde gesendet"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Deine Meldung wird an <0>{0}0> gesendet."
@@ -13661,7 +13989,7 @@ msgstr "Deine Meldung wird an <0>{0}0> gesendet."
msgid "Your selected interests help us serve you content you care about."
msgstr "Deine ausgewählten Interessen helfen uns dabei, dir Inhalte anzuzeigen, die dich interessieren."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "Dein Thread enthält leere Posts, die übersprungen werden. Die übrigen Posts werden als Thread veröffentlicht."
diff --git a/src/locale/locales/el/messages.po b/src/locale/locales/el/messages.po
index 44575d503d..4b884b6469 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Greek\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# λεπτό} other {# λεπτά}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# μήνας} other {# μήνες}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# δευτερόλεπτο} other {# δευτερόλε
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# αδιάβαστο} other {# αδιάβαστα}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} ακολουθεί"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr "{0} από 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} αντέδρασε {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, μία λίστα από {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Η εικόνα προφίλ του {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}λ."
msgid "{0}s"
msgstr "{0}δευτ."
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# αδιάβαστο} other {# αδιάβαστα}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr "Ο/Η {firstAuthorName} σας επαλήθευσε"
msgid "{following} following"
msgstr "{following} ακόλουθοι"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "Δεν είναι δυνατόν να στείλετε μήνυμα στον/ην {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# ώρα {minutesString}} other {# ώρες {minute
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# ώρα} other {# ώρες}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# αδιάβαστο} other {# αδιάβαστα}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr "Παρουσιάστηκε σφάλμα δικτύου. Παρακαλο
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Παρουσιάστηκε σφάλμα δικτύου. Παρακαλούμε ελέγξτε τη σύνδεσή σας στο διαδίκτυο."
@@ -804,7 +869,7 @@ msgstr "Παρουσιάστηκε σφάλμα δικτύου. Παρακαλο
msgid "A new code has been sent"
msgstr "Ένας νέος κωδικός έχει σταλεί"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Μια νέα μορφή επαλήθευσης"
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Καταχρηστική ή μεροληπτική συμπεριφορ
msgid "Accept"
msgstr "Αποδοχή"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Αποδοχή"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Αποδοχή αιτήματος συνομιλίας"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Αποδοχή Αιτήματος"
@@ -860,17 +935,26 @@ msgstr "Αποδοχή Αιτήματος"
msgid "Accept this language suggestion"
msgstr "Αποδοχή αυτής της πρότασης γλώσσας"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Προσβασιμότητα"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Ρυθμίσεις Προσβασιμότητας"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Άρση σίγασης λογαριασμού"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Δραστηριότητα από άλλους"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Ειδοποιήσεις δραστηριότητας"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Προσθήκη"
@@ -999,8 +1079,8 @@ msgstr "Προσθήκη λογαριασμού"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Προσθήκη εναλλακτικού κειμένου (προαιρ
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Προσθήκη άλλου λογαριασμού"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Προσθήκη άλλης ανάρτησης"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Προσθήκη άλλης δημοσίευσης στο νήμα"
@@ -1035,7 +1115,7 @@ msgstr "Προσθήκη κωδικού πρόσβασης εφαρμογής"
msgid "Add App Password"
msgstr "Προσθήκη κωδικού πρόσβασης εφαρμογής"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr "Προσθήκη αντίδρασης emoji"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Προσθήκη πολυμέσων στη δημοσίευση"
@@ -1062,8 +1142,8 @@ msgstr "Προσθήκη πολυμέσων στη δημοσίευση"
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Προσθέστε περισσότερες λεπτομέρειες (προαιρετικό)"
@@ -1080,8 +1160,8 @@ msgstr "Προσθήκη λέξης προς σίγαση με τις επιλε
msgid "Add muted words and tags"
msgstr "Προσθήκη λέξεων και ετικετών που θα είναι σε σίγαση"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr "Πρόσθετες λεπτομέρειες (όριο 1000 χαρακτήρες)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Πρόσθετες λεπτομέρειες (όριο 300 χαρακτήρες)"
@@ -1228,12 +1308,12 @@ msgstr "Υποβλήθηκε έρευνα για τη διασφάλιση ηλ
msgid "Age assurance only takes a few minutes"
msgstr "Η διασφάλιση ηλικίας διαρκεί μόνο λίγα λεπτά"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Όλα"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Επιτρέψτε την πρόσβαση στα προσωπικά μ
msgid "Allow anyone to reply"
msgstr "Επιτρέψτε σε οποιονδήποτε να απαντήσει"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr "Έχετε ήδη λογαριασμό;"
msgid "Already signed in as @{0}"
msgstr "Ήδη συνδεδεμένος ως @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr ""
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Εναλλακτικό κείμενο"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Το εναλλακτικό κείμενο περιγράφει εικόνες για τυφλούς και με χαμηλή όραση χρήστες και βοηθάει να γίνει ξεκάθαρο το περιεχόμενο σε όλους."
@@ -1387,7 +1467,7 @@ msgstr "Παρουσιάστηκε σφάλμα"
msgid "An error occurred"
msgstr "Παρουσιάστηκε σφάλμα"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Παρουσιάστηκε σφάλμα κατά τη συμπίεση του βίντεο."
@@ -1432,11 +1512,11 @@ msgstr "Παρουσιάστηκε σφάλμα κατά την αποθήκευ
msgid "An error occurred while trying to follow all"
msgstr "Παρουσιάστηκε σφάλμα κατά την προσπάθεια παρακολούθησης όλων"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Ένα θέμα που δεν περιλαμβάνεται σε αυτές τις επιλογές"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Παρουσιάστηκε πρόβλημα κατά την προσπά
msgid "An issue occurred, please try again."
msgstr "Παρουσιάστηκε πρόβλημα, παρακαλώ δοκιμάστε ξανά."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1539,13 +1619,17 @@ msgstr "Οποιοσδήποτε"
msgid "Anyone can interact"
msgstr "Οποιοσδήποτε μπορεί να αλληλεπιδράσει"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr "Οποιοσδήποτε με ακολουθεί"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Τα ονόματα κωδικών πρόσβασης εφαρμογής
msgid "App passwords"
msgstr "Κωδικοί πρόσβασης εφαρμογής"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Κωδικοί Πρόσβασης Εφαρμογής"
@@ -1618,7 +1702,7 @@ msgstr "Έφεση στην αναστολή του livestream"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Έφεση υποβλήθηκε"
@@ -1632,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Εφεση σε αυτήν την απόφαση"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τον κωδικό πρόσβασης εφαρμογής;"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετ
msgid "Are you sure you want to discard your changes?"
msgstr "Θέλετε σίγουρα να απορρίψετε τις αλλαγές σας;"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr "Σίγουρα θέλετε να αποχωρήσετε από αυτήν τη συζήτηση;"
-#: 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 "Θέλετε σίγουρα να αποχωρήσετε από αυτή τη συνομιλία; Τα μηνύματά σας θα διαγραφούν για εσάς, αλλά όχι για τον άλλο συμμετέχοντα."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Είστε σίγουροι ότι θέλετε να αφαιρέσετε αυτό από τις ροές σας;"
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Είστε σίγουροι ότι θέλετε να απορρίψετε αυτήν την ανάρτηση;"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Αυτόματη αναπαραγωγή βίντεο και GIF"
msgid "Available"
msgstr "Διαθέσιμο"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Διαθέσιμο"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Διαθέσιμο"
msgid "Back"
msgstr "Πίσω"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Πίσω στις Συνομιλίες"
@@ -1840,12 +1926,12 @@ msgstr "Πριν μπορέσετε να αποδεχτείτε αυτό το α
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Πριν μπορέσετε να λάβετε ειδοποιήσεις για τις δημοσιεύσεις του/της {name}, πρέπει πρώτα να επαληθεύσετε το email σας."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Πριν μπορέσετε να στείλετε μήνυμα σε άλλον χρήστη, πρέπει πρώτα να επαληθεύσετε το email σας."
@@ -1877,7 +1963,7 @@ msgstr "Ημερομηνία γέννησης"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Αποκλεισμός λογαριασμού"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "Αποκλεισμός λογαριασμού;"
msgid "Block accounts"
msgstr "Αποκλεισμός λογαριασμών"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Αποκλεισμός αυτών των λογαριασμών;"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Αποκλεισμός χρήστη"
@@ -1946,9 +2032,9 @@ msgstr "Αποκλεισμός χρήστη"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Αποκλεισμός χρήστη"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Φραγή χρήστη και/ή διαγραφή αυτής της συνομιλίας"
@@ -1956,7 +2042,7 @@ msgstr "Φραγή χρήστη και/ή διαγραφή αυτής της σ
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Αποκλεισμένος"
@@ -1964,13 +2050,13 @@ msgstr "Αποκλεισμένος"
msgid "Blocked accounts"
msgstr "Αποκλεισμένοι λογαριασμοί"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Αποκλεισμένοι Λογαριασμοί"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Οι αποκλεισμένοι λογαριασμοί δεν μπορούν να απαντήσουν στις συζητήσεις σας, να σας αναφέρουν ή να αλληλεπιδράσουν με άλλο τρόπο μαζί σας."
@@ -2029,7 +2115,7 @@ msgstr "Το Bluesky είναι καλύτερο με φίλους!"
msgid "Bluesky is more fun with friends"
msgstr "Το Bluesky είναι πιο διασκεδαστικό με φίλους"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Το Bluesky είναι πιο διασκεδαστικό με φίλους! Εισαγάγετε τις επαφές σας για να δείτε ποιος είναι ήδη εδώ."
@@ -2053,7 +2139,7 @@ msgstr "Το Bluesky θα επιλέξει μια σειρά από προτει
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 "Το Bluesky δεν θα εμφανίσει το προφίλ και τις αναρτήσεις σας σε χρήστες που δεν έχουν συνδεθεί. Άλλες εφαρμογές ενδέχεται να μην σεβαστούν αυτό το αίτημα. Αυτό δεν κάνει τον λογαριασμό σας ιδιωτικό."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Το Bluesky θα επαληθεύσει προληπτικά τους αξιοσημείωτους και αυθεντικούς λογαριασμούς."
@@ -2137,23 +2223,30 @@ msgstr "Επιχειρήσεις"
msgid "Button to go back to the home timeline"
msgstr "Κουμπί για να επιστρέψετε στο αρχικό χρονολόγιο"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Από {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Από <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Δημιουργώντας λογαριασμό συμφωνείτε μ
msgid "By you"
msgstr "Από εσάς"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Κάμερα"
@@ -2192,8 +2285,8 @@ msgstr "Κάμερα"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Κάμερα"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Κάμερα"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Ακύρωση"
@@ -2248,9 +2341,9 @@ msgstr "Ακύρωση επανενεργοποίησης και έξοδος"
msgid "Cancel search"
msgstr "Ακύρωση αναζήτησης"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Δεν μπορείτε να αλληλεπιδράσετε με έναν μπλοκαρισμένο χρήστη"
@@ -2264,7 +2357,7 @@ msgstr "Υπότιτλοι (.vtt)"
msgid "Captions & alt text"
msgstr "Υπότιτλοι & εναλλακτικό κείμενο"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr "Αλλαγή γλώσσας εφαρμογής"
msgid "Change Handle"
msgstr "Αλλαγή Ονόματος Χρήστη"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2310,11 +2403,11 @@ msgstr "Αλλαγή κωδικού πρόσβασης"
msgid "Change password dialog"
msgstr "Διάλογος αλλαγής κωδικού πρόσβασης"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Αλλαγή αιτίας αναφοράς"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Συνομιλία"
@@ -2361,6 +2454,13 @@ msgstr "Συνομιλία διαγράφηκε"
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Σίγαση συνομιλίας"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Εισερχόμενα αιτήματος συνομιλίας"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Αιτήματα συνομιλίας"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Ρυθμίσεις συνομιλίας"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Ρυθμίσεις Συνομιλίας"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Αφαίρεση σίγασης συνομιλίας"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Συνομιλίες"
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "Επιλέξτε αυτό το χρώμα ως εικόνα προφίλ σας"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr "Πατήστε για πληροφορίες"
msgid "click here"
msgstr "κάντε κλικ εδώ"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr "Πατήστε εδώ για να επικοινωνήσετε με την ομάδα υποστήριξης"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr "Πατήστε εδώ για αποσύνδεση"
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Πατήστε εδώ για να επανεκκινήσετε τη διαδικασία επαλήθευσης."
@@ -2567,11 +2667,11 @@ msgstr "Πατήστε εδώ για να επανεκκινήσετε τη δι
msgid "Click here to update your birthdate"
msgstr "Πατήστε εδώ για να ενημερώσετε την ημερομηνία γέννησής σας"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Πατήστε εδώ για να ενημερώσετε το email σας"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr "Πατήστε για άνοιγμα του μενού ετικέτας για {0}"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Κάντε κλικ για να επαναλάβετε το αποτυχημένο μήνυμα"
@@ -2594,28 +2694,30 @@ msgstr "Κάντε κλικ για να επαναλάβετε το αποτυχ
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Κάντε κλικ για να επαναλάβετε το αποτυχ
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Κλείσιμο ενεργού διαλόγου"
msgid "Close alert"
msgstr "Κλείσιμο ειδοποίησης"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Κλείσιμο κάτω συρταριού"
@@ -2657,8 +2763,9 @@ msgstr "Κλείσιμο κάτω συρταριού"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Κλείσιμο διαλόγου"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Κλείσιμο εικόνας"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Κλείσιμο προβολής εικόνων"
@@ -2683,6 +2790,14 @@ msgstr "Κλείσιμο προβολής εικόνων"
msgid "Close menu"
msgstr "Κλείσιμο μενού"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Κλείσιμο αυτού του διαλόγου"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Κλείνει την ειδοποίηση ενημέρωσης κωδικού πρόσβασης"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Κόμικς"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Οδηγίες Κοινότητας"
@@ -2740,12 +2855,12 @@ msgstr "Ολοκλήρωση της πρόκλησης"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Σύνταξη νέας ανάρτησης"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Σύνταξη αναρτήσεων έως {0, plural, other {# χαρακτήρες}}"
@@ -2753,11 +2868,11 @@ msgstr "Σύνταξη αναρτήσεων έως {0, plural, other {# χαρα
msgid "Compose reply"
msgstr "Σύνταξη απάντησης"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Συμπίεση βίντεο..."
@@ -2780,7 +2895,7 @@ msgstr "Ρυθμισμένο στις <0>ρυθμίσεις διαχείριση
msgid "Confirm"
msgstr "Επιβεβαίωση"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Περιεχόμενο και Μέσα"
msgid "Content and media"
msgstr "Περιεχόμενο και μέσα"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Περιεχόμενο και Μέσα"
@@ -2889,7 +3004,7 @@ msgstr "Φόντο μενού περιβάλλοντος, κάντε κλικ γ
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "Συνέχεια συζήτησης..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Συνέχεια στο επόμενο βήμα"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Διαγραμμένη συνομιλία"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Διαγραμμένη συνομιλία"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Η έκδοση build αντιγράφηκε στο πρόχειρο"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Αντιγραφή DID"
msgid "Copy host"
msgstr "Αντιγραφή host"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Αντιγραφή συνδέσμου προς προφίλ"
msgid "Copy link to starter pack"
msgstr "Αντιγραφή συνδέσμου στο πακέτο νέων"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Αντιγραφή κειμένου μηνύματος"
@@ -3052,7 +3175,7 @@ msgstr "Αντιγραφή τιμής εγγραφής TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Πολιτική Πνευματικών Δικαιωμάτων"
@@ -3065,7 +3188,7 @@ msgstr "Δεν ήταν δυνατή η σύνδεση στην προσαρμο
msgid "Could not connect to feed service"
msgstr "Δεν ήταν δυνατή η σύνδεση στην υπηρεσία ροής"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Αδυναμία ακολούθησης όλων των αντιστοιχίσεων. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Δεν ήταν δυνατή η αποχώρηση από τη συνομιλία"
@@ -3094,6 +3217,10 @@ msgstr "Δεν ήταν δυνατή η αποχώρηση από τη συνο
msgid "Could not load feed"
msgstr "Δεν ήταν δυνατή η φόρτωση της ροής"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Δημιουργία"
@@ -3159,7 +3286,7 @@ msgstr "Δημιουργία QR κώδικα για ένα starter pack"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Δημιουργία starter pack"
@@ -3174,13 +3301,14 @@ msgstr "Δημιουργία starter pack για μένα"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Δημιουργία λογαριασμού"
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Δημιουργήστε μια εικόνα προφίλ εωαλλακτικά"
@@ -3206,7 +3334,7 @@ msgstr "Δημιουργήστε μια εικόνα προφίλ εωαλλακ
msgid "Create another"
msgstr "Δημιουργία άλλου"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Δημιουργία νέου λογαριασμού"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Δημιουργία αναφοράς για {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Δημιουργήθηκε {0}"
@@ -3341,7 +3470,7 @@ msgstr "Προεπιλογή"
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Διαγραφή εγγραφής δήλωσης συνομιλίας"
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Διαγραφή για μένα"
@@ -3399,11 +3528,11 @@ msgstr "Διαγραφή για μένα"
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Διαγραφή μηνύματος"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Διαγραφή μηνύματος για μένα"
@@ -3413,7 +3542,7 @@ msgstr "Διαγραφή του λογαριασμού μου"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Διαγραφή ανάρτησης"
@@ -3434,12 +3563,12 @@ msgstr "Διαγραφή αυτής της λίστας;"
msgid "Delete this post?"
msgstr "Διαγραφή αυτής της ανάρτησης;"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Διαγραμμένο"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Διαγραμμένος Λογαριασμός"
@@ -3507,13 +3636,13 @@ msgstr "Διάλογος: ρυθμίστε ποιοι μπορούν να αλλ
msgid "Dim"
msgstr "Ντιμαρισμένο"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3521,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3534,8 +3663,8 @@ msgstr "Απενεργοποίηση Email 2FA"
msgid "Disable haptic feedback"
msgstr "Απενεργοποίηση ανάδρασης αφής"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Απενεργοποιημένο"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Απόρριψη"
msgid "Discard changes?"
msgstr "Απόρριψη αλλαγών;"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Απόρριψη προσχεδίου;"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Απόρριψη ανάρτησης;"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Ανακαλύψτε Νέες Ροές"
msgid "Dismiss"
msgstr "Απόρριψη"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Απόρριψη σφάλματος"
@@ -3673,7 +3802,7 @@ msgstr "Δεν περιλαμβάνει γυμνό."
msgid "Domain verified!"
msgstr "Το domain σας επαληθεύτηκε!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3681,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Ολοκληρώθηκε"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3741,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr "Κατεβάστε το Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Κατεβάστε το αρχείο CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Κατεβάστε το αρχείο CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Επεξεργασία"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Επεξεργασία εικόνας προφίλ"
@@ -3847,14 +3978,14 @@ msgstr "Επεξεργασία εικόνας προφίλ"
msgid "Edit Feeds"
msgstr "Επεξεργασία ροών"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Επεξεργασία εικόνας"
@@ -3868,7 +3999,16 @@ msgstr "Επεξεργασία ρυθμίσεων αλληλεπίδρασης"
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Επεξεργασία των ροών μου"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Επεξεργασία ατόμων"
@@ -3925,7 +4060,7 @@ msgstr "Επεξεργασία προφίλ"
msgid "Edit starter pack"
msgstr "Επεξεργασία starter pack"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "Επεξεργασία του ποιος μπορεί να απαντήσει"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Επεξεργασία του starter pack σας"
@@ -3971,7 +4106,7 @@ msgstr "Διεύθυνση email"
msgid "Email Resent"
msgstr "Email Απεστάλη ξανά"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -4006,8 +4141,8 @@ msgstr "Ενσωματώστε αυτήν την ανάρτηση στον ισ
msgid "Embedded video player"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Ενεργοποίηση"
@@ -4025,7 +4160,7 @@ msgstr "Ενεργοποίηση περιεχομένου ενηλίκων"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4038,13 +4173,12 @@ msgstr "Ενεργοποίηση εξωτερικού μέσου"
msgid "Enable media players for"
msgstr "Ενεργοποίηση media players για"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr "Εισάγετε έναν κωδικό πρόσβασης"
msgid "Enter a word or tag"
msgstr "Εισάγετε μια λέξη ή ετικέτα"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4143,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Σφάλμα"
@@ -4185,23 +4319,23 @@ msgstr "Όλοι μπορούν να απαντήσουν"
msgid "Everybody can reply to this post."
msgstr "Όλοι μπορούν να απαντήσουν σε αυτήν την ανάρτηση."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Όλοι"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Όλοι"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Όλοι"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "Αποκλείει τους χρήστες που ακολουθείτε
msgid "Exit fullscreen"
msgstr "Έξοδος από την πλήρη οθόνη"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Ανάπτυξη εναλλακτικού κειμένου"
@@ -4226,7 +4360,7 @@ msgstr "Ανάπτυξη εναλλακτικού κειμένου"
msgid "Expand list of users"
msgstr "Ανάπτυξη λίστας χρηστών"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Ανάπτυξη ή συμπίεση της πλήρους ανάρτησης στην οποία απαντάτε"
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Αναμενόταν το uri να επιλυθεί σε ένα αρχείο"
@@ -4277,9 +4411,9 @@ msgstr "Γυμνό ή ενδεχομένως ενοχλητικό μέσο."
msgid "Explicit sexual images."
msgstr "Γυμνές σεξουαλικές εικόνες."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4289,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Προτιμήσεις εξωτερικού μέσου"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "Απέτυχε η αλλαγή του ονόματος χρήστη. Παρακαλώ δοκιμάστε ξανά."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "Απέτυχε η δημιουργία κωδικού πρόσβασης
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Απέτυχε η διαγραφή μηνύματος"
@@ -4394,24 +4529,24 @@ msgstr "Απέτυχε η διαγραφή ανάρτησης, παρακαλώ
msgid "Failed to delete starter pack"
msgstr "Απέτυχε η διαγραφή starter pack"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "Απέτυχε η φόρτωση προτιμήσεων ροών"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "Απέτυχε η φόρτωση προτεινόμενων ροών"
msgid "Failed to load suggested follows"
msgstr "Απέτυχε η φόρτωση προτεινόμενων ακολουθιών"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Απέτυχε το καρφίτσωμα ανάρτησης"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Απέτυχε η υποβολή ένστασης, παρακαλώ δοκιμάστε ξανά."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Απέτυχε η εναλλαγή σίγασης συνομιλίας, παρακαλώ δοκιμάστε ξανά"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4614,7 +4751,7 @@ msgstr "Απέτυχε η ενημέρωση ροών"
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Απέτυχε η ενημέρωση ρυθμίσεων"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Ροή"
@@ -4649,7 +4786,7 @@ msgstr "Ροή"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Ροή από {0}"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr ""
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Ροές"
@@ -4739,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "Ολοκλήρωση"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Βρείτε λογαριασμούς για να ακολουθήσετε"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr ""
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "Ακολουθείται από <0>{0}0> και <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Ακολουθείται από <0>{0}0>, <1>{1}1>, και {2, plural, one {# άλλον} other {# άλλους}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Ακολούθοι του/της @{0} που γνωρίζετε"
@@ -4995,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr "Προτιμήσεις της ροής Ακολουθείτε"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Προτιμήσεις της ροής Ακολουθείτε"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Σας ακολουθεί"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Σας Ακολουθεί"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Γραμματοσειρά"
@@ -5069,7 +5207,7 @@ msgstr "Ξεχάσατε;"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr "Από <0/>"
msgid "Generate a starter pack"
msgstr "Δημιουργήστε ένα starter pack"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "Λάβετε βοήθεια"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Δώστε στο προφίλ σας ένα πρόσωπο"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Πίσω"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Πίσω"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Επιστροφή στο προηγούμενο βήμα"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Αρχική"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Αρχική"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Αρχική"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Μετάβαση στην συνομιλία με {0}"
@@ -5299,12 +5440,12 @@ msgstr "Συνέχεια"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Προφίλ"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Το όνομα χρήστη είναι πολύ μακρύ. Παρακαλώ δοκιμάστε ένα πιο σύντομο."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr ""
@@ -5458,8 +5615,8 @@ msgstr ""
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Βοήθεια"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Βοηθήστε τους ανθρώπους να καταλάβουν ότι δεν είστε bot ανεβάζοντας μια εικόνα ή δημιουργώντας μια εικόνα προφίλ."
@@ -5652,18 +5809,18 @@ msgstr "Χμμμ, φαίνεται ότι έχουμε πρόβλημα με τ
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Χμμμ, δεν καταφέραμε να φορτώσουμε αυτήν την υπηρεσία διαχείρισης."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Περιμένετε! Δίνουμε σταδιακά πρόσβαση στο βίντεο και εσείς περιμένετε στην ουρά. Ελέγξτε ξανά σύντομα!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Αρχική"
@@ -5721,7 +5878,7 @@ msgstr "Κατανοώ"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Εάν το εναλλακτικό κείμενο είναι μακρύ, ενεργοποιεί/απενεργοποιεί το επεκταμένο εναλλακτικό κείμενο"
@@ -5757,7 +5914,7 @@ msgstr "Εάν διαγράψετε αυτήν τη λίστα, δεν θα μπ
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5765,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr "Εάν καταργήσετε αυτήν την ανάρτηση, δεν θα μπορείτε να την ανακτήσετε."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5773,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Εάν θέλετε να αλλάξετε τον κωδικό σας, θα σας στείλουμε έναν κωδικό για να επαληθεύσουμε ότι αυτός είναι ο λογαριασμός σας."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr ""
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Εάν προσπαθείτε να αλλάξετε το όνομα χρήστη ή το email σας, κάντε το πριν απενεργοποιήσετε τον λογαριασμό σας."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Εικόνα"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Μη έγκυρος κωδικός επιβεβαίωσης 2FA."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Μη έγκυρο όνομα χρήστη. Παρακαλώ δοκιμάστε ένα διαφορετικό."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Μη έγκυρος κωδικός επαλήθευσης"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Είστε μόνοι σας αυτή τη στιγμή! Προσθέστε περισσότερους ανθρώπους στο starter pack σας κάνοντας αναζήτηση παραπάνω."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID εργασίας: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID εργασίας: {0}"
msgid "Jobs"
msgstr "Εργασίες"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Εργασίες"
msgid "Join Bluesky"
msgstr "Εγγραφείτε στο Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Συμμετάσχετε στη συζήτηση"
msgid "Journalism"
msgstr "Δημοσιογραφία"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "Οι Ετικέτες στον λογαριασμό σας"
msgid "Labels on your content"
msgstr "Οι Ετικέτες στο περιεχόμενό σας"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Ρυθμίσεις γλώσσας"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Πιο πρόσφατα"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Μάθετε περισσότερα για αυτήν την προειδοποίηση"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Μάθετε περισσότερα για το τι είναι δημόσιο στο Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "Μάθετε περισσότερα."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Αποχώρηση"
@@ -6276,7 +6464,7 @@ msgstr "Αποχώρηση από συνομιλία"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Αποχώρηση από συνομιλία"
@@ -6284,13 +6472,13 @@ msgstr "Αποχώρηση από συνομιλία"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Αποχώρηση από συνομιλία"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Φωτεινό"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -6346,11 +6534,7 @@ msgstr "\"Μου αρέσει\" σε 10 αναρτήσεις"
msgid "Like 10 posts to train the Discover feed"
msgstr "\"Μου αρέσει\" σε 10 αναρτήσεις για να εκπαιδεύσετε την ροής Ανακαλύψτε"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Πατήστε \"Μου αρέσει\" σε αυτήν την ροή"
@@ -6358,8 +6542,8 @@ msgstr "Πατήστε \"Μου αρέσει\" σε αυτήν την ροή"
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "\"Μου αρέσει\" από"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "\"Μου αρέσει\""
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "\"Μου αρέσει\" σε αυτήν την ανάρτηση"
@@ -6409,11 +6589,11 @@ msgstr "\"Μου αρέσει\" σε αυτήν την ανάρτηση"
msgid "Linear"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Λίστα"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Λίστα αφαίρεση σίγασης"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Λίστες"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Φόρτωση..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Ημερολόγιο"
@@ -6662,7 +6842,7 @@ msgstr "Φαίνεται ότι λείπει μια ροή που ακολουθ
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr "Διαχειριστείτε τις λέξεις και ετικέτες σας σε σίγαση"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
@@ -6698,13 +6877,12 @@ msgstr ""
msgid "Mark as read"
msgstr "Σημείωση ως ανάγνωση"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Μέσα που μπορεί να είναι ενοχλητικά ή ακατάλληλα για ορισμένα ακροατήρια."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "αναφερόμενοι χρήστες"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr ""
@@ -6775,22 +6949,22 @@ msgstr "Μήνυμα {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Το μήνυμα διαγράφηκε"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Το μήνυμα διαγράφηκε"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6813,19 +6987,19 @@ msgstr "Το μήνυμα είναι πολύ μακρύ"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Μηνύματα"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Διαχείριση"
@@ -6894,7 +7064,7 @@ msgstr "Η Λίστα διαχείρισης ενημερώθηκε"
msgid "Moderation lists"
msgstr "Λίστες διαχείρισης"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Λίστες Διαχείρισης"
@@ -6903,7 +7073,7 @@ msgstr "Λίστες Διαχείρισης"
msgid "moderation settings"
msgstr "ρυθμίσεις διαχείρισης"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Καταστάσεις διαχείρισης"
@@ -6949,7 +7119,7 @@ msgstr "Ταινίες"
msgid "Music"
msgstr "Μουσική"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Σίγαση"
@@ -6994,7 +7164,7 @@ msgstr "Λίστα σίγασης"
msgid "Mute these accounts?"
msgstr "Σίγαση αυτών των λογαριασμών;"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Σίγαση νήματος"
msgid "Mute words & tags"
msgstr "Σίγαση λέξεων & ετικετών"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Λογαριασμοί σε σίγαση"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Λογαριασμοί σε σίγαση"
@@ -7108,8 +7278,8 @@ msgstr "Μεταβαίνει στην επόμενη οθόνη"
msgid "Navigates to your profile"
msgstr "Μεταβαίνει στο προφίλ σας"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Νέα συνομιλία"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7174,29 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Νέα δημοσίευση"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Νέα δημοσίευση"
@@ -7262,8 +7428,8 @@ msgstr "Ειδήσεις"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "Δεν ακολουθώ πλέον τον {0}"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Δεν υπάρχουν ακόμη μηνύματα"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "Δεν υπάρχουν ακόμη ειδοποιήσεις!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Χωρίς αποτέλεσμα"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Χωρίς αποτελέσματα"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Μη σεξουαλικό γυμνό"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Δεν Βρέθηκε"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Ρυθμίσεις ειδοποιήσεων"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Ήχοι ειδοποιήσεων"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Ειδοποιήσεις"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "τώρα"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Απενεργοποιημένο"
@@ -7623,7 +7772,8 @@ msgstr ""
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr ""
msgid "Onboarding reset"
msgstr "Επαναφορά onboardin"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "Ένα ή περισσότερα GIF λείπουν το εναλλακτικό κείμενο."
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "Μία ή περισσότερες εικόνες λείπουν το εναλλακτικό κείμενο."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Ένα ή περισσότερα βίντεο λείπουν το εναλλακτικό κείμενο."
@@ -7685,6 +7835,26 @@ msgstr "Ένα ή περισσότερα βίντεο λείπουν το ενα
msgid "Only {0} can reply."
msgstr "Μόνο ο/η {0} μπορεί να απαντήσει."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr "Υποστηρίζονται μόνο αρχεία εικόνας"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Υποστηρίζονται μόνο αρχεία WebVTT (.vtt)"
@@ -7712,7 +7892,7 @@ msgstr "Ουπς, κάτι πήγε στραβά!"
msgid "Oops!"
msgstr "Ουπς!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Άνοιγμα δημιουργού εικόνας προφίλ"
@@ -7720,12 +7900,17 @@ msgstr "Άνοιγμα δημιουργού εικόνας προφίλ"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Άνοιγμα επιλογών συνομιλίας"
@@ -7739,16 +7924,16 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Άνοιγμα επιλογέα emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Άνοιγμα μενού επιλογών ροών"
@@ -7760,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Άνοιγμα συνδέσμου προς {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr "Άνοιγμα μενού επιλογών δημοσίευσης"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr "Άνοιγμα σελίδας storybook"
msgid "Open system log"
msgstr "Άνοιγμα αρχείου καταγραφής συστήματος"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Ανοίγει πρόσθετες λεπτομέρειες για μια
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Ανοίγει την κάμερα στη συσκευή"
@@ -7858,22 +8051,24 @@ msgstr "Ανοίγει το εργαλείο σύνταξης κειμένου"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Ανοίγει τη διαδικασία για να δημιουργήσετε ένα νέο λογαριασμό Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Ανοίγει αυτό το προφίλ"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Οι διαχειριστές μας έχουν εξετάσει τις αναφορές και αποφάσισαν να απενεργοποιήσουν την πρόσβαση σας στις συνομιλίες στο Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Οι διαχειριστές μας έχουν εξετάσει τις
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Η σελίδα δεν βρέθηκε"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Η Σελίδα Δεν Βρέθηκε"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Παύση βίντεο"
msgid "People"
msgstr "Άτομα"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Άτομα που ακολουθούν τον/την @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Άτομα που ακολουθούνται από τον/την @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Εικόνες για ενήλικες."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr ""
@@ -8152,7 +8348,7 @@ msgstr ""
msgid "Pin to home"
msgstr "Καρφίτσωμα στην αρχική"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Καρφίτσωμα στην Αρχική"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Καρφιτσωμένο"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr ""
@@ -8236,7 +8432,7 @@ msgstr "Παρακαλώ επιλέξτε το όνομα χρήστη σας."
msgid "Please choose your password."
msgstr "Παρακαλώ επιλέξτε τον κωδικό πρόσβασης σας."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "Παρακαλώ ολοκληρώστε τον έλεγχο captcha."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Παρακαλώ εισάγετε ένα μοναδικό όνομα για αυτόν τον κωδικό πρόσβασης εφαρμογής ή χρησιμοποιήστε τον τυχαία δημιουργημένο από εμάς."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "Παρακαλώ εισάγετε το email σας."
msgid "Please enter your invite code."
msgstr "Παρακαλώ εισάγετε τον κωδικό πρόσκλησης σας."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Παρακαλώ εξηγήστε γιατί πιστεύετε ότι αυτή η ετικέτα εφαρμόστηκε εσφαλμένα από τον/την {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Παρακαλώ εξηγήστε γιατί πιστεύετε ότι οι συνομιλίες σας απενεργοποιήθηκαν εσφαλμένα"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "Πολιτική"
msgid "Porn"
msgstr "Πορνογραφία"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Δημοσίευση"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Δημοσίευση Όλων"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Δημοσίευση από @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Η δημοσίευση διαγράφηκε"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Η δημοσίευση απέτυχε να μεταφορτωθεί. Παρακαλώ ελέγξτε τη σύνδεση στο internet και προσπαθήστε ξανά."
@@ -8454,7 +8650,7 @@ msgstr "Δημοσίευση κρυμμένη από εσάς"
msgid "Post interaction settings"
msgstr "Ρυθμίσεις αλληλεπίδρασης δημοσίευσης"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8464,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Δημοσίευση ξεκαρφιτσωμένη"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Οι δημοσιεύσεις μπορούν να τεθούν σε σί
msgid "Posts hidden"
msgstr "Κρυμμένες δημοσιεύσεις"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "Πατήστε για να δοκιμάσετε ξανά τη σύνδε
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Πατήστε για να προσπαθήσετε ξανά"
@@ -8536,7 +8728,7 @@ msgstr "Πατήστε για να προσπαθήσετε ξανά"
msgid "Press to view followers of this account that you also follow"
msgstr "Πατήστε για να δείτε τους ακόλουθους αυτού του λογαριασμού που ακολουθείτε και εσείς"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "Απόρρητο"
msgid "Privacy and security"
msgstr "Απόρρητο και ασφάλεια"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Απόρρητο και Ασφάλεια"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Πολιτική Απορρήτου"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Επεξεργασία βίντεο..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Επεξεργασία..."
@@ -8602,8 +8793,8 @@ msgstr "Επεξεργασία..."
msgid "profile"
msgstr "προφίλ"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "Ο κωδικός QR έχει κατέβει!"
msgid "QR code saved to your camera roll!"
msgstr "Ο κωδικός QR αποθηκεύτηκε στο φιλμ της κάμερας σας!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Οι παραθέσεις δημοσιεύσεων είναι απενε
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Παραθέσεις"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Προσθήκη παράθεσης ξανά"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr ""
msgid "Reconnect"
msgstr "Επανασύνδεση"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Επαναφόρτωση συνομιλιών"
@@ -8896,17 +9087,17 @@ msgstr "Αφαίρεση λογαριασμού"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Αφαίρεση συνημμένου"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Αφαίρεση φωτογραφίας προφίλ"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr ""
@@ -8914,8 +9105,9 @@ msgstr ""
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Αφαίρεση ενσωματωμένου περιεχομένου"
@@ -8933,8 +9125,8 @@ msgstr "Αφαίρεση ροής;"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Αφαίρεση εικόνας"
@@ -9009,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Αφαιρέθηκε από τον δημιουργό"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Αφαιρέθηκε από εσάς"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Απαντήσεις"
@@ -9104,14 +9295,14 @@ msgstr "Οι απαντήσεις είναι απενεργοποιημένες"
msgid "Replies to this post are disabled."
msgstr "Οι απαντήσεις σε αυτή τη δημοσίευση είναι απενεργοποιημένες."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Απάντηση"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9125,10 +9316,6 @@ msgstr "Απάντηση κρυμμένη από τον δημιουργό το
msgid "Reply Hidden by You"
msgstr "Απάντηση κρυμμένη από εσάς"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Οι ρυθμίσεις απαντήσεων επιλέγονται από τον δημιουργό του νήματος"
@@ -9146,9 +9333,9 @@ msgstr "Η ορατότητα απάντησης ενημερώθηκε"
msgid "Reply was successfully hidden"
msgstr "Η απάντηση κρύφτηκε επιτυχώς"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Αναφορά"
@@ -9164,13 +9351,13 @@ msgstr ""
msgid "Report conversation"
msgstr "Αναφορά συνομιλίας"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Παράθυρο αναφοράς"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Αναφορά ροής"
@@ -9179,7 +9366,7 @@ msgstr "Αναφορά ροής"
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Αναφορά μηνύματος"
@@ -9199,8 +9386,8 @@ msgstr "Αναφορά starter pack"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Αναφορά αυτής της ροής"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Αναφορά αυτής της λίστας"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Αναδημοσίευση"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Αναδημοσίευση από εσάς"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "Αναδημοσίευση αυτής της ανάρτησης"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Απαιτείται εναλλακτικό κείμενο πριν την ανάρτηση"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9328,7 +9534,11 @@ msgstr "Απαιτείται για αυτόν τον πάροχο"
msgid "Required in your region"
msgstr "Απαιτείται στην περιοχή σας"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9393,15 +9603,16 @@ msgstr "Επανάληψη της τελευταίας ενέργειας, η ο
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Επανάληψη της τελευταίας ενέργειας, η ο
msgid "Retry"
msgstr "Προσπαθείστε ξανά"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9426,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr "Επιστροφή στην προηγούμενη σελίδα"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Επιστροφή στην αρχική σελίδα"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Επιστροφή στην προηγούμενη σελίδα"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Αποθήκευση αλλαγών"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Αποθήκευση QR κώδικα"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Αποθήκευση στις ροές μου"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "Αποθηκευμένες ροές"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Αποθηκεύτηκε στις ροές σας"
@@ -9551,8 +9764,8 @@ msgstr "Αποθηκεύτηκε στις ροές σας"
msgid "Say hello!"
msgstr "Πείτε γεια!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "Μετακίνηση στην κορυφή"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Αναζήτηση"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9667,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Αναζήτηση προφίλ"
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "Επιλογή χρώματος"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "Επιλογή GIF"
msgid "Select GIF \"{0}\""
msgstr "Επιλέξτε GIF “{0}”"
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Επιλογή γλώσσας..."
msgid "Select languages"
msgstr "Επιλογή γλωσσών"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9904,11 +10117,11 @@ msgstr "Επιλέξτε τα ενδιαφέροντά σας από τις πα
msgid "Select your preferred language for translations in your feed."
msgstr "Επιλέξτε την προτιμώμενη γλώσσα σας για τις μεταφράσεις στη ροή σας."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Αποστολή email"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Αποστολή σχολίων"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Αποστολή μηνύματος"
@@ -9952,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr "Αποστολή ανάρτησης σε..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9960,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Αποστολή μέσω προσωπικού μηνύματος"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Ορίζει email για επαναφορά κωδικού πρόσβασης"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Ρυθμίσεις"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "Σεξουαλική δραστηριότητα ή ερωτικό γυμ
msgid "Sexually Suggestive"
msgstr "Σεξουαλικά προκλητικό"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr "Κοινή χρήση QR κώδικα"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10151,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Ελεγκτής κοινών προτιμήσεων"
@@ -10167,16 +10382,16 @@ msgstr "Εμφάνιση εναλλακτικού κειμένου"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Εμφάνιση ούτως ή άλλως"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Εμφάνιση προειδοποίησης και φιλτράρισμα από τις ροές"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr "Συνδεθείτε ή δημιουργήστε λογαριασμό για να συμμετάσχετε στη συζήτηση!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr ""
@@ -10337,6 +10558,10 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Αποσύνδεση"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr ""
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Αποσύνδεση;"
@@ -10391,7 +10616,7 @@ msgstr "Παράλειψη"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Μικρότερο"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Κάτι πήγε στραβά"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Κάτι πήγε στραβά!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr ""
@@ -10568,7 +10798,7 @@ msgstr "Αθλήματα"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Έναρξη νέας συνομιλίας"
@@ -10582,17 +10812,17 @@ msgstr ""
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Έναρξη συνομιλίας με {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "starter pack"
@@ -10654,12 +10884,12 @@ msgstr "Η αποθήκευση εκκαθαρίστηκε, πρέπει να ε
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Υποβολή"
@@ -10684,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Εγγραφή"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Επιτυχία!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Υποστήριξη"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Αλλαγή λογαριασμού"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10828,7 +11062,7 @@ msgstr "Μόνο ετικέτες"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Πατήστε για να απορρίψετε"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Όροι"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Κείμενο & ετικέτες"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Πεδίο εισαγωγής κειμένου"
@@ -11049,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "Η δημοσίευση στην οποία απαντάτε έχει επισημανθεί ως γραμμένη στα {suggestedLanguageName} από τον συντάκτη της. Θα θέλατε να απαντήσετε στα <0>{suggestedLanguageName}0>;"
@@ -11057,9 +11314,9 @@ msgstr "Η δημοσίευση στην οποία απαντάτε έχει ε
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Η Πολιτική Απορρήτου έχει μετακινηθεί στο <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "Παρουσιάστηκε πρόβλημα επικοινωνίας με τον διακομιστή"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Παρουσιάστηκε πρόβλημα επικοινωνίας με τον διακομιστή, παρακαλούμε ελέγξτε τη σύνδεσή σας στο internet και δοκιμάστε ξανά."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Παρουσιάστηκε πρόβλημα λήψης ειδοποιήσεων. Πατήστε εδώ για να δοκιμάσετε ξανά."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Παρουσιάστηκε πρόβλημα λήψης αναρτήσεων. Πατήστε εδώ για να δοκιμάσετε ξανά."
@@ -11161,7 +11420,7 @@ msgstr "Παρουσιάστηκε πρόβλημα λήψης των πληρο
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Παρουσιάστηκε πρόβλημα κατά την κατάργηση αυτής της ροής. Παρακαλούμε ελέγξτε τη σύνδεσή σας στο internet και δοκιμάστε ξανά."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Αυτή η ένσταση θα σταλεί στο <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Αυτή η ένσταση θα σταλεί στην υπηρεσία διαχείρισης του Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Αυτή η ένσταση θα σταλεί στην υπηρεσία
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Αυτό το περιεχόμενο δεν είναι διαθέσιμ
msgid "This content is not viewable without a Bluesky account."
msgstr "Αυτό το περιεχόμενο δεν είναι ορατό χωρίς λογαριασμό Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11318,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr "Αυτή η ροή δεν είναι πλέον διαθέσιμη. Σα
msgid "This handle is reserved. Please try a different one."
msgstr "Αυτό το όνομα χρήστη είναι κρατημένο. Παρακαλούμε δοκιμάστε ένα διαφορετικό."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr ""
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Αυτή η ανάρτηση θα κρυφτεί από τις ροές και τα νήματα. Αυτό δεν μπορεί να αναιρεθεί."
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr ""
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr ""
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr "Αυτός ο χρήστης δεν έχει ακόλουθους."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Αυτός ο χρήστης σας έχει μπλοκάρει. Δεν μπορείτε να δείτε το περιεχόμενό του."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Προτιμήσεις Νήματος"
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Προτιμήσεις Νημάτων"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Για να απενεργοποιήσετε τη μέθοδο email 2FA, παρακαλούμε επαληθεύστε την πρόσβαση σας στην ηλεκτρονική διεύθυνση."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11646,12 +11927,12 @@ msgstr "Κορυφή"
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11763,11 +12044,15 @@ msgstr "Αδυναμία επικοινωνίας με την υπηρεσία
msgid "Unable to delete"
msgstr "Αδυναμία διαγραφής"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr ""
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11918,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Ακύρωση Σίγασης συνομιλίας"
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Αφαίρεση καρφιτσωμένου"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Αφαίρεση καρφιτσωμένου από την αρχική σελίδα"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Αφαίρεση καρφιτσωμένου από τη λίστα διαχείρισης"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr ""
@@ -12030,11 +12315,11 @@ msgstr "Απεγγραφή από αυτόν τον ετικετογράφο"
msgid "Unsubscribed from list"
msgstr "Απεγγραφή από αυτήν την λίστα"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "Ενημέρωση <0>{displayName}0> στις Λίστες"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "Ενημέρωση σε {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Η ενημέρωση της ορατότητας της απάντησης απέτυχε"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Αντ'αυτού, ανεβάστε μια φωτογραφία"
@@ -12098,39 +12395,40 @@ msgstr "Αντ'αυτού, ανεβάστε μια φωτογραφία"
msgid "Upload a text file to:"
msgstr "Ανεβάστε ένα αρχείο κειμένου στο:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Ανεβάστε από την κάμερα"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Ανεβάστε από αρχεία"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Ανεβάστε από τη βιβλιοθήκη"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Ανεβάζω εικόνες..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Ανεβάζω μικρογραφία συνδέσμου..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Ανεβάζω βίντεο..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Λίστα χρηστών από {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "χρήστες που ακολουθούνται από <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Επαλήθευση εγγραφής DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12349,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr "Βίντεο"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Αποτυχία επεξεργασίας βίντεο"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12419,7 +12717,7 @@ msgstr "Το βίντεο δεν βρέθηκε."
msgid "Video settings"
msgstr "Ρυθμίσεις βίντεο"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Το βίντεο ανέβηκε"
@@ -12432,18 +12730,18 @@ msgstr "Βίντεο: {0}"
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Προβολή εικόνας προφίλ του/της {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Προβολή προφίλ του/της {0}"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Προβολή λεπτομερειών"
msgid "View full thread"
msgstr "Προβολή πλήρους νήματος"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Προβολή πληροφοριών σχετικά με αυτές τις ετικέτες"
@@ -12522,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "Προβολή προφίλ"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Προβολή της εικόνας προφίλ"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "Προβολή της υπηρεσίας επισήμανσης που
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Προβολή χρηστών που τους αρέσει αυτή η ροή"
@@ -12596,8 +12902,8 @@ msgstr "Προβολή των λογαριασμών που έχετε σε σί
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12640,8 +12946,8 @@ msgstr "Προειδοποίηση περιεχομένου"
msgid "Warn content and filter from feeds"
msgstr "Προειδοποίηση περιεχομένου και φιλτράρισμα από τις ροές"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Δεν μπορέσαμε να φορτώσουμε αυτήν τη συνομιλία"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Δεν μπορέσαμε να προσδιορίσουμε εάν επιτρέπεται να ανεβάζετε βίντεο. Παρακαλώ προσπαθήστε ξανά."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "Αντιμετωπίζουμε προβλήματα δικτύου, δοκιμάστε ξανά"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Λυπούμαστε! Η ανάρτηση στην οποία απαντάτε έχει διαγραφεί."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Λυπούμαστε! Δεν μπορούμε να βρούμε τη σελίδα που αναζητούσατε."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Πώς θέλετε να ονομάσετε το starter pack σας;"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Τι συμβαίνει;"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12878,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr "Ποιος μπορεί να αλληλεπιδράσει με αυτήν την ανάρτηση;"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Ποιος μπορεί να απαντήσει"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Ουπς!"
@@ -12939,7 +13249,7 @@ msgstr "Γιατί πρέπει να ελεγχθεί αυτό το starter pack
msgid "Why should this user be reviewed?"
msgstr "Γιατί πρέπει να ελεγχθεί αυτός ο χρήστης;"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Γράψτε ανάρτηση"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Γράψτε την απάντησή σας"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Επιστράφηκε λάθος DID από τον διακομιστή. Ελήφθη: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr ""
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Δεν επιτρέπεται να ανεβάζετε βίντεο."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Μπορείτε να συνεχίσετε τις τρέχουσες συνομιλίες ανεξάρτητα από τη ρύθμιση που θα επιλέξετε."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Τώρα μπορείτε να συνδεθείτε με τον νέο σας κωδικό πρόσβασης."
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "Μπορείτε να επανενεργοποιήσετε τον λογ
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "Δεν έχετε αποθηκευμένες ροές."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Έχετε φτάσει προσωρινά το όριο για μεταφορτώσεις βίντεο. Παρακαλώ προσπαθήστε ξανά αργότερα."
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "Πρέπει να ακολουθείτε τουλάχιστον επτά
msgid "You must grant access to your photo library to save a QR code"
msgstr "Πρέπει να παραχωρήσετε πρόσβαση στη βιβλιοθήκη φωτογραφιών σας για να αποθηκεύσετε έναν κωδικό QR"
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Θα αποσυνδεθείτε από όλους τους λογαριασμούς σας."
@@ -13390,7 +13710,7 @@ msgstr "Τώρα θα λαμβάνετε ειδοποιήσεις για αυτ
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Θα λάβετα ένα email με ένα \"κωδικό επαναφοράς.\\ Εισάγετε αυτό τον κωδικό εδώ, εν συνεχεία εισάγετε το νέο σας κωδικό πρόσβασης.\""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Φτάσατε στο τέλος της ροής σας! Βρείτε περισσότερους λογαριασμούς για να ακολουθήσετε."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Έχετε φτάσει το ημερήσιο όριο για μεταφορτώσεις βίντεο (πάρα πολλά bytes)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Έχετε φτάσει το ημερήσιο όριο για μεταφορτώσεις βίντεο (πάρα πολλά βίντεο)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Ο λογαριασμός σας δεν είναι ακόμη αρκετά παλιός για να ανεβάσετε βίντεο. Παρακαλώ προσπαθήστε ξανά αργότερα."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Το αποθετήριο του λογαριασμού σας, που περιέχει όλα τα δημόσια δεδομένα, μπορεί να ληφθεί σε μορφή αρχείου \"CAR\". Αυτό το αρχείο δεν περιέχει ενσωματωμένα πολυμέσα, όπως εικόνες ή τα ιδιωτικά σας δεδομένα, τα οποία μπορούν να ληφθούν ξεχωριστά."
@@ -13519,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr "Η ημερομηνία γέννησής σας"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Οι συνομιλίες σας έχουν απενεργοποιηθεί"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "Το email σας φαίνεται να είναι μη έγκυρο."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13582,7 +13910,7 @@ msgstr "Η ροή που ακολουθείτε είναι άδεια! Ακολ
msgid "Your full handle will be <0>@{0}0>"
msgstr "Το πλήρες όνομα χρήστη σας θα είναι <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "Οι λέξεις σας σε σίγαση"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13661,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/en-GB/messages.po b/src/locale/locales/en-GB/messages.po
index e27c9fe5af..c5e0e6ec8d 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: English, United Kingdom\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minute} other {# minutes}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# month} other {# months}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr "{0, plural, one {# new join request} other {# new join requests}}"
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, one {# person} other {# people}} reacted – {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# second} other {# seconds}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# unread item} other {# unread items}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr "{0, plural, one {#m} other {#m}}"
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} following"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr "{0} is blocking you"
@@ -264,7 +269,7 @@ msgstr "{0} out of 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} reacted {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, a list by {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "{0}'s avatar"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "{0}’s avatar"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr "{0}/{1}"
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr "{0}/{1} {2, plural, one {member} other {members}}"
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr "{0}/{1} members"
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr "{count, plural, one {# chat update} other {# chat updates}}"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr "{count, plural, one {# new join request} other {# new join requests}}"
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, one {# request} other {# requests}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# unread item} other {# unread items}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr "{count, plural, other {#+ requests to join}}"
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "{count}+"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "{count}+ requests"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} verified you"
msgid "{following} following"
msgstr "{following} following"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "{handle} can’t be added"
@@ -547,7 +599,7 @@ msgstr "{handle} can’t be added"
msgid "{handle} can't be messaged"
msgstr "{handle} can't be messaged"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "{handle} can’t be messaged"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# hour {minutesString}} other {# hours {minutesStri
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# hour} other {# hours}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,9 +643,9 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
-msgstr ""
+msgstr "{memberCount}/{memberLimit}"
#: src/features/liveNow/utils.ts:10
msgid "{minutes, plural, one {# minute} other {# minutes}}"
@@ -607,7 +669,7 @@ msgstr "{name}'s favourite feeds and people – join me!"
msgid "{name}'s starter pack"
msgstr "{name}'s starter pack"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# unread item} other {# unread items}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, one {# request} other {# requests}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "{requestCount}+ requests"
@@ -795,8 +857,11 @@ msgstr "A network error occurred. Please check your internet connection"
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "A network error occurred. Please check your internet connection."
@@ -804,7 +869,7 @@ msgstr "A network error occurred. Please check your internet connection."
msgid "A new code has been sent"
msgstr "A new code has been sent"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "A new form of verification"
@@ -827,11 +892,11 @@ msgstr "A screenshot of a profile page with a bell icon next to the follow butto
msgid "A screenshot of 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 "A screenshot of 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!!!\"."
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
-msgstr ""
+msgstr "A selected recipient is not followed by the sender."
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Abusive or discriminatory behaviour"
msgid "Accept"
msgstr "Accept"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Accept"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Accept chat request"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr "Accept join request"
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Accept Request"
@@ -860,17 +935,26 @@ msgstr "Accept Request"
msgid "Accept this language suggestion"
msgstr "Accept this language suggestion"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr "Accepted conversations"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr "Access requested! The group owner will review your request."
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Accessibility"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Accessibility Settings"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Account unmuted"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Activity from others"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Activity notifications"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Add"
@@ -999,8 +1079,8 @@ msgstr "Add account"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Add alt text (optional)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Add another account"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Add another post"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Add another post to thread"
@@ -1035,7 +1115,7 @@ msgstr "Add app password"
msgid "Add App Password"
msgstr "Add App Password"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "Add automation label to account"
@@ -1043,7 +1123,7 @@ msgstr "Add automation label to account"
msgid "Add emoji reaction"
msgstr "Add emoji reaction"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Add group chat members"
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Add media to post"
@@ -1062,8 +1142,8 @@ msgstr "Add media to post"
msgid "Add members"
msgstr "Add members"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Add more details (optional)"
@@ -1080,8 +1160,8 @@ msgstr "Add mute word with chosen settings"
msgid "Add muted words and tags"
msgstr "Add muted words and tags"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "Adding members to list..."
msgid "Additional details (limit 1000 characters)"
msgstr "Additional details (limit 1000 characters)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Additional details (limit 300 characters)"
@@ -1228,12 +1308,12 @@ msgstr "Age assurance enquiry was submitted"
msgid "Age assurance only takes a few minutes"
msgstr "Age assurance only takes a few minutes"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "All"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "All {0}"
@@ -1278,13 +1358,13 @@ msgstr "Allow access to your direct messages"
msgid "Allow anyone to reply"
msgstr "Allow anyone to reply"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "Allow direct messages from"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr "Allow group chat invites from"
@@ -1338,12 +1418,12 @@ msgstr "Already have an account?"
msgid "Already signed in as @{0}"
msgstr "Already signed in as @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Alt Text"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alt text describes images for blind and low-vision users and helps give context to everyone."
@@ -1387,7 +1467,7 @@ msgstr "An error has occurred"
msgid "An error occurred"
msgstr "An error occurred"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "An error occurred while compressing the video."
@@ -1432,11 +1512,11 @@ msgstr "An error occurred while saving the QR code!"
msgid "An error occurred while trying to follow all"
msgstr "An error occurred while trying to follow all"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "An error occurred while uploading the video. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "An error occurred while uploading the video. Please check your internet connection and try again."
@@ -1461,21 +1541,21 @@ msgstr "An illustration of several Bluesky posts alongside repost, like, and com
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "An issue not included in these options"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
-msgstr ""
+msgstr "An issue occurred creating the group chat, please try again."
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
-msgstr ""
+msgstr "An issue occurred starting the chat, please try again."
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
msgid "An issue occurred while trying to open the chat"
@@ -1490,7 +1570,7 @@ msgstr "An issue occurred while trying to open the chat"
msgid "An issue occurred, please try again."
msgstr "An issue occurred, please try again."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "A mockup of an iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name."
@@ -1539,13 +1619,17 @@ msgstr "Anyone"
msgid "Anyone can interact"
msgstr "Anyone can interact"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr "Anyone can join"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "Anyone can join instantly"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "Anyone can request to join"
@@ -1555,11 +1639,11 @@ msgstr "Anyone can request to join"
msgid "Anyone who follows me"
msgstr "Anyone who follows me"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "App password names must be at least 4 characters long"
msgid "App passwords"
msgstr "App passwords"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "App Passwords"
@@ -1618,7 +1702,7 @@ msgstr "Appeal livestream suspension"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Appeal submitted"
@@ -1632,14 +1716,14 @@ msgstr "Appeal suspension"
msgid "Appeal Suspension"
msgstr "Appeal Suspension"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Appeal this decision"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "Are you really, really sure?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Are you sure you want to delete the app password \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "Are you sure you want to leave {groupName}?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
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: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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Are you sure you'd like to discard this post?"
@@ -1752,7 +1836,7 @@ msgstr "Automated account"
msgid "Automation label"
msgstr "Automation label"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "Automation Label"
@@ -1767,12 +1851,12 @@ msgstr "Autoplay videos and GIFs"
msgid "Available"
msgstr "Available"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Available"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Available"
msgid "Back"
msgstr "Back"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Back to Chats"
@@ -1840,12 +1926,12 @@ msgstr "Before you can accept this chat request, you must first verify your emai
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Before you can get notifications for {name}'s posts, you must first verify your email."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Before you can message another user, you must first verify your email."
@@ -1877,7 +1963,7 @@ msgstr "Birthday"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "Block {displayName}"
msgid "Block account"
msgstr "Block account"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Block account?"
@@ -1912,15 +1998,15 @@ msgstr "Block Account?"
msgid "Block accounts"
msgstr "Block accounts"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
-msgstr ""
+msgstr "Block and delete"
#. After-report action for a conversation
#: src/components/dms/AfterReportConversationDialog.tsx:167
msgctxt "button"
msgid "Block and leave"
-msgstr ""
+msgstr "Block and leave"
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
msgid "Block list"
@@ -1936,9 +2022,9 @@ msgstr "Block these accounts?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Block user"
@@ -1946,17 +2032,17 @@ msgstr "Block user"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Block user"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Block user and/or delete this conversation"
#: src/components/dms/AfterReportConversationDialog.tsx:217
msgid "Block user and/or leave this conversation"
-msgstr ""
+msgstr "Block user and/or leave this conversation"
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Blocked"
@@ -1964,13 +2050,13 @@ msgstr "Blocked"
msgid "Blocked accounts"
msgstr "Blocked accounts"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Blocked Accounts"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky is better with friends!"
msgid "Bluesky is more fun with friends"
msgstr "Bluesky is more fun with friends"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Bluesky is more fun with friends! Import your contacts to see who’s already here."
@@ -2053,7 +2139,7 @@ msgstr "Bluesky will choose a set of recommended accounts from people in your ne
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 "Bluesky will not show your profile and posts to logged-out users. Other apps may not honour this request. This does not make your account private."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky will proactively verify notable and authentic accounts."
@@ -2137,23 +2223,30 @@ msgstr "Business"
msgid "Button to go back to the home timeline"
msgstr "Button to go back to the home timeline"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "By {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "By <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr "By <0>{ownerDisplayName}0>"
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr "by <0>@{0}0>"
@@ -2181,7 +2274,7 @@ msgstr "By creating an account you agree to the <0>Terms of Service0>."
msgid "By you"
msgstr "By you"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Camera"
@@ -2192,8 +2285,8 @@ msgstr "Camera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Camera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Camera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Cancel"
@@ -2248,9 +2341,9 @@ msgstr "Cancel reactivation and sign out"
msgid "Cancel search"
msgstr "Cancel search"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Cannot interact with a blocked user"
@@ -2264,7 +2357,7 @@ msgstr "Subtitles (.vtt)"
msgid "Captions & alt text"
msgstr "Subtitles & alt text"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "carousel"
@@ -2297,7 +2390,7 @@ msgstr "Change app language"
msgid "Change Handle"
msgstr "Change Handle"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Change moderation service"
@@ -2310,11 +2403,11 @@ msgstr "Change password"
msgid "Change password dialog"
msgstr "Change password dialog"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Change report category"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Change report reason"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Changes to the starter pack will not be reflected in the list after creation. The list will be an independent copy."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Chat"
@@ -2361,6 +2454,13 @@ msgstr "Chat deleted"
msgid "Chat ended"
msgstr "Chat ended"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr "Chat invite link no longer available"
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "Chat locked"
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Chat muted"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
-msgstr ""
+msgstr "Chat recipient is not followed by the sender."
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Chat request inbox"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Chat requests"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Chat settings"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Chat Settings"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Chat unmuted"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Chats"
@@ -2479,7 +2579,7 @@ msgstr "Choose post languages"
msgid "Choose this color as your avatar"
msgstr "Choose this colour as your avatar"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "Choose who can join this group chat and how."
@@ -2533,7 +2633,7 @@ msgstr "Click for information"
msgid "click here"
msgstr "click here"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "Click here to add people to this group chat"
@@ -2541,7 +2641,7 @@ msgstr "Click here to add people to this group chat"
msgid "Click here to contact our support team"
msgstr "Click here to contact our support team"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "Click here to create or manage an invite link for this group chat"
@@ -2558,7 +2658,7 @@ msgstr "Click here to log out"
msgid "Click here to resend the email"
msgstr "Click here to resend the email"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Click here to restart the verification process."
@@ -2567,11 +2667,11 @@ msgstr "Click here to restart the verification process."
msgid "Click here to update your birthdate"
msgstr "Click here to update your birthdate"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Click here to update your email"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "Click here to view the invite link for this group chat"
@@ -2580,7 +2680,7 @@ msgstr "Click here to view the invite link for this group chat"
msgid "Click to open tag menu for {0}"
msgstr "Click to open tag menu for {0}"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Click to retry failed message"
@@ -2594,28 +2694,30 @@ msgstr "Click to retry failed message"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Click to retry failed message"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Close active dialog"
msgid "Close alert"
msgstr "Close alert"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr "Close banner"
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Close bottom drawer"
@@ -2657,8 +2763,9 @@ msgstr "Close bottom drawer"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Close dialog"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Close image"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Close image viewer"
@@ -2683,6 +2790,14 @@ msgstr "Close image viewer"
msgid "Close menu"
msgstr "Close menu"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr "Close the incoming requests banner"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Close this dialog"
@@ -2695,7 +2810,7 @@ msgstr "Close welcome modal"
msgid "Closes password update alert"
msgstr "Closes password update alert"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Closes post composer and discards post draft"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Comics"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Community Guidelines"
@@ -2740,12 +2855,12 @@ msgstr "Complete the challenge"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Compose new post"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Compose posts up to {0, plural, other {# characters}} in length"
@@ -2753,11 +2868,11 @@ msgstr "Compose posts up to {0, plural, other {# characters}} in length"
msgid "Compose reply"
msgstr "Compose reply"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "Compressing GIF..."
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Compressing video..."
@@ -2780,7 +2895,7 @@ msgstr "Configured in <0>moderation settings0>."
msgid "Confirm"
msgstr "Confirm"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Content & Media"
msgid "Content and media"
msgstr "Content and media"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Content and Media"
@@ -2889,7 +3004,7 @@ msgstr "Context menu backdrop, click to close the menu."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Continue thread"
msgid "Continue thread..."
msgstr "Continue thread..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Continue to group name"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Continue to next step"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Conversation"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Conversation deleted"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversation deleted"
@@ -2939,13 +3054,20 @@ msgstr "Conversation deleted"
#: src/components/dms/AfterReportConversationDialog.tsx:179
msgctxt "toast"
msgid "Conversation left"
-msgstr ""
+msgstr "Conversation left"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr "Conversation not found."
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Copied build version to clipboard"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Copy DID"
msgid "Copy host"
msgstr "Copy host"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Copy link to profile"
msgid "Copy link to starter pack"
msgstr "Copy link to starter pack"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Copy message text"
@@ -3052,7 +3175,7 @@ msgstr "Copy TXT record value"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Copyright Policy"
@@ -3065,7 +3188,7 @@ msgstr "Could not connect to custom feed"
msgid "Could not connect to feed service"
msgstr "Could not connect to feed service"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr "Could not fetch post"
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Could not follow all matches. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Could not leave chat"
@@ -3094,6 +3217,10 @@ msgstr "Could not leave chat"
msgid "Could not load feed"
msgstr "Could not load feed"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr "Could not load invite"
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Country code"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Create"
@@ -3159,7 +3286,7 @@ msgstr "Create a QR code for a starter pack"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Create a starter pack"
@@ -3174,13 +3301,14 @@ msgstr "Create a starter pack for me"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Create an account"
msgid "Create an account without using this starter pack"
msgstr "Create an account without using this starter pack"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Create an avatar instead"
@@ -3206,7 +3334,7 @@ msgstr "Create an avatar instead"
msgid "Create another"
msgstr "Create another"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Create group chat"
@@ -3228,19 +3356,20 @@ msgstr "Create list from starter pack"
msgid "Create moderation list"
msgstr "Create moderation list"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Create new account"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr "Create or modify an invite link for this group chat"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Create report for {0}"
@@ -3256,8 +3385,8 @@ msgstr "Create user list"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Created {0}"
@@ -3341,7 +3470,7 @@ msgstr "Default"
msgid "Default icons"
msgstr "Default icons"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Delete chat declaration record"
msgid "Delete contacts"
msgstr "Delete contacts"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Delete conversation"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Delete for me"
@@ -3399,11 +3528,11 @@ msgstr "Delete for me"
msgid "Delete list"
msgstr "Delete list"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Delete message"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Delete message for me"
@@ -3413,7 +3542,7 @@ msgstr "Delete my account"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Delete post"
@@ -3434,12 +3563,12 @@ msgstr "Delete this list?"
msgid "Delete this post?"
msgstr "Delete this post?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Deleted"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Deleted Account"
@@ -3507,13 +3636,13 @@ msgstr "Dialog: adjust who can interact with this post"
msgid "Dim"
msgstr "Dim"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Disable"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Disable 2FA"
@@ -3521,7 +3650,7 @@ msgstr "Disable 2FA"
msgid "Disable captions"
msgstr "Disable subtitles"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Disable email 2FA"
@@ -3534,8 +3663,8 @@ msgstr "Disable Email 2FA"
msgid "Disable haptic feedback"
msgstr "Disable haptic feedback"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr "Disable link"
@@ -3547,7 +3676,7 @@ msgstr "Disable quote posts of this post"
msgid "Disable replies entirely"
msgstr "Disable replies entirely"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "Disable this invite link?"
@@ -3560,9 +3689,9 @@ msgstr "Disabled"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Discard"
msgid "Discard changes?"
msgstr "Discard changes?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Discard draft?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Discard post?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Disconnect Germ DM"
@@ -3613,11 +3742,11 @@ msgstr "Discover New Feeds"
msgid "Dismiss"
msgstr "Dismiss"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Dismiss banner"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Dismiss error"
@@ -3673,7 +3802,7 @@ msgstr "Does not include nudity."
msgid "Domain verified!"
msgstr "Domain verified!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Don't have a code or need a new one? <0>Click here.0>"
@@ -3681,7 +3810,7 @@ msgstr "Don't have a code or need a new one? <0>Click here.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Don’t see a code? <0>Click here to resend.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Don't see an email? <0>Click here to resend.0>"
@@ -3700,16 +3829,19 @@ msgstr "Don't worry! All existing messages and settings are saved and will be av
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Done"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Double tap or long press the message to add a reaction"
@@ -3741,15 +3873,6 @@ msgstr "Double tap to like"
msgid "Download Bluesky"
msgstr "Download Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Download CAR file"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Download CAR file"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Download chat data"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Download chat data"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Download image"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr "Download profile data"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr "Download profile data"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Doxxing"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "e.g. Users that repeatedly reply with ads."
msgid "Eating disorders"
msgstr "Eating disorders"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Edit"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Edit avatar"
@@ -3847,14 +3978,14 @@ msgstr "Edit avatar"
msgid "Edit Feeds"
msgstr "Edit Feeds"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Edit group name"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Edit image"
@@ -3868,7 +3999,16 @@ msgstr "Edit interaction settings"
msgid "Edit interests"
msgstr "Edit interests"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr "Edit invite link"
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr "Edit invite link"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "Edit link settings"
@@ -3886,20 +4026,15 @@ msgstr "Edit live status"
msgid "Edit moderation list"
msgstr "Edit moderation list"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Edit My Feeds"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "Edit name"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Edit notifications from {0}"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Edit People"
@@ -3925,7 +4060,7 @@ msgstr "Edit Profile"
msgid "Edit starter pack"
msgstr "Edit starter pack"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "Edit this group chat’s name"
@@ -3937,7 +4072,7 @@ msgstr "Edit user list"
msgid "Edit who can reply"
msgstr "Edit who can reply"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Edit your starter pack"
@@ -3971,7 +4106,7 @@ msgstr "Email address"
msgid "Email Resent"
msgstr "Email Resent"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "Email sent!"
@@ -4006,8 +4141,8 @@ msgstr "Embed this post in your website. Simply copy the following snippet and p
msgid "Embedded video player"
msgstr "Embedded video player"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Enable"
@@ -4025,7 +4160,7 @@ msgstr "Enable adult content"
msgid "Enable captions"
msgstr "Enable subtitles"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Enable email 2FA"
@@ -4038,13 +4173,12 @@ msgstr "Enable external media"
msgid "Enable media players for"
msgstr "Enable media players for"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Enable push notifications"
@@ -4091,8 +4225,8 @@ msgstr "Enter a password"
msgid "Enter a word or tag"
msgstr "Enter a word or tag"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Enter code"
@@ -4143,7 +4277,7 @@ msgstr "Enters fullscreen"
msgid "Entertainment"
msgstr "Entertainment"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Error"
@@ -4185,23 +4319,23 @@ msgstr "Everybody can reply"
msgid "Everybody can reply to this post."
msgstr "Everybody can reply to this post."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Everyone"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Everyone"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Everyone"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Everything else"
@@ -4217,8 +4351,8 @@ msgstr "Excludes users you follow"
msgid "Exit fullscreen"
msgstr "Exit fullscreen"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Expand alt text"
@@ -4226,7 +4360,7 @@ msgstr "Expand alt text"
msgid "Expand list of users"
msgstr "Expand list of users"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Expand or collapse the full post you are replying to"
@@ -4238,7 +4372,7 @@ msgstr "Expand post text"
msgid "Expands or collapses post text"
msgstr "Expands or collapses post text"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Expected URI to resolve to a record"
@@ -4277,9 +4411,9 @@ msgstr "Explicit or potentially disturbing media."
msgid "Explicit sexual images."
msgstr "Explicit sexual images."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Explore"
@@ -4289,11 +4423,8 @@ msgstr "Explore"
msgid "Explore the app"
msgstr "Explore the app"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr "Export chat data"
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "Export my chat data"
@@ -4322,7 +4453,7 @@ msgstr "External Media"
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 "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."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "External Media Preferences"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Failed to accept chat"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr "Failed to accept join request"
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Failed to add emoji reaction"
@@ -4354,7 +4489,7 @@ msgstr "Failed to add to starter pack"
msgid "Failed to change handle. Please try again."
msgstr "Failed to change handle. Please try again."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "Failed to copy link"
@@ -4367,7 +4502,7 @@ msgstr "Failed to create app password. Please try again."
msgid "Failed to create conversation"
msgstr "Failed to create conversation"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "Failed to create invite link"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Failed to delete chat"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Failed to delete message"
@@ -4394,24 +4529,24 @@ msgstr "Failed to delete post, please try again"
msgid "Failed to delete starter pack"
msgstr "Failed to delete starter pack"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "Failed to disable invite link"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Failed to disconnect Germ DM. Error: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "Failed to edit group chat name"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "Failed to edit invite link"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "Failed to enable invite link"
@@ -4427,19 +4562,27 @@ msgstr "Failed to follow all your friends, please try again"
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "Failed to hide suggestion, please check your internet connection"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr "Failed to ignore join request"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr "Failed to join the group chat. Please try again."
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "Failed to launch SMS app"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "Failed to leave group chat"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Failed to load conversations"
@@ -4456,17 +4599,8 @@ msgstr "Failed to load feeds"
msgid "Failed to load feeds preferences"
msgstr "Failed to load feeds preferences"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Failed to load notification settings."
@@ -4493,16 +4627,15 @@ msgstr "Failed to load suggested feeds"
msgid "Failed to load suggested follows"
msgstr "Failed to load suggested follows"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "Failed to lock group chat"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Failed to mark all requests as read"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "Failed to mute group chat"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Failed to pin post"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Failed to reconnect Germ DM. Error: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Failed to remove data. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Failed to remove emoji reaction"
@@ -4542,15 +4675,19 @@ msgstr "Failed to remove group chat member"
msgid "Failed to remove verification"
msgstr "Failed to remove verification"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr "Failed to rescind your request. Please try again."
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr "Failed to resolve location. Please try again."
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Failed to save draft"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "Failed to save image"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Failed to save your interests."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Failed to send email, please try again."
@@ -4580,7 +4717,7 @@ msgstr "Failed to send report"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Failed to submit appeal, please try again."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Failed to toggle thread mute, please try again"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr "Failed to unlock group chat"
@@ -4597,12 +4734,12 @@ msgstr "Failed to unlock group chat"
msgid "Failed to unpin list"
msgstr "Failed to unpin list"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Failed to update email 2FA settings"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Failed to update email, please try again."
@@ -4614,7 +4751,7 @@ msgstr "Failed to update feeds"
msgid "Failed to update notification declaration"
msgstr "Failed to update notification declaration"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Failed to update settings"
@@ -4641,7 +4778,7 @@ msgstr "Fake account or bot"
msgid "False information about elections"
msgstr "False information about elections"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Feed"
@@ -4649,7 +4786,7 @@ msgstr "Feed"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Feed by {0}"
@@ -4662,7 +4799,7 @@ msgstr "Feed creator"
msgid "Feed identifier"
msgstr "Feed identifier"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Feed menu"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Feedback sent to feed operator"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Feeds"
@@ -4739,7 +4876,7 @@ msgstr "Filter search by language (currently: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Filter who can opt to receive notifications for your activity"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Filter who you receive notifications from"
@@ -4747,11 +4884,11 @@ msgstr "Filter who you receive notifications from"
msgid "Finalizing"
msgstr "Finalising"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Finally!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Finance"
msgid "Find accounts to follow"
msgstr "Find accounts to follow"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Find Contacts"
@@ -4799,7 +4936,7 @@ msgstr "Find people to follow"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Find posts, users and feeds on Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Find your friends"
@@ -4944,8 +5081,12 @@ msgstr "Followed by <0>{0}0> and <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Followed by <0>{0}0>, <1>{1}1> and {2, plural, one {# other} other {# others}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr "Followers can join"
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Followers of @{0} that you know"
@@ -4995,19 +5136,16 @@ msgstr "Following {handle}"
msgid "Following feed preferences"
msgstr "Following feed preferences"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Following Feed Preferences"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Follows you"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Follows You"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Font"
@@ -5069,7 +5207,7 @@ msgstr "Forgot?"
msgid "Free your feed"
msgstr "Free your feed"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "From"
@@ -5086,35 +5224,35 @@ msgstr "From <0/>"
msgid "Generate a starter pack"
msgstr "Generate a starter pack"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Generate invite link"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Generate new invite link"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Generate new link"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germ DM disconnected"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Germ DM Link"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germ DM reconnected"
@@ -5122,46 +5260,50 @@ msgstr "Germ DM reconnected"
msgid "Get help"
msgstr "Get help"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr "Get notifications for starter pack joins, verification, and other activity."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Get notifications when people follow you."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Get notifications when people like posts that you've reposted."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Get notifications when people like your posts."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr "Get notifications when people like your reposts."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Get notifications when people mention you."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Get notifications when people quote your posts."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Get notifications when people reply to your posts."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Get notifications when people repost posts that you've reposted."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr "Get notifications when people repost your reposts."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr "Get notifications when there's activity on posts you're subscribed to."
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Get notified about new posts"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Get notified about posts and replies from accounts you choose."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Get notified of new posts from {name}"
@@ -5174,27 +5316,27 @@ msgstr "Get notified of this account’s activity"
msgid "Get notified when {name} posts"
msgstr "Get notified when {name} posts"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Get notified when someone posts"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Get started"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIF uploaded"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Give your profile a face"
@@ -5213,20 +5355,21 @@ msgstr "Glorification of violence"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Go back"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Go Back"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Go back to previous step"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Go home"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Go home"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Go Home"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Go to account settings"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Go to conversation with {0}"
@@ -5299,12 +5440,12 @@ msgstr "Go to next"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Go to profile"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "Go to the group chat named \"{chatName}\""
@@ -5320,8 +5461,8 @@ msgstr "Go to user’s profile"
msgid "Going live is currently disabled for your account"
msgstr "Going live is currently disabled for your account"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Got it"
@@ -5340,59 +5481,75 @@ msgstr "Graphic violent content"
msgid "Grooming or predatory behavior"
msgstr "Grooming or predatory behaviour"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr "Group chat"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "Group chat invite link dialog"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "Group chat locked"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "Group chat muted"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr "Group chat name updated"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "Group chat settings"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "Group chat unlocked"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "Group chat unmuted"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr "Group chats are not yet available"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr "Group chats are now available"
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr "Group chats can only have a maximum of {0, plural, other {# people}}."
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "Group is locked"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Group name"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Hacking or system attacks"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Handle too long. Please try a shorter one."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "Happening now"
@@ -5446,7 +5603,7 @@ msgstr "Harmful or high-risk activities"
msgid "Harming or endangering minors"
msgstr "Harming or endangering minors"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Hashtag"
@@ -5458,8 +5615,8 @@ msgstr "Hashtag {tag}"
msgid "Hate speech"
msgstr "Hate speech"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Have a code? <0>Click here.0>"
@@ -5483,7 +5640,7 @@ msgstr "Held by Bluesky for 7 days to prevent abuse, then deleted"
msgid "Help"
msgstr "Help"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Help people know you're not a bot by uploading a picture or creating an avatar."
@@ -5652,18 +5809,18 @@ msgstr "Hmm, it seems we're having trouble loading this data. See below for more
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmm, we couldn't load that moderation service."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Hold up! We’re gradually giving access to video and you’re still waiting in line. Check back soon!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Hold your horses! This feature isn't available to you yet. Please check back later."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Home"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "If alt text is long, toggles alt text expanded state"
@@ -5757,7 +5914,7 @@ msgstr "If you delete this list, you won't be able to recover it."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "If you need to update your email, <0>click here0>."
@@ -5765,7 +5922,7 @@ msgstr "If you need to update your email, <0>click here0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "If you remove this post, you won't be able to recover it."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "If you update your email address, email 2FA will be disabled."
@@ -5773,7 +5930,6 @@ msgstr "If you update your email address, email 2FA will be disabled."
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "If you want to change your password, we will send you a code to verify that this is your account."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
@@ -5786,23 +5942,33 @@ msgstr "If you're a developer, you can host your own server."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr "Ignore"
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr "Ignore join request"
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Image"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "Image {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Image {0} of {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "Image {0} of {imageCount}"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Image cache cleared, freed {0}"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "Image gallery, {0} images"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "Image is hidden due to your moderation settings."
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "Image is unavailable."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Image options"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Impersonation"
msgid "Import contacts"
msgstr "Import contacts"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Import Contacts"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Import contacts to find your friends"
@@ -5881,40 +6047,40 @@ msgstr "Imported on {0}"
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 "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."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "In-app"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "In-app notifications"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr "In-app, everyone"
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr "In-app, people you follow"
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr "In-app, push"
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr "In-app, push, everyone"
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr "In-app, push, people you follow"
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "Inbox empty"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Inbox zero!"
@@ -5963,6 +6129,10 @@ msgstr "Introducing saved posts AKA bookmarks"
msgid "Invalid 2FA confirmation code."
msgstr "Invalid 2FA confirmation code."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr "Invalid group chat code."
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Invalid handle. Please try a different one."
@@ -5977,10 +6147,14 @@ msgstr "Invalid interaction settings."
msgid "Invalid phone number"
msgstr "Invalid phone number"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Invalid report subject"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr "Invalid rescind request."
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Invalid Verification Code"
@@ -6010,12 +6184,12 @@ msgstr "Invite Friends"
msgid "Invite friends <0/>"
msgstr "Invite friends <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Invite link"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "Invite link created"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "Invite link disabled"
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "It's just you right now! Add more people to your starter pack by searching above."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "Job ID: {0}"
@@ -6083,6 +6257,11 @@ msgstr "Job ID: {0}"
msgid "Jobs"
msgstr "Jobs"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr "Join"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Jobs"
msgid "Join Bluesky"
msgstr "Join Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr "Join group chat"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr "Join request rescinded."
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Join the conversation"
msgid "Journalism"
msgstr "Journalism"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Keep editing"
@@ -6143,7 +6331,7 @@ msgstr "Labels on your account"
msgid "Labels on your content"
msgstr "Labels on your content"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Language Settings"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Latest"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Learn more about this warning"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Learn more about verification on Bluesky"
@@ -6239,7 +6427,7 @@ msgstr "Learn more about verification on Bluesky"
msgid "Learn more about what is public on Bluesky."
msgstr "Learn more about what is public on Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Learn more about your Germ DM link"
@@ -6252,8 +6440,8 @@ msgstr "Learn more in your <0>account settings.0>"
msgid "Learn more."
msgstr "Learn more."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Leave"
@@ -6276,7 +6464,7 @@ msgstr "Leave chat"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Leave conversation"
@@ -6284,13 +6472,13 @@ msgstr "Leave conversation"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Leave conversation"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "Leave group chat"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr "Leave this group chat"
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Light"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Like ({0, plural, one {# like} other {# likes}})"
@@ -6346,11 +6534,7 @@ msgstr "Like 10 posts"
msgid "Like 10 posts to train the Discover feed"
msgstr "Like 10 posts to train the Discover feed"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Like notifications"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Like this feed"
@@ -6358,8 +6542,8 @@ msgstr "Like this feed"
msgid "Like this labeler"
msgstr "Like this labeller"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Liked by"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Liked by {0, plural, one {# user} other {# users}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Liked by {likeCount, plural, one {# user} other {# users}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Likes"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Likes of your reposts"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Likes of your reposts notifications"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Likes on this post"
@@ -6409,11 +6589,11 @@ msgstr "Likes on this post"
msgid "Linear"
msgstr "Linear"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "Link copied to clipboard"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "List"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "List unmuted"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Lists"
@@ -6545,7 +6725,7 @@ msgstr "Live event unhidden"
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."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "Live feature is in beta"
@@ -6595,27 +6775,27 @@ msgstr "Loading post interaction settings..."
msgid "Loading..."
msgstr "Loading..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "Lock"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "Lock group chat"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "Lock group chat?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "Lock this group chat"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "Locked"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Log"
@@ -6662,7 +6842,7 @@ msgstr "Looks like you're missing a following feed. <0>Click here to add one.0
msgid "Love GIFs"
msgstr "Love GIFs"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Make adjustments to email settings for your account"
@@ -6687,9 +6867,8 @@ msgstr "Manage verification settings"
msgid "Manage your muted words and tags"
msgstr "Manage your muted words and tags"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Mark all as read"
@@ -6698,13 +6877,12 @@ msgstr "Mark all as read"
msgid "Mark as read"
msgstr "Mark as read"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Marked all as read"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Maybe later"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Media that may be disturbing or inappropriate for some audiences."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Members"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "Members can still read chat history but can’t send new messages."
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Mention notifications"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "mentioned users"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Mentions"
@@ -6775,22 +6949,22 @@ msgstr "Message {0}"
msgid "Message {displayName}"
msgstr "Message {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Message deleted"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Message deleted"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Message failed to send."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Message from @{0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Message is too long"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Message options"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Messages"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr "Messages from this person are hidden while they are blocking you."
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr "Messages from this person are hidden while you are blocking them."
@@ -6838,10 +7012,6 @@ msgstr "Midnight"
msgid "Minor harassment or bullying"
msgstr "Minor harassment or bullying"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Miscellaneous notifications"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Misleading"
@@ -6850,7 +7020,7 @@ msgstr "Misleading"
msgid "Missing media"
msgstr "Missing media"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderation"
@@ -6894,7 +7064,7 @@ msgstr "Moderation list updated"
msgid "Moderation lists"
msgstr "Moderation lists"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Moderation Lists"
@@ -6903,7 +7073,7 @@ msgstr "Moderation Lists"
msgid "moderation settings"
msgstr "moderation settings"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Moderation states"
@@ -6949,7 +7119,7 @@ msgstr "Films"
msgid "Music"
msgstr "Music"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Mute"
@@ -6994,7 +7164,7 @@ msgstr "Mute list"
msgid "Mute these accounts?"
msgstr "Mute these accounts?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "Mute this group chat"
@@ -7032,7 +7202,7 @@ msgstr "Mute thread"
msgid "Mute words & tags"
msgstr "Mute words & tags"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "Muted"
@@ -7040,7 +7210,7 @@ msgstr "Muted"
msgid "Muted accounts"
msgstr "Muted accounts"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Muted Accounts"
@@ -7108,8 +7278,8 @@ msgstr "Navigates to the next screen"
msgid "Navigates to your profile"
msgstr "Navigates to your profile"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Need to report a copyright violation, legal request, or regulatory compliance issue?"
@@ -7136,34 +7306,34 @@ msgstr "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "New chat"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "New chat with {0}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "New chat with {0} and {1}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "New email address"
@@ -7174,29 +7344,25 @@ msgstr "New email address"
msgid "New Feature"
msgstr "New Feature"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "New follower notifications"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "New followers"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "New group chat"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "New group chat"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "New group chat with:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "New post"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "New post"
@@ -7262,8 +7428,8 @@ msgstr "News"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "No GIFs found for \"{query}\"."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "No GIFs to show right now. Try again in a moment."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "No image"
@@ -7362,7 +7528,7 @@ msgstr "No longer following {0}"
msgid "No media yet"
msgstr "No media yet"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "No messages yet"
@@ -7378,12 +7544,12 @@ msgstr "No name"
msgid "No notifications yet!"
msgstr "No notifications yet!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "No one"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "No one"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "No result"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "No results"
@@ -7509,10 +7675,6 @@ msgstr "Non-consensual intimate imagery"
msgid "Non-sexual Nudity"
msgstr "Non-sexual Nudity"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "None"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "Not available on this platform."
msgid "Not followed by anyone you’re following"
msgstr "Not followed by anyone you’re following"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Not Found"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
@@ -7548,44 +7710,31 @@ msgstr "Note: This post is only visible to logged-in users."
msgid "Nothing saved yet"
msgstr "Nothing saved yet"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Notification settings"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Notification sounds"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Notifications"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Notifications for everything else, such as when someone joins via one of your starter packs."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "now"
@@ -7601,7 +7750,7 @@ msgstr "Number should be a mobile number"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Off"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "on<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Onboarding reset"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
-msgstr ""
+msgstr "One of the selected recipients does not allow group chats."
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
-msgstr ""
+msgstr "One of the selected recipients has blocked you and cannot be messaged."
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "One or more GIFs is missing alt text."
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "One or more images is missing alt text."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {The maximum number of characters is # characters.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "One or more videos is missing alt text."
@@ -7685,6 +7835,26 @@ msgstr "One or more videos is missing alt text."
msgid "Only {0} can reply."
msgstr "Only {0} can reply."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr "Only admins can accept join requests."
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr "Only admins can ignore join requests."
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr "Only followers can join this group chat."
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Only followers who I follow"
msgid "Only image files are supported"
msgstr "Only image files are supported"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr "Only people {0} follows can join."
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr "Only people the chat owner follows can join"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Only WebVTT (.vtt) files are supported"
@@ -7712,7 +7892,7 @@ msgstr "Oops, something went wrong!"
msgid "Oops!"
msgstr "Oops!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Open avatar creator"
@@ -7720,12 +7900,17 @@ msgstr "Open avatar creator"
msgid "Open camera"
msgstr "Open camera"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr "Open chat"
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "Open chat member options for {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Open conversation options"
@@ -7739,16 +7924,16 @@ msgstr "Open drawer menu"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Open emoji picker"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Open feed info screen"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Open feed options menu"
@@ -7760,13 +7945,17 @@ msgstr "Open full emoji list"
msgid "Open Germ DM"
msgstr "Open Germ DM"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr "Open group chat"
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "Open group chat settings"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Open link to {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Open pack"
msgid "Open post options menu"
msgstr "Open post options menu"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Open profile"
@@ -7817,6 +8006,10 @@ msgstr "Open storybook page"
msgid "Open system log"
msgstr "Open system log"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr "Open this group chat"
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Opens additional details for a debug entry"
msgid "Opens alt text dialog"
msgstr "Opens alt text dialog"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Opens camera on device"
@@ -7858,22 +8051,24 @@ msgstr "Opens composer"
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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Opens flow to create a new Bluesky account"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Opens flow to sign in to your existing Bluesky account"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Opens full image"
@@ -7890,7 +8085,7 @@ msgstr "Opens image picker"
msgid "Opens link {0}"
msgstr "Opens link {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Opens live status dialog"
@@ -7919,9 +8114,9 @@ msgstr "Opens the post composer"
msgid "Opens this draft in the composer"
msgstr "Opens this draft in the composer"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Opens this profile"
@@ -7997,12 +8192,12 @@ msgstr "Our blog post"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Our moderation team has received your report."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Our moderators have reviewed reports and decided to disable your access
msgid "Owner"
msgstr "Owner"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr "Owner must lock the group before leaving."
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Page not found"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Page Not Found"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Pause video"
msgid "People"
msgstr "People"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "People {ownerName} follows can join instantly"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "People {ownerName} follows can request to join"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "People followed by @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "People following @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "People I follow"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "People I follow can join instantly"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "People I follow can request to join"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Pictures meant for adults."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Pin feed"
@@ -8152,7 +8348,7 @@ msgstr "Pin feed"
msgid "Pin to home"
msgstr "Pin to home"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Pin to Home"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Pinned"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "Pinned {0} to Home"
@@ -8236,7 +8432,7 @@ msgstr "Please choose your handle."
msgid "Please choose your password."
msgstr "Please choose your password."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "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."
@@ -8244,7 +8440,7 @@ msgstr "Please click on the link in the email we just sent you to verify your ne
msgid "Please complete the verification captcha."
msgstr "Please complete the verification captcha."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Please confirm your email address to upload videos."
@@ -8265,14 +8461,14 @@ msgstr "Please enter a password. It must be at least 8 characters long."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Please enter a unique name for this app password or use our randomly generated one."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Please enter a valid code."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Please enter a valid email address."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Please enter a valid, non-temporary email address. You may need to access this email in the future."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Please enter the code we sent to <0>{0}0> below."
@@ -8293,7 +8489,7 @@ msgstr "Please enter the code we sent to <0>{0}0> below."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Please enter the code you received and the new password you would like to use."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Please enter the security code we sent to your previous email address."
@@ -8306,7 +8502,7 @@ msgstr "Please enter your email."
msgid "Please enter your invite code."
msgstr "Please enter your invite code."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Please enter your new email address."
@@ -8323,7 +8519,7 @@ msgstr "Please enter your username"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Please explain why you think this label was incorrectly applied by {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Please explain why you think your chats were incorrectly disabled"
@@ -8366,7 +8562,7 @@ msgstr "Please use the native app to import your contacts."
msgid "Please use the native app to sync your contacts."
msgstr "Please use the native app to sync your contacts."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Please verify your email"
@@ -8383,7 +8579,7 @@ msgstr "Politics"
msgid "Porn"
msgstr "Porn"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Post"
@@ -8403,12 +8599,12 @@ msgstr "Post a photo"
msgid "Post a video"
msgstr "Post a video"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Post All"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Post anyway"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Post blocked"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Post by @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Post deleted"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Post failed to upload. Please check your Internet connection and try again."
@@ -8454,7 +8650,7 @@ msgstr "Post Hidden by You"
msgid "Post interaction settings"
msgstr "Post interaction settings"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Post Interaction Settings"
@@ -8464,8 +8660,8 @@ msgstr "Post Interaction Settings"
msgid "Post language selection"
msgstr "Post language selection"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Post link"
@@ -8491,7 +8687,6 @@ msgstr "Post unpinned"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Posts can be muted based on their text, their tags, or both. We recommen
msgid "Posts hidden"
msgstr "Posts hidden"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Posts, Replies"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Potentially misleading link"
@@ -8528,6 +8719,7 @@ msgstr "Press to attempt reconnection"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Press to retry"
@@ -8536,7 +8728,7 @@ msgstr "Press to retry"
msgid "Press to view followers of this account that you also follow"
msgstr "Press to view followers of this account that you also follow"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Preview"
@@ -8559,21 +8751,20 @@ msgstr "Privacy"
msgid "Privacy and security"
msgstr "Privacy and security"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privacy and Security"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Privacy and Security settings"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Privacy Policy"
msgid "Privacy violation of a minor"
msgstr "Privacy violation of a minor"
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "Processing GIF..."
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Processing video..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Processing..."
@@ -8602,8 +8793,8 @@ msgstr "Processing..."
msgid "profile"
msgstr "profile"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Publish post"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Publish posts"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Publish replies"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Publish reply"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Push"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Push notifications"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
-msgstr "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr "Push, everyone"
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr "Push, people you follow"
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "QR code has been downloaded!"
msgid "QR code saved to your camera roll!"
msgstr "QR code saved to your camera roll!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Quote notifications"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Quote posts disabled"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Quotes"
@@ -8733,11 +8920,11 @@ msgstr "Rate limit exceeded. Please try again later."
msgid "Re-attach quote"
msgstr "Re-attach quote"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Re-enable invite link"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Re-enable link"
@@ -8745,8 +8932,8 @@ msgstr "Re-enable link"
msgid "React with {emoji}"
msgstr "React with {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Reactions"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "read about how to use search filters"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Read blog post"
@@ -8812,11 +8999,11 @@ msgstr "Real people."
msgid "Reason for appeal"
msgstr "Reason for appeal"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Receive in-app notifications"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Receive push notifications"
@@ -8841,6 +9028,10 @@ msgstr "Recommended"
msgid "Reconnect"
msgstr "Reconnect"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr "Refresh the page to see it."
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Reject"
msgid "Reject chat request"
msgstr "Reject chat request"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Reload conversations"
@@ -8896,17 +9087,17 @@ msgstr "Remove account"
msgid "Remove all contacts"
msgstr "Remove all contacts"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Remove attachment"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Remove Avatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Remove Banner"
@@ -8914,8 +9105,9 @@ msgstr "Remove Banner"
msgid "Remove caption file"
msgstr "Remove subtitle file"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Remove embed"
@@ -8933,8 +9125,8 @@ msgstr "Remove feed?"
msgid "Remove from chat"
msgstr "Remove from chat"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Remove from saved posts"
msgid "Remove from your feeds?"
msgstr "Remove from your feeds?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Remove image"
@@ -9009,11 +9201,11 @@ msgstr "Remove verification"
msgid "Remove your verification for this account?"
msgstr "Remove your verification for this account?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Removed by author"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Removed by you"
@@ -9035,7 +9227,7 @@ msgstr "Removed from saved posts"
msgid "Removed from starter pack"
msgstr "Removed from starter pack"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Replied to you"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Replies"
@@ -9104,14 +9295,14 @@ msgstr "Replies disabled"
msgid "Replies to this post are disabled."
msgstr "Replies to this post are disabled."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Reply"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Reply ({0, plural, one {# reply} other {# replies}})"
@@ -9125,10 +9316,6 @@ msgstr "Reply Hidden by Thread Author"
msgid "Reply Hidden by You"
msgstr "Reply Hidden by You"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Reply notifications"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Reply settings are chosen by the author of the thread"
@@ -9146,9 +9333,9 @@ msgstr "Reply visibility updated"
msgid "Reply was successfully hidden"
msgstr "Reply was successfully hidden"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Report"
@@ -9164,13 +9351,13 @@ msgstr "Report account"
msgid "Report conversation"
msgstr "Report conversation"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Report dialog"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Report feed"
@@ -9179,7 +9366,7 @@ msgstr "Report feed"
msgid "Report list"
msgstr "Report list"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Report message"
@@ -9199,8 +9386,8 @@ msgstr "Report starter pack"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Report submitted"
@@ -9213,7 +9400,7 @@ msgstr "Report this conversation"
msgid "Report this feed"
msgstr "Report this feed"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "Report this group chat"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Report this list"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Report this livestream"
@@ -9256,10 +9443,6 @@ msgstr "Repost"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Repost ({0, plural, one {# repost} other {# reposts}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Repost notifications"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Reposted by you"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Reposts"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Reposts of this post"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Reposts of your reposts"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr "Request access to group chat"
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr "Request approved."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Request code"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr "Request ignored."
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr "Request to join"
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr "Requested"
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "Requests"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr "Requests to join"
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Require alt text before posting"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Require an email code to sign in to your account."
@@ -9328,7 +9534,11 @@ msgstr "Required for this provider"
msgid "Required in your region"
msgstr "Required in your region"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr "Rescind request"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Resend"
@@ -9393,15 +9603,16 @@ msgstr "Retries the last action, which errored out"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Retries the last action, which errored out"
msgid "Retry"
msgstr "Retry"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Retry loading report options"
@@ -9426,14 +9637,14 @@ msgstr "Retry loading report options"
msgid "Return to previous page"
msgstr "Return to previous page"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Returns to home page"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Returns to previous page"
@@ -9454,7 +9665,7 @@ msgstr "Sad GIFs"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Save birthdate"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Save changes"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Save changes?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Save draft"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Save draft?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Save QR code"
msgid "Save these options for next time"
msgstr "Save these options for next time"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Save to my feeds"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Saved"
msgid "Saved Feeds"
msgstr "Saved Feeds"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Saved Posts"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Saved to your feeds"
@@ -9551,8 +9764,8 @@ msgstr "Saved to your feeds"
msgid "Say hello!"
msgstr "Say hello!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "Say hi to someone"
@@ -9576,18 +9789,18 @@ msgstr "Scroll right"
msgid "Scroll to top"
msgstr "Scroll to top"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Search"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Search @{0}'s posts"
@@ -9667,7 +9880,7 @@ msgstr "Search my posts"
msgid "Search posts"
msgstr "Search posts"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Search profiles"
msgid "Search..."
msgstr "Search..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Searches for profiles"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Security step required"
@@ -9759,7 +9972,7 @@ msgstr "Select {langName}"
msgid "Select a color"
msgstr "Select a colour"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Select a reason"
@@ -9828,7 +10041,7 @@ msgstr "Select GIF"
msgid "Select GIF \"{0}\""
msgstr "Select GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "Select group chat members"
@@ -9850,7 +10063,7 @@ msgstr "Select language..."
msgid "Select languages"
msgstr "Select languages"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Select moderation service"
@@ -9904,11 +10117,11 @@ msgstr "Select your interests from the options below"
msgid "Select your preferred language for translations in your feed."
msgstr "Select your preferred language for translations in your feed."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Select your preferred notification channels"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "Selecting multiple media types is not supported."
@@ -9921,9 +10134,9 @@ msgstr "Self-harm or dangerous behaviours"
msgid "Send code"
msgstr "Send code"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Send email"
@@ -9939,7 +10152,7 @@ msgstr "Send error report"
msgid "Send feedback"
msgstr "Send feedback"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Send message"
@@ -9952,7 +10165,7 @@ msgstr "Send post to {name}"
msgid "Send post to..."
msgstr "Send post to..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Send report to {title}"
@@ -9960,7 +10173,7 @@ msgstr "Send report to {title}"
msgid "Send the message from your phone"
msgstr "Send the message from your phone"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Send via direct message"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "Sent at {0}"
@@ -10015,14 +10228,14 @@ msgstr "Set your birthdate below and we'll get you back to posting and exploring
msgid "Sets email for password reset"
msgstr "Sets email for password reset"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Settings"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Settings for activity from others"
@@ -10030,39 +10243,39 @@ msgstr "Settings for activity from others"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Settings for allowing others to be notified of your posts"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Settings for like notifications"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Settings for mention notifications"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Settings for new follower notifications"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Settings for notifications for everything else"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Settings for notifications for likes of your reposts"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Settings for notifications for reposts of your reposts"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Settings for quote notifications"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Settings for reply notifications"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Settings for repost notifications"
@@ -10079,10 +10292,12 @@ msgstr "Sexual activity or erotic nudity."
msgid "Sexually Suggestive"
msgstr "Sexually Suggestive"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Share author DID"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Share image"
@@ -10124,7 +10339,7 @@ msgstr "Share post at:// URI"
msgid "Share QR code"
msgstr "Share QR code"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Share this feed"
@@ -10151,7 +10366,7 @@ msgstr "Share via..."
msgid "Share your contacts to find friends"
msgstr "Share your contacts to find friends"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Shared Preferences Tester"
@@ -10167,16 +10382,16 @@ msgstr "Show alt text"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Show anyway"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "Show automation label"
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Show warning and filter from feeds"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Show when you’re live"
@@ -10297,15 +10512,17 @@ msgstr "Shows the content"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Sign in or create an account"
msgid "Sign in or create your account to join the conversation!"
msgstr "Sign in or create your account to join the conversation!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr "Sign in to accept invite."
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Sign in to account that is not listed"
@@ -10337,6 +10558,10 @@ msgstr "Sign in to account that is not listed"
msgid "Sign in to Bluesky or create a new account"
msgstr "Sign in to Bluesky or create a new account"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr "Sign in to request access to this group chat."
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Sign in to view post"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Sign out"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Sign Out"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Sign out?"
@@ -10391,7 +10616,7 @@ msgstr "Skip"
msgid "Skip contact sharing and continue to the app"
msgstr "Skip contact sharing and continue to the app"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Skip empty posts?"
@@ -10405,7 +10630,7 @@ msgstr "Skip introduction and start using your account"
msgid "Skip to next step"
msgstr "Skip to next step"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "slide"
@@ -10413,7 +10638,7 @@ msgstr "slide"
msgid "Smaller"
msgstr "Smaller"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Snoozes the reminder"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "Someone left the group"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Someone reacted {0}"
@@ -10487,17 +10712,22 @@ msgstr "Someone was removed"
msgid "Someone was removed from the group"
msgstr "Someone was removed from the group"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr "Something new is here"
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Something wasn't quite right with the data you're trying to report. Please contact support."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Something went wrong"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Something went wrong!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Something went wrong. Please try again in a moment."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Something went wrong. Please try again."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Something wrong? Let us know."
@@ -10568,7 +10798,7 @@ msgstr "Sports"
msgid "Start a conversation, and it will appear here."
msgstr "Start a conversation, and it will appear here."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Start a new chat"
@@ -10582,17 +10812,17 @@ msgstr "Start adding people"
msgid "Start adding people!"
msgstr "Start adding people!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Start chat"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Start chat with {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Starter Pack"
@@ -10654,12 +10884,12 @@ msgstr "Storage cleared, you need to restart the app now."
msgid "Stored as part of a secure code for matching with others"
msgstr "Stored as part of a secure code for matching with others"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Storybook"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream."
@@ -10671,8 +10901,8 @@ msgstr "Streaming on Twitch? Set your live status on Bluesky to add a badge to y
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Submit"
@@ -10684,9 +10914,9 @@ msgstr "Submit appeal"
msgid "Submit Appeal"
msgstr "Submit Appeal"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Submit report"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Subscribe"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr "Subscribe on {0}"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr "Subscribe to {publicationTitle} on {0}"
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Success"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Success!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr "Successfully joined the group chat!"
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Successfully verified"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Suggested"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Sunset"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,20 +11014,20 @@ msgstr "Support"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Support for this feature in your country has not been enabled yet! Please check back later."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
-msgstr ""
+msgstr "Suspended accounts cannot participate in a group chat."
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
-msgstr ""
+msgstr "Suspended accounts cannot participate in chat."
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Switch account"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Switch accounts"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Switch to {0}"
@@ -10828,7 +11062,7 @@ msgstr "Tags only"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr "Tap for details"
@@ -10854,33 +11088,51 @@ msgstr "Tap to acknowledge that you understand and agree to these updates and co
msgid "Tap to close context menu"
msgstr "Tap to close context menu"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr "Tap to copy this invite link"
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Tap to dismiss"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr "Tap to join this group chat immediately"
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr "Tap to open this group chat"
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Tap to remove"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "Tap to remove your {0} reaction"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr "Tap to request access to join this group chat"
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Tap to retry"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "Tap to show {0} reactions"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Tap to show all reactions"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Tap to view reactions"
@@ -10924,7 +11176,7 @@ msgstr "Terms"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Text & tags"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Text input field"
@@ -11049,6 +11301,11 @@ msgstr "The following settings will be used as your defaults when creating new p
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr "The member limit has been reached."
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
@@ -11057,10 +11314,10 @@ msgstr "The post you’re replying to was marked as being written in {suggestedL
msgid "The Privacy Policy has been moved to <0/>"
msgstr "The Privacy Policy has been moved to <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
-msgstr "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
+msgstr "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
#: src/lib/hooks/useCleanError.ts:41
#: src/lib/strings/errors.ts:19
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "There is no invite link for this group chat."
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "There was a problem loading GIFs. Check your connection and try again."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "There was a problem with your internet connection, please try again"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "There was a problem with your internet connection, please try again"
msgid "There was an issue contacting the server"
msgstr "There was an issue contacting the server"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "There was an issue contacting the server, please check your internet connection and try again."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "There was an issue fetching notifications. Tap here to try again."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "There was an issue fetching posts. Tap here to try again."
@@ -11161,7 +11420,7 @@ msgstr "There was an issue fetching your service info"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "There was an issue removing this feed. Please check your internet connection and try again."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "This appeal will be sent to <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "This appeal will be sent to Bluesky's moderation service."
@@ -11263,7 +11522,7 @@ msgstr "This appeal will be sent to Bluesky's moderation service."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "This author has chosen to make their posts visible only to people who are signed in."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
@@ -11271,7 +11530,12 @@ msgstr "This button lets others open the Germ DM app to send you a message. You
msgid "This chat has ended"
msgstr "This chat has ended"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr "This chat is full"
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "This chat is locked"
@@ -11310,7 +11574,11 @@ msgstr "This content is not available because one of the users involved has bloc
msgid "This content is not viewable without a Bluesky account."
msgstr "This content is not viewable without a Bluesky account."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr "This conversation is locked."
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "This conversation is with a deleted or a deactivated account. Press for
msgid "This draft will be permanently deleted."
msgstr "This draft will be permanently deleted."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "This email is already associated with your account."
@@ -11360,7 +11628,7 @@ msgstr "This feed is no longer online. We are showing <0>Discover0> instead."
msgid "This handle is reserved. Please try a different one."
msgstr "This handle is reserved. Please try a different one."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "This image could not be used. Please try a different format like .jpg or .png."
@@ -11368,6 +11636,18 @@ msgstr "This image could not be used. Please try a different format like .jpg or
msgid "This information is private and not shared with other users."
msgstr "This information is private and is not shared with other users."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr "This invite link has been disabled."
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr "This invite link has expired"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr "This invite link is invalid"
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "This is an empty state"
@@ -11377,7 +11657,7 @@ msgstr "This is an empty state"
msgid "This is not a valid link"
msgstr "This is not a valid link"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
@@ -11410,13 +11690,13 @@ msgstr "This list – created by you – contains possible violations of Bluesky
msgid "This list is empty."
msgstr "This list is empty."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr "This message is hidden because this user is blocking you."
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr "This message is hidden because you are blocking this user."
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "This post's author has disabled quote posts."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "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."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "This screen is only available for group conversations."
@@ -11494,18 +11775,18 @@ msgstr "This user does not have a display name, and therefore cannot be verified
msgid "This user doesn't have any followers."
msgstr "This user doesn't have any followers."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
-msgstr ""
+msgstr "This user has blocked you and cannot be messaged."
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr "This user has blocked you. You cannot view their content."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
-msgstr ""
+msgstr "This user has disabled chat and cannot be messaged."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
@@ -11574,7 +11855,7 @@ msgstr "Thread Preferences"
msgid "Threaded"
msgstr "Threaded"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Threads Preferences"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "To disable the email 2FA method, please verify your access to the email address."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "To disable your email 2FA method, please verify your access to <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Top"
msgid "Top replies first"
msgstr "Top replies first"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Topic"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Trending Videos"
msgid "Trolling"
msgstr "Trolling"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "Trust emerges from relationships, communities and shared context, so we’re also enabling <0>trusted verifiers0>: organisations that can directly issue verification."
@@ -11763,13 +12044,17 @@ msgstr "Unable to contact your service. Please check your Internet connection."
msgid "Unable to delete"
msgstr "Unable to delete"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
-msgid "Unable to find a selected recipient."
-msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr "Unable to fetch join requests."
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr "Unable to find a selected recipient."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
-msgstr ""
+msgstr "Unable to find the selected recipient."
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
@@ -11791,7 +12076,7 @@ msgstr "Unavailable"
msgid "Unavailable feed information"
msgstr "Unavailable feed information"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Unblock list"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Undo"
@@ -11872,7 +12157,7 @@ msgstr "Unfollow account"
msgid "Unfollows the user"
msgstr "Unfollows the user"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Unfortunately, none of your subscribed labellers support this report type."
@@ -11904,13 +12189,13 @@ msgstr "Unlabelled adult content"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Unlabelled, abusive, or non-consensual adult content"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr "Unlike"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Unlike ({0, plural, one {# like} other {# likes}})"
@@ -11918,7 +12203,7 @@ msgstr "Unlike ({0, plural, one {# like} other {# likes}})"
msgid "Unlock chat"
msgstr "Unlock chat"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr "Unlock this group chat"
@@ -11955,7 +12240,7 @@ msgstr "Unmute conversation"
msgid "Unmute list"
msgstr "Unmute list"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "Unmute this group chat"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Unpin"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Unpin feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Unpin from home"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Unpin moderation list"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "Unpinned {0} from Home"
@@ -12030,11 +12315,11 @@ msgstr "Unsubscribe from this labeller"
msgid "Unsubscribed from list"
msgstr "Unsubscribed from list"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "Unsupported clipboard content"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Unsupported video type: {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "Update"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Update <0>{displayName}0> in Lists"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr "Update app"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Update email"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Update invite link"
@@ -12065,11 +12354,19 @@ msgstr "Update invite link"
msgid "Update to {domain}"
msgstr "Update to {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr "Update your app"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr "Update your app to see it."
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "Update your app to the latest version to join in!"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Update your email"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Updating reply visibility failed"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Upload a photo instead"
@@ -12098,39 +12395,40 @@ msgstr "Upload a photo instead"
msgid "Upload a text file to:"
msgstr "Upload a text file to:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Upload from Camera"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Upload from Files"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Upload from Library"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "Uploading GIF..."
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Uploading images..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Uploading link thumbnail..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Uploading video..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "user"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "User blocked"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "User list by {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "User List by {0}"
@@ -12255,12 +12553,12 @@ msgstr "users followed by <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "users following <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "Users I follow"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Users I follow"
@@ -12277,7 +12575,7 @@ msgstr "Verification failed, please try again."
msgid "Verification settings"
msgstr "Verification settings"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Verification Settings"
@@ -12304,8 +12602,8 @@ msgstr "Verify again"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Verify code"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Verify DNS Record"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Verify email code"
@@ -12349,7 +12647,7 @@ msgstr "Verify this account?"
msgid "Verify your age"
msgstr "Verify your age"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Version {0}"
msgid "Video"
msgstr "Video"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Video failed to process"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Video Feed"
@@ -12419,7 +12717,7 @@ msgstr "Video not found."
msgid "Video settings"
msgstr "Video settings"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Video uploaded"
@@ -12432,18 +12730,18 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videos"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr "Videos must be less than 3 minutes long."
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "View"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr "View {0}"
@@ -12455,7 +12753,7 @@ msgstr "View {0}'s avatar"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "View {0}'s profile"
msgid "View {0}’s profile"
msgstr "View {0}’s profile"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "View {displayName}’s profile"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr "View {publicationTitle}"
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr "View @{0}'s profile"
@@ -12503,10 +12801,18 @@ msgstr "View details"
msgid "View full thread"
msgstr "View full thread"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr "View incoming group chat requests"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr "View incoming requests"
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr "View incoming requests to join this group chat"
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "View information about these labels"
@@ -12522,7 +12828,7 @@ msgstr "View more"
msgid "View more trending videos"
msgstr "View more trending videos"
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "View post"
@@ -12539,10 +12845,10 @@ msgstr "View profile"
msgid "View profile banner"
msgstr "View profile banner"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr "View publication"
@@ -12550,7 +12856,7 @@ msgstr "View publication"
msgid "View the avatar"
msgstr "View the avatar"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "View the invite link for this group chat"
@@ -12563,7 +12869,7 @@ msgstr "View the labelling service provided by @{0}"
msgid "View this user's verifications"
msgstr "View this user's verifications"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "View users who like this feed"
@@ -12596,8 +12902,8 @@ msgstr "View your muted accounts"
msgid "View your verifications"
msgstr "View your verifications"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Views full image"
@@ -12640,8 +12946,8 @@ msgstr "Warn content"
msgid "Warn content and filter from feeds"
msgstr "Warn content and filter from feeds"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Watch now"
@@ -12665,10 +12971,14 @@ msgstr "We couldn't find any results for that tag."
msgid "We couldn't find any results for that topic."
msgstr "We couldn't find any results for that topic."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "We couldn't load this conversation"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr "We couldn’t load this conversation’s join requests"
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "We couldn’t load this conversation’s settings"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "We recommend selecting at least two interests."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "We were unable to determine if you are allowed to upload videos. Please try again."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "We will notify you when we find your friends."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
@@ -12779,12 +13089,12 @@ msgstr "We're having issues initialising the age assurance process for your acco
msgid "We're having network issues, try again"
msgstr "We're having network issues, try again"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "We’re having network issues, try again"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
@@ -12814,12 +13124,12 @@ msgstr "We’re sorry, but your search could not be completed. Please try again
msgid "We're sorry, you cannot access this screen at this time."
msgstr "We're sorry, you cannot access this screen at this time."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ 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.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "What's up?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "When you tap on a check, you’ll see which organisations have granted verification."
@@ -12878,7 +13188,7 @@ msgstr "When you tap on a check, you’ll see which organisations have granted v
msgid "Who can interact with this post?"
msgstr "Who can interact with this post?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "Who can join this group chat and how"
@@ -12887,13 +13197,13 @@ msgstr "Who can join this group chat and how"
msgid "Who can reply"
msgstr "Who can reply"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Who can verify?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Whoops!"
@@ -12939,19 +13249,19 @@ msgstr "Why should this starter pack be reviewed?"
msgid "Why should this user be reviewed?"
msgstr "Why should this user be reviewed?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
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/components/dms/AfterReportConversationDialog.tsx:47
msgid "Would you like to block this user and/or leave this conversation?"
-msgstr ""
+msgstr "Would you like to block this user and/or leave this conversation?"
#: src/view/com/composer/drafts/DraftsButton.tsx:110
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:1320
+#: src/view/com/composer/Composer.tsx:1373
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?"
@@ -12960,12 +13270,12 @@ msgstr "Would you like to save this as a draft to edit later?"
msgid "Write a post"
msgstr "Write a post"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Write post"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Write your reply"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Wrong DID returned from server. Received: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "Wrong kind of conversation"
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr "You are blocking {0}"
@@ -13068,7 +13379,7 @@ msgstr "You are Live"
msgid "You are no longer live"
msgstr "You are no longer live"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "You are not allowed to upload videos."
@@ -13117,12 +13428,12 @@ msgstr "You can always opt out and delete your data"
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "You can choose whether chat notifications have sound in the chat settings within the app"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "You can continue ongoing conversations regardless of which setting you choose."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "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."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "You can only save drafts up to 1,000 characters."
@@ -13139,11 +13455,11 @@ msgstr "You can only save drafts up to 1,000 characters."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "You can only save drafts up to 1,000 characters. Would you like to discard this post before viewing your drafts?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
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:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "You can only select one video at a time."
@@ -13155,10 +13471,10 @@ msgstr "You can reactivate your account to continue logging in. Your profile and
msgid "You can read chat history but can’t send new messages."
msgstr "You can read chat history but can’t send new messages."
-#. 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: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."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,9 +13482,9 @@ msgstr "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
msgid "You can update this later from your settings."
msgstr "You can update this later from your settings."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
-msgstr ""
+msgstr "You cannot create a group chat yet."
#: src/lib/hooks/useCleanError.ts:54
#: src/lib/strings/errors.ts:28
@@ -13197,6 +13513,10 @@ msgstr "You don't have any saved feeds."
msgid "You got here first"
msgstr "You got here first"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr "You have been previously removed from this group and can’t join it using this link."
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
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?"
@@ -13336,7 +13656,7 @@ msgstr "You must be following at least seven other people to generate a starter
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "You need to allow access to your media library."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "You probably want to restart the app now."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "You reacted {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "You recently changed your birthdate"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "You will be signed out of all your accounts."
@@ -13390,7 +13710,7 @@ msgstr "You will now receive notifications for this thread"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "You won’t be able to rejoin unless you’re invited."
@@ -13463,7 +13783,7 @@ msgstr "You've reached the end of the active content."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "You've reached the end of your feed! Find some more accounts to follow."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "You've reached the maximum number of drafts"
@@ -13475,11 +13795,11 @@ msgstr "You've reached the maximum number of requests allowed. Please try again
msgid "You've reached the start of the active content."
msgstr "You've reached the start of the active content."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "You've reached your daily limit for video uploads (too many bytes)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr "Your account has been deleted, see ya! ✌️"
msgid "Your account has been suspended"
msgstr "Your account has been suspended"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Your account is not yet old enough to upload videos. Please try again later."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr "Your account is too new"
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr "Your account must be at least 7 days old to create a new group chat."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "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."
@@ -13519,7 +13847,7 @@ msgstr "Your appeal has been submitted. If your appeal succeeds, you will receiv
msgid "Your birth date"
msgstr "Your birthdate"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Your chats have been disabled"
@@ -13561,7 +13889,7 @@ msgstr "Your email"
msgid "Your email appears to be invalid."
msgstr "Your email appears to be invalid."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "Your following feed is empty! Follow more users to see what's happening.
msgid "Your full handle will be <0>@{0}0>"
msgstr "Your full handle will be <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "Your location has been updated."
msgid "Your muted words"
msgstr "Your muted words"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "Your post was sent"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "Your posts were sent"
@@ -13635,7 +13963,7 @@ msgstr "Your posts were sent"
msgid "Your preferred language"
msgstr "Your preferred language"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "Your profile picture"
@@ -13648,12 +13976,12 @@ msgstr "Your profile picture surrounded by concentric circles of other users' pr
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Your reply was sent"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Your report will be sent to <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "Your report will be sent to <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Your selected interests help us serve you content you care about."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po
index f0d299ff2a..03773ccd21 100644
--- a/src/locale/locales/en/messages.po
+++ b/src/locale/locales/en/messages.po
@@ -5322,7 +5322,7 @@ msgstr ""
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:180
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr ""
@@ -9706,7 +9706,7 @@ msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
-#: src/components/MediaPreview.tsx:229
+#: src/components/MediaPreview.tsx:231
#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
@@ -10287,7 +10287,7 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
-#: src/components/MediaPreview.tsx:235
+#: src/components/MediaPreview.tsx:237
#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
diff --git a/src/locale/locales/eo/messages.po b/src/locale/locales/eo/messages.po
index cc980fc97a..e1e7428bd9 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Esperanto\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minuto} other {# minutoj}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# monato} other {# monatoj}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, one {# homo} other {# homoj}} reagis – {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# sekundo} other {# sekundoj}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} sekvataj"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -233,7 +238,7 @@ msgstr ""
#. placeholder {0}: action.displayName
#: src/components/dms/getSystemMessageInfo.ts:84
msgid "{0} joined the group"
-msgstr ""
+msgstr "{0} aniĝis la grupon"
#. placeholder {0}: formatCount(i18n, JOINED_THIS_WEEK)
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230
@@ -248,7 +253,7 @@ msgstr ""
#. placeholder {0}: action.displayName
#: src/components/dms/getSystemMessageInfo.ts:97
msgid "{0} left the group"
-msgstr ""
+msgstr "{0} foriris el la grupo"
#. placeholder {0}: formatTime(currentTime)
#. placeholder {1}: formatTime(duration)
@@ -264,7 +269,7 @@ msgstr "{0} el 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} reagis per {1}"
@@ -276,7 +281,7 @@ msgstr ""
#. placeholder {0}: action.displayName
#: src/components/dms/getSystemMessageInfo.ts:58
msgid "{0} was added to the group"
-msgstr ""
+msgstr "{0} estis aligita al la grupo"
#. placeholder {0}: action.displayName
#: src/components/dms/getSystemMessageInfo.ts:70
@@ -286,7 +291,7 @@ msgstr ""
#. placeholder {0}: action.displayName
#: src/components/dms/getSystemMessageInfo.ts:71
msgid "{0} was removed from the group"
-msgstr ""
+msgstr "{0} estis forigita el la grupo"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
@@ -309,16 +314,38 @@ msgstr "{0}, listo de {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Profilbildo de {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "Profilbildo de {0}"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,27 +370,52 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
+msgstr "{count, plural, one {# babileja aktualigo} other {# babilejaj aktualigoj}}"
+
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
-msgstr ""
+msgstr "{count, plural, one {# peto} other {# petoj}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
-msgstr ""
+msgstr "{count}+ petoj"
#: src/components/dms/DateDivider.tsx:60
msgid "{date} at {time}"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} konfirmis vin"
msgid "{following} following"
msgstr "{following} sekvataj"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "{handle} nemesaĝeblas"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "{handle} nemesaĝeblas"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# horo {minutesString}} other {# horoj {minutesStri
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# horo} other {# horoj}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, one {Vi povas kaŝi maksimume # respondon.} other {Vi povas kaŝi maksimume # respondojn.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr "Plej ŝatataj fluoj kaj homoj de {name} - aliĝu al mi!"
msgid "{name}'s starter pack"
msgstr "Startpako de {name}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, one {# peto} other {# petoj}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "{requestCount}+ petoj"
@@ -795,8 +857,11 @@ msgstr "Reta eraro okazis. Bonvolu kontroli vian interretan konekton"
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Reta eraro okazis. Bonvolu kontroli vian interretan konekton."
@@ -804,7 +869,7 @@ msgstr "Reta eraro okazis. Bonvolu kontroli vian interretan konekton."
msgid "A new code has been sent"
msgstr "Nova kodo estis sendita"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Nova konfirmada metodo"
@@ -827,11 +892,11 @@ msgstr "Ekrankopio montranta paĝon kun sonorila piktogramo apud la sekvi-butono
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr "Akcepti"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Akcepti"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Akcepti babilpeton"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Akcepti peton"
@@ -860,17 +935,26 @@ msgstr "Akcepti peton"
msgid "Accept this language suggestion"
msgstr "Akcepti tiun sugeston de lingvo"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Alirebleco"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Alireblecaj agordoj"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Konto malsilentigita"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Kontoj kun gravurita blua kontrolmarko<0><1/>0>povas kontroli aliulojn. Tiuj fidataj konfirmantoj estas elektataj de Bluesky."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Agado de aliuloj"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Agadaj sciigoj"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Aldoni"
@@ -999,8 +1079,8 @@ msgstr "Aldoni konton"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Aldoni alternativan tekston (nedeviga)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Aldoni plian konton"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Aldoni plian afiŝon"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Aldoni plian afiŝon al fadeno"
@@ -1035,7 +1115,7 @@ msgstr "Aldoni apan pasvorton"
msgid "Add App Password"
msgstr "Aldoni apan pasvorton"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr "Aldoni emoĝian reagon"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Aldoni anojn al grupa babilejo"
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Aldoni aŭdvidaĵojn al afiŝo"
@@ -1062,8 +1142,8 @@ msgstr "Aldoni aŭdvidaĵojn al afiŝo"
msgid "Add members"
msgstr "Aldoni anojn"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Aldoni pliaj detaloj (nedeviga)"
@@ -1080,8 +1160,8 @@ msgstr "Aldoni silentigitan vorton kun elektitaj agordoj"
msgid "Add muted words and tags"
msgstr "Aldoni silentigitajn vortojn kaj kradvortojn"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "Aldonado de anoj al listo..."
msgid "Additional details (limit 1000 characters)"
msgstr "Aldonaj detaloj (limo de 1000 signoj)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Aldonaj detaloj (limo de 300 signoj)"
@@ -1228,12 +1308,12 @@ msgstr "Informpeto de garantio pri aĝo estis sendita"
msgid "Age assurance only takes a few minutes"
msgstr "Garantio pri aĝo daŭros nur kelkajn minutojn"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "ludoviko@ekzemplo.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Ĉiuj"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "Ĉiuj {0}"
@@ -1278,15 +1358,15 @@ msgstr "Permesi aliron al viaj rektaj mesaĝoj"
msgid "Allow anyone to reply"
msgstr "Permesi al ĉiuj respondi"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
-msgstr ""
+msgstr "Permesi rektajn mesaĝojn de"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
-msgstr ""
+msgstr "Permesi invitilojn al grupaj babilejoj de"
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:128
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:134
@@ -1338,12 +1418,12 @@ msgstr "Ĉu vi jam havas konton?"
msgid "Already signed in as @{0}"
msgstr "Jam ensalutinta kiel @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Alternativa teksto"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alternativa teksto priskribas bildojn por blindaj kaj vide handikapitaj uzantoj, kaj helpas doni kuntekston por ĉiuj."
@@ -1387,7 +1467,7 @@ msgstr "Eraro okazis"
msgid "An error occurred"
msgstr "Eraro okazis"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Eraro okazis dum densigo de la videaĵo."
@@ -1432,11 +1512,11 @@ msgstr "Eraro okazis dum konservado de la QR-kodo!"
msgid "An error occurred while trying to follow all"
msgstr "Eraro okazis dum provo eksekvi ĉiujn"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "Eraro okazis dum alŝutado de la videaĵo. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "Eraro okazis dum alŝutado de la videaĵo. Bonvolu kontroli vian retkonekton kaj reprovu."
@@ -1461,19 +1541,19 @@ msgstr "Ilustraĵo montranta plurajn Bluesky-afiŝojn apud piktogramoj de reafi
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Ilustraĵo montranta ke Bluesky elektas fidatajn konfirmantojn kaj poste fidataj konfirmantoj konfirmas individuajn kontojn de uzantoj."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "Invitligilo ebligas al homoj aliĝi al ĉi tiu grupa babilejo sen esti aligitaj rekte. Vi decidas, kiu povas uzi la ligilon kaj ĉu oni bezonas vian aprobon. Vi povas malŝalti la ligilon iam ajn."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Problemo neinkludita inter ĉi tiuj opcioj"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Problemo okazis dum provo malfermi la babilejon"
msgid "An issue occurred, please try again."
msgstr "Problemo okazis, bonvolu reprovi."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Ekrankopio de iPhone montranta la Bluesky-apon malfermitan kun la profilo de konfirmita uzanto kun blua kontrolmarko apud ties montrata nomo."
@@ -1539,13 +1619,17 @@ msgstr "Ĉiuj"
msgid "Anyone can interact"
msgstr "Ĉiu povas interagi"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "Ĉiu povas aliĝi tuje"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "Ĉiu povas peti aliĝi"
@@ -1555,11 +1639,11 @@ msgstr "Ĉiu povas peti aliĝi"
msgid "Anyone who follows me"
msgstr "Ĉiu kiu sekvas min"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Nomoj de apaj pasvortoj devas havi longon de almenaŭ 4 signoj"
msgid "App passwords"
msgstr "Apaj pasvortoj"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Apaj pasvortoj"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Apelacio sendita"
@@ -1632,14 +1716,14 @@ msgstr "Apelacii pri suspendo"
msgid "Appeal Suspension"
msgstr "Apelacii pri suspendo"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Apelacii pri ĉi tiu decido"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "Ĉu vi estas vere, absolute certa?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Ĉu vi certas, ke vi volas forigi la apan pasvorton \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Ĉu vi certas, ke vi volas forigi ĉi tiun mesaĝon? La mesaĝo estos forigota por vi, sed ne por la aliaj partoprenantoj."
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "Ĉu vi certas ke vi volas foriri el {groupName}?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
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: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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Ĉu vi certas, ke vi volas forĵeti ĉi tiun afiŝon?"
@@ -1752,7 +1836,7 @@ msgstr "Aŭtomata konto"
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Aŭtomate ludi videaĵojn kaj GIF-ojn"
msgid "Available"
msgstr "Disponebla"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Disponebla"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Disponebla"
msgid "Back"
msgstr "Reen"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Reveni al babilejoj"
@@ -1810,11 +1896,11 @@ msgstr "Reveno de forbarita uzanto"
#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:259
msgid "Based on your device's location, we think you're in <0>{region}0>. This estimate may be inaccurate if you're using a VPN."
-msgstr ""
+msgstr "Baziĝinte sur la loko de via aparato, ni pensas ke vi estas en <0>{region}0>. Tiu kalkulo povas esti erara se vi uzas VPN-on."
#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:265
msgid "Based on your network, we think you're in <0>{region}0>. This estimate may be inaccurate if you're using a VPN."
-msgstr ""
+msgstr "Baziĝinte sur via reto, ni pensas ke vi estas en <0>{region}0>. Tiu kalkulo povas esti erara se vi uzas VPN-on."
#: src/view/screens/Lists.tsx:35
#: src/view/screens/ModerationModlists.tsx:35
@@ -1840,12 +1926,12 @@ msgstr "Antaŭ ol vi povos mesaĝi, vi devas unue konfirmi vian retpoŝtadreson.
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Antaŭ ol vi povos ricevi sciigojn pri afiŝoj de {name}, unue vi devas konfirmi vian retpoŝtadreson."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Antaŭ ol vi povos mesaĝi alian uzanton, vi devas unue konfirmi vian retpoŝtadreson."
@@ -1877,7 +1963,7 @@ msgstr "Naskiĝtago"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "Bloki {displayName}"
msgid "Block account"
msgstr "Bloki konton"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Ĉu bloki konton?"
@@ -1912,7 +1998,7 @@ msgstr "Ĉu bloki konton?"
msgid "Block accounts"
msgstr "Bloki kontojn"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Ĉu bloki tiujn kontojn?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Bloki uzanton"
@@ -1946,9 +2032,9 @@ msgstr "Bloki uzanton"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Bloki uzanton"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Bloki uzanton kaj/aŭ forigi ĉi tiun konversacion"
@@ -1956,7 +2042,7 @@ msgstr "Bloki uzanton kaj/aŭ forigi ĉi tiun konversacion"
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Blokita"
@@ -1964,13 +2050,13 @@ msgstr "Blokita"
msgid "Blocked accounts"
msgstr "Blokitaj kontoj"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Blokitaj kontoj"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blokitaj kontoj ne povas respondi en viaj fadenoj, mencii vin nek alimaniere interagi kun vi."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky pli bonas kun amikoj!"
msgid "Bluesky is more fun with friends"
msgstr "Bluesky estas pli feliĉiga kun amikoj"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Bluesky estas pli feliĉiga kun amikoj! Importu viajn kontaktojn por vidi kiu jam estas ĉi tie."
@@ -2053,7 +2139,7 @@ msgstr "Bluesky elektos aron de rekomenditaj kontoj de homoj en via reto."
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 "Bluesky ne montros vian profilon kaj afiŝojn al elsalutintaj uzantoj. Aliaj apoj eble ne respektos ĉi tiun peton. Ĉi tio ne igas vian konton privata."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky aktive konfirmos rimarkindajn kaj aŭtentikajn kontojn."
@@ -2137,23 +2223,30 @@ msgstr "Komerco"
msgid "Button to go back to the home timeline"
msgstr "Butono por reveni al la hejma novaĵfluo"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "De {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "De <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Kreante konton vi konsentas pri la <0>Uzokondiĉoj0>."
msgid "By you"
msgstr "De vi"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Fotilo"
@@ -2192,8 +2285,8 @@ msgstr "Fotilo"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Fotilo"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Fotilo"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Nuligi"
@@ -2248,9 +2341,9 @@ msgstr "Nuligi reaktivigon kaj elsaluti"
msgid "Cancel search"
msgstr "Nuligi serĉon"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Ne eblas interagi kun blokita uzanto"
@@ -2264,7 +2357,7 @@ msgstr "Subtekstoj (.vtt)"
msgid "Captions & alt text"
msgstr "Subtekstoj kaj alternativa teksto"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "karuselo"
@@ -2297,7 +2390,7 @@ msgstr "Ŝanĝi apan lingvon"
msgid "Change Handle"
msgstr "Ŝanĝi identigilon"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Ŝanĝi kontrol-servon"
@@ -2310,11 +2403,11 @@ msgstr "Ŝanĝi pasvorton"
msgid "Change password dialog"
msgstr "Dialogujo pri pasvorta ŝanĝo"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Ŝanĝi kategorion de raporto"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Ŝanĝi kialon de raporto"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Ŝanĝoj al la startpako ne estos reflektota en la listo post kreo. La listo estos sendependa kopio."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Babilejoj"
@@ -2361,6 +2454,13 @@ msgstr "Babilejo forigita"
msgid "Chat ended"
msgstr "Babilejo finiĝis"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "Babilejo ŝlosita"
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Babilejo silentigita"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Ricevujo de babilpetoj"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Babilpetoj"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Agordoj de babilejo"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Agordoj de babilejo"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Babilejo malsilentigita"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Babilejoj"
@@ -2479,7 +2579,7 @@ msgstr "Elektu lingvojn de la afiŝo"
msgid "Choose this color as your avatar"
msgstr "Elekti ĉi tiun koloron kiel profilbildo"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "Elektu kiu povas aliĝi al ĉi tiu grupa babilejo kaj kiel."
@@ -2533,7 +2633,7 @@ msgstr "Alklaku por informoj"
msgid "click here"
msgstr "klaku ĉi tie"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "Klaku ĉi tie por aldoni homojn al ĉi tiu grupa babilejo"
@@ -2541,7 +2641,7 @@ msgstr "Klaku ĉi tie por aldoni homojn al ĉi tiu grupa babilejo"
msgid "Click here to contact our support team"
msgstr "Klaku ĉi tie por kontakti nian subtenan teamon"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "Klaku ĉi tie por krei aŭ administri invitligilon por ĉi tiu grupa babilejo"
@@ -2558,7 +2658,7 @@ msgstr "Klaku ĉi tie por elsaluti"
msgid "Click here to resend the email"
msgstr "Klaku ĉi tie por resendi la retmesaĝon"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Klaku ĉi tie por restarti la konfimadan procezon."
@@ -2567,11 +2667,11 @@ msgstr "Klaku ĉi tie por restarti la konfimadan procezon."
msgid "Click here to update your birthdate"
msgstr "Klaku ĉi tie por ĝisdatigi vian naskiĝdaton"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Klaku ĉi tie por ĝisdatigi vian retpoŝtadreson"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "Klaku ĉi tie por vidi la invitligilon por ĉi tiu grupa babilejo"
@@ -2580,7 +2680,7 @@ msgstr "Klaku ĉi tie por vidi la invitligilon por ĉi tiu grupa babilejo"
msgid "Click to open tag menu for {0}"
msgstr "Alklaku por malfermi kradvortan menuon por {0}"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Alklaku por reprovi sendi mesaĝon"
@@ -2594,28 +2694,30 @@ msgstr "Alklaku por reprovi sendi mesaĝon"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Alklaku por reprovi sendi mesaĝon"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Fermi la aktivan dialogujon"
msgid "Close alert"
msgstr "Fermi averton"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Fermi la suban flankmenuon"
@@ -2657,8 +2763,9 @@ msgstr "Fermi la suban flankmenuon"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Fermi la dialogujon"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Fermi bildon"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Fermi bildmontrilon"
@@ -2683,6 +2790,14 @@ msgstr "Fermi bildmontrilon"
msgid "Close menu"
msgstr "Fermi menuon"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Fermi ĉi tiun dialogujon"
@@ -2695,7 +2810,7 @@ msgstr "Fermi bonvenon-fenestron"
msgid "Closes password update alert"
msgstr "Fermas la averton pri pasvorta ĝisdatigo"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Fermas afiŝan redaktilon kaj forĵetas afiŝan malneton"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Komiksoj"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Komunumaj gvidnormoj"
@@ -2740,12 +2855,12 @@ msgstr "Plenumi la defion"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Krei novan afiŝon"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Krei afiŝojn maksimume {0, plural, one {# signon}other {# signojn}} longajn"
@@ -2753,11 +2868,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:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "Densigado de GIF..."
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Densigado de videaĵo..."
@@ -2780,7 +2895,7 @@ msgstr "Agordita en <0>agordoj de kontrolado0>."
msgid "Confirm"
msgstr "Konfirmi"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Enhavo kaj aŭdvidaĵoj"
msgid "Content and media"
msgstr "Enhavo kaj aŭdvidaĵoj"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Enhavo kaj aŭdvidaĵoj"
@@ -2889,7 +3004,7 @@ msgstr "Fono de kuntekstmenuo, alklaku por fermi la menuon."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Daŭrigi fadenon"
msgid "Continue thread..."
msgstr "Daŭrigi fadenon..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Daŭrigi al grupa nomo"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Pluiri al la sekva paŝo"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Konversacio"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Konversacio forigita"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Konversacio forigita"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Versio kopiita al tondujo"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Kopii DID-on"
msgid "Copy host"
msgstr "Kopii gastiganton"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Kopii ligilon al profilo"
msgid "Copy link to starter pack"
msgstr "Kopii ligilon al startpako"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Kopii mesaĝan tekston"
@@ -3052,7 +3175,7 @@ msgstr "Kopii la valoron de la TXT-rikordo"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Regularo pri kopirajto"
@@ -3065,7 +3188,7 @@ msgstr "Ne eblis konekti al propra fluo"
msgid "Could not connect to feed service"
msgstr "Ne eblis konekti al la servo de fluo"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Ne eblis eksekvi ĉiujn trovitajn kontaktojn. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Ne eblis foriri el babilejo"
@@ -3094,6 +3217,10 @@ msgstr "Ne eblis foriri el babilejo"
msgid "Could not load feed"
msgstr "Ne eblis ŝargi fluon"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Landkodo"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Krei"
@@ -3159,7 +3286,7 @@ msgstr "Krei QR-kodon por startpako"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Krei startpakon"
@@ -3174,13 +3301,14 @@ msgstr "Krei startpakon por mi"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Krei konton"
msgid "Create an account without using this starter pack"
msgstr "Krei konton neuzante ĉi tiun startpakon"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Krei profilbildon anstataŭe"
@@ -3206,7 +3334,7 @@ msgstr "Krei profilbildon anstataŭe"
msgid "Create another"
msgstr "Krei plian"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Krei grupan babilejon"
@@ -3228,19 +3356,20 @@ msgstr "Krei liston el startpako"
msgid "Create moderation list"
msgstr "Krei la kontrol-liston"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Krei novan konton"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr "Krei aŭ modifi invitligilon por ĉi tiu grupa babilejo"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Krei raporton pri {0}"
@@ -3256,8 +3385,8 @@ msgstr "Krei liston de uzantoj"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Kreita {0}"
@@ -3341,7 +3470,7 @@ msgstr "Defaŭlta"
msgid "Default icons"
msgstr "Defaŭltaj piktogramoj"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Forigi babilan deklaro-rikordon"
msgid "Delete contacts"
msgstr "Forigi kontaktojn"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Forigi konversacion"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Forigi por mi"
@@ -3399,11 +3528,11 @@ msgstr "Forigi por mi"
msgid "Delete list"
msgstr "Forigi liston"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Forigi mesaĝon"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Forigi mesaĝon por mi"
@@ -3413,7 +3542,7 @@ msgstr "Forigi mian konton"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Forigi afiŝon"
@@ -3434,12 +3563,12 @@ msgstr "Ĉu forigi ĉi tiun liston?"
msgid "Delete this post?"
msgstr "Ĉu forigi ĉi tiun afiŝon?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Forigita"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Forigita konto"
@@ -3507,13 +3636,13 @@ msgstr "Dialogujo: kiu povas interagi kun ĉi tiu afiŝo"
msgid "Dim"
msgstr "Malheleta"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Malŝalti"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Malŝalti 2FA-on"
@@ -3521,7 +3650,7 @@ msgstr "Malŝalti 2FA-on"
msgid "Disable captions"
msgstr "Malŝalti subtekstojn"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Malŝalti retpoŝtan 2FA-on"
@@ -3534,8 +3663,8 @@ msgstr "Malŝalti retpoŝtan 2FA-on"
msgid "Disable haptic feedback"
msgstr "Malŝalti tuŝ-retrokupladan prikomentadon"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr "Malebligi citafiŝojn de ĉi tiu afiŝo"
msgid "Disable replies entirely"
msgstr "Malebligi respondojn entute"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Malŝaltita"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Forĵeti"
msgid "Discard changes?"
msgstr "Ĉu forĵeti ŝanĝojn?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Ĉu forĵeti malneton?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Ĉu forĵeti afiŝon?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Malkonekti Germ DM"
@@ -3613,11 +3742,11 @@ msgstr "Malkovri novajn fluojn"
msgid "Dismiss"
msgstr "Ignori"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Fermi rubandon"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Ignori eraron"
@@ -3673,7 +3802,7 @@ msgstr "Ne inkluzivas nudecon."
msgid "Domain verified!"
msgstr "Domajno konfirmita!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Ĉu vi ne havas kodon aŭ bezonas novan? <0>Klaku ĉi tie.0>"
@@ -3681,7 +3810,7 @@ msgstr "Ĉu vi ne havas kodon aŭ bezonas novan? <0>Klaku ĉi tie.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Ĉu vi ne vidas kodon? <0>Klaku ĉi tie por resendi.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Ĉu vi ne vidas retmesaĝon? <0>Klaku ĉi tie por resendi.0>"
@@ -3700,16 +3829,19 @@ msgstr "Ne maltrankvilu! Ĉiuj ekzistantaj mesaĝoj kaj agordoj estas konservita
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Farite"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Duoble tuŝetu aŭ longe premu la mesaĝon por aldoni reagon"
@@ -3741,15 +3873,6 @@ msgstr "Duoble tuŝeti por ŝati"
msgid "Download Bluesky"
msgstr "Elŝuti Bluesky-apon"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Elŝuti CAR-dosieron"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Elŝuti CAR-dosieron"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Elŝuti babilejajn datumojn"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Elŝuti babilejajn datumojn"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Elŝuti bildon"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "ekz. Uzantoj kiuj ripete respondas per reklamoj."
msgid "Eating disorders"
msgstr "Manĝadaj perturboj"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Redakti"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Redakti profilbildon"
@@ -3847,14 +3978,14 @@ msgstr "Redakti profilbildon"
msgid "Edit Feeds"
msgstr "Redakti fluojn"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Redakti grupan nomon"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Redakti bildon"
@@ -3868,7 +3999,16 @@ msgstr "Redakti interagajn agordojn"
msgid "Edit interests"
msgstr "Redakti interesojn"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "Redakti agordojn de ligilo"
@@ -3886,20 +4026,15 @@ msgstr "Redakti tujelsendan staton"
msgid "Edit moderation list"
msgstr "Redakti la kontrol-liston"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Redakti miajn fluojn"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "Redakti nomon"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Redakti sciigojn de {0}"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Redakti homojn"
@@ -3925,7 +4060,7 @@ msgstr "Redakti profilon"
msgid "Edit starter pack"
msgstr "Redakti startpakon"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "Redakti nomon de ĉi tiu grupa babilejo"
@@ -3937,7 +4072,7 @@ msgstr "Redakti la liston de uzantoj"
msgid "Edit who can reply"
msgstr "Elekti kiu povas respondi"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Redakti vian startpakon"
@@ -3971,7 +4106,7 @@ msgstr "Retpoŝtadreso"
msgid "Email Resent"
msgstr "Retmesaĝo resendita"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "Retmesaĝo sendita!"
@@ -4006,8 +4141,8 @@ msgstr "Enkorpigi ĉi tiun afiŝon en vian retejon. Simple kopiu la jenan kodaĵ
msgid "Embedded video player"
msgstr "Enkorpigita videoludilo"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Ŝalti"
@@ -4025,7 +4160,7 @@ msgstr "Videbligi poradoltan enhavon"
msgid "Enable captions"
msgstr "Ŝalti subtekstojn"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Ŝalti retpoŝtan 2FA-on"
@@ -4038,13 +4173,12 @@ msgstr "Ŝalti eksterajn aŭdvidaĵojn"
msgid "Enable media players for"
msgstr "Ŝalti la aŭdvidajn ludliojn por"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Por ŝalti sciigojn pri konto, vizitu ties profilon kaj premu la <0>sonorilan piktogramon0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Ŝalti ŝprucosciigojn"
@@ -4091,8 +4225,8 @@ msgstr "Entajpu pasvorton"
msgid "Enter a word or tag"
msgstr "Entajpu vorton aŭ kradvorton"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Entajpu kodon"
@@ -4143,7 +4277,7 @@ msgstr "Ŝaltas plenekranon"
msgid "Entertainment"
msgstr "Amuzo"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Eraro"
@@ -4185,23 +4319,23 @@ msgstr "Ĉiuj povas respondi"
msgid "Everybody can reply to this post."
msgstr "Ĉiuj povas respondi al ĉi tiu afiŝo."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Ĉiuj"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Ĉiuj"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Ĉiuj"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Ĉio alia"
@@ -4217,8 +4351,8 @@ msgstr "Ekskluzivas uzantojn, kiujn vi sekvas"
msgid "Exit fullscreen"
msgstr "Malŝalti plenekranon"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Etendi alternativan tekston"
@@ -4226,7 +4360,7 @@ msgstr "Etendi alternativan tekston"
msgid "Expand list of users"
msgstr "Etendi liston de uzantoj"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Etendi aŭ maletendi la tutan afiŝon, al kiu vi respondas"
@@ -4238,7 +4372,7 @@ msgstr "Etendi afiŝan tekston"
msgid "Expands or collapses post text"
msgstr "Etendas aŭ maletendas la tekston de la afiŝo"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Espektas uri-on gvidantan al rikordo"
@@ -4277,9 +4411,9 @@ msgstr "Poradolta aŭ maltrankviliga aŭdvidaĵo."
msgid "Explicit sexual images."
msgstr "Detalaj seksumaj bildoj."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Esplori"
@@ -4289,11 +4423,8 @@ msgstr "Esplori"
msgid "Explore the app"
msgstr "Esplori la apon"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,7 @@ msgstr "Eksteraj aŭdvidaĵoj"
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 "Eksteraj aŭdvidaĵoj eblas permesi al retejoj kolekti informojn pri vi kaj via aparato. Neniu informo estos sendota aŭ postulota antaŭ vi premos la butonon \"ludi\"."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Preferoj pri eksteraj aŭdvidaĵoj"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Malsukcesis akcepti babilejon"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Malsukcesis aldoni emoĝian reagon"
@@ -4354,7 +4489,7 @@ msgstr "Malsukcesis aldoni al la startpako"
msgid "Failed to change handle. Please try again."
msgstr "Malsukcesis ŝanĝi identigilon. Bonvolu reprovi."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "Malsukcesis kopii ligilon"
@@ -4367,7 +4502,7 @@ msgstr "Malsukcesis krei apan pasvorton. Bonvolu reprovi."
msgid "Failed to create conversation"
msgstr "Malsukcesis krei konversacion"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "Malsukcesis krei invitligilon"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Malsukcesis forigi babilejon"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Malsukcesis forigi mesaĝon"
@@ -4394,24 +4529,24 @@ msgstr "Malsukcesis forigi afiŝon, bonvolu reprovi"
msgid "Failed to delete starter pack"
msgstr "Malsukcesis forigi startpakon"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "Malsukcesis malŝalti invitligilon"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Fiaskis malkonekti Germ DM. Eraro: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "Malsukcesis ŝanĝi nomon de grupa babilejo"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "Malsukcesis redakti invitligilon"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "Malsukcesis ŝalti invitligilon"
@@ -4427,19 +4562,27 @@ msgstr "Malsukcesis sekvi ĉiujn viajn amikojn, bonvolu reprovi"
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "Fiaskis kaŝi proponojn, bonvolu kontroli vian interretan konekton"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "Malsukcesis lanĉi SMS-apon"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "Malsukcesis foriri el grupa babilejo"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Malsukcesis ŝargi konversaciojn"
@@ -4456,17 +4599,8 @@ msgstr "Fiaskis ŝargi fluojn"
msgid "Failed to load feeds preferences"
msgstr "Malsukcesis ŝargi preferojn de fluoj"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Malsukcesis ŝargi sciigajn agordojn."
@@ -4493,16 +4627,15 @@ msgstr "Malsukcesis ŝargi propontiajn fluojn"
msgid "Failed to load suggested follows"
msgstr "Malsukcesis ŝargi proponitajn kontojn"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "Malsukcesis ŝlosi grupan babilejon"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Malsukcesis marki ĉiujn petojn kiel legitaj"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "Malsukcesis silentigi grupan babilejon"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Malsukcesis alpingli afiŝon"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Fiaskis rekonekti Germ DM. Eraro: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Fiaskis forigi datumojn. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Malsukcesis forigi emoĝian reagon"
@@ -4542,15 +4675,19 @@ msgstr "Malsukcesis forigi anon el grupa babilejo"
msgid "Failed to remove verification"
msgstr "Malsukcesis forigi konfirmon"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr "Malsukcesis trovi la lokon. Bonvolu reprovi."
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Malsukcesis konservi malneton"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "Fiaskis konservi bildon"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Malsukcesis konservi viajn interesojn."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Malsukcesis sendi retmesaĝon, bonvolu reprovi."
@@ -4580,7 +4717,7 @@ msgstr "Malsukcesis sendi raporton"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Malsukcesis sendi apelacion, bonvole reprovu."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Malsukcesis baskuligi la silentigon de fadeno, bonvolu reprovi"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr "Malsukcesis malŝlosi grupan babilejon"
@@ -4597,12 +4734,12 @@ msgstr "Malsukcesis malŝlosi grupan babilejon"
msgid "Failed to unpin list"
msgstr "Malsukcesis depingli la liston"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "La ĝisdatigo de retpoŝtaj 2FA-agordoj malsukcesis"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Malsukcesis ĝisdatigi retpoŝtadreson, bonvolu reprovi."
@@ -4614,7 +4751,7 @@ msgstr "Malsukcesis ĝisdatigi fluojn"
msgid "Failed to update notification declaration"
msgstr "Malsukcesis ĝisdatigi sciigan deklaron"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Malsukcesis ĝisdatigi agordojn"
@@ -4641,7 +4778,7 @@ msgstr "Falsa konto aŭ roboto"
msgid "False information about elections"
msgstr "Malveraj informoj pri balotoj"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Fluo"
@@ -4649,7 +4786,7 @@ msgstr "Fluo"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Fluo de {0}"
@@ -4662,7 +4799,7 @@ msgstr "Kreinto de fluo"
msgid "Feed identifier"
msgstr "Identigilo de fluo"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Menuo de la fluo"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Prikomentado sendita al operatoro de la fluo"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Fluoj"
@@ -4739,7 +4876,7 @@ msgstr "Filtri serĉon laŭ lingvo (nune: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Filtri kiu havos eblon ŝalti ricevadon de sciigoj pri via agado"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Filtri de kiuj vi ricevos sciigojn"
@@ -4747,11 +4884,11 @@ msgstr "Filtri de kiuj vi ricevos sciigojn"
msgid "Finalizing"
msgstr "Finante"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Finfine!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Financoj"
msgid "Find accounts to follow"
msgstr "Trovi kontojn por sekvi"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Trovi kontaktojn"
@@ -4799,7 +4936,7 @@ msgstr "Trovi homojn por sekvi"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Trovi afiŝojn, uzantojn kaj fluojn ĉe Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Trovu viajn amikojn"
@@ -4944,8 +5081,12 @@ msgstr "Sekvata de <0>{0}0> kaj <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Sekvata de <0>{0}0>, <1>{1}1>, kaj {2, plural, one {# alia} other {# aliaj}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Sekvantoj de @{0}, kiujn vi konas"
@@ -4995,19 +5136,16 @@ msgstr "Sekvas {handle}"
msgid "Following feed preferences"
msgstr "Preferoj de la fluo pri sekvatoj"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Preferoj de la fluo pri sekvatoj"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Sekvas vin"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Sekvas vin"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Tiparo"
@@ -5069,7 +5207,7 @@ msgstr "Ĉu vi forgesis?"
msgid "Free your feed"
msgstr "Liberu vian fluon"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "De"
@@ -5086,35 +5224,35 @@ msgstr "De <0/>"
msgid "Generate a starter pack"
msgstr "Generi startpakon"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Generi invitligilon"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Generi novan invitligilon"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Generi novan ligilon"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germ DM malkonektita"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Ligilo de Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germ DM rekonektita"
@@ -5122,46 +5260,50 @@ msgstr "Germ DM rekonektita"
msgid "Get help"
msgstr "Akiri helpon"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Ricevi sciigojn, kiam homoj eksekvos vin."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Ricevi sciigojn, kiam homoj ŝatos afiŝojn, kiujn vi reafiŝis."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Ricevi sciigojn, kiam homoj ŝatos viajn afiŝojn."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Ricevi sciigojn, kiam homoj mencios vin."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Ricevi sciigojn, kiam homoj citos viajn afiŝojn."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Ricevi sciigojn, kiam homoj respondos al viaj afiŝoj."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Ricevi sciigojn, kiam homoj reafiŝos afiŝojn, kiujn vi reafiŝis."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Ricevi sciigojn, kiam homoj reafiŝos viajn afiŝojn."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr ""
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Esti sciigota pri novaj afiŝoj"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Esti sciigota pri novaj afiŝoj kaj respondoj de kontoj kiujn vi elektis."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Esti sciigota pri novaj afiŝoj de {name}"
@@ -5174,27 +5316,27 @@ msgstr "Esti sciigata pri agado de ĉi tiu konto"
msgid "Get notified when {name} posts"
msgstr "Esti sciigota kiam {name} afiŝos"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Esti sciigota kiam iu afiŝos"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Enkonduko"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIF alŝutita"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Donu vizaĝon al via profilo"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Reen"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Iri reen"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Reveni al la antaŭa paŝo"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Hejmen"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Hejmen"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Hejmen"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Iri al kontaj agordoj"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Iri al konversacio kun {0}"
@@ -5299,12 +5440,12 @@ msgstr "Iri al la sekva"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Iri al profilo"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "Iri al la grupa babilejo nomita \"{chatName}\""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Kompreninte"
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "Dialogujo kun invitligilo al grupa babilejo"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "Grupa babilejo ŝlosita"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "Grupa babilejo silentigita"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr "Nomo de grupa babilejo aktualigita"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "Agordoj de grupa babilejo"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "Grupa babilejo malŝlosita"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "Grupa babilejo malsilentigita"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr "Grupaj babilejoj ankoraŭ ne disponeblas"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr "Grupaj babilejoj nun disponeblas"
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "Grupo estas ŝlosita"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Grupa nomo"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Tiu identigilo tro longas. Bonvolu provi malpli longan."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "Okazas nun"
@@ -5446,7 +5603,7 @@ msgstr "Agoj kun granda riziko de danĝero"
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Kradvorto"
@@ -5458,8 +5615,8 @@ msgstr "Kradvorto {tag}"
msgid "Hate speech"
msgstr "Malama parolado"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Ĉu vi havas kodon? <0>Klaku ĉi tie.0>"
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Helpo"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Afiŝu foton aŭ kreu profilbildon por ke homoj sciu, ke vi ne estas roboto."
@@ -5547,7 +5704,7 @@ msgstr "Kaŝi adaptadajn opciojn"
#: src/components/dms/SystemMessageGroup.tsx:57
msgid "Hide group chat updates"
-msgstr ""
+msgstr "Kaŝi aktualigojn de grupaj babilejoj"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:533
msgid "Hide lists"
@@ -5652,18 +5809,18 @@ msgstr "Hmmmm, ŝajne ni havas problemon ŝargi ĉi tiun datumon. Rigardu sube p
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmmm, ni ne povis ŝargi tiun kontrol-servon."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Momenton! Ni iom post iom donas aliron al la videaĵo, kaj vi ankoraŭ atendas en vico. Rekontrolu baldaŭ!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Ne tiom rapide! Ĉi tiu funkcio ankoraŭ ne disponeblas al vi. Bonvolu rekontroli poste."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Hejmo"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Se alternativa teksto estas longa, baskulas ĝian malvolvon"
@@ -5757,7 +5914,7 @@ msgstr "Se vi forigos ĉi tiun liston, vi ne povos restaŭri ĝin."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Se vi havas vian propran domajnon, vi povas uzi ĝin kiel vian identigilon. Ĉi tio permesas al vi aŭtentikigi vin mem. <0>Eksciu pli.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Se vi bezonas ĝisdatigi vian retpoŝtadreson, <0>klaku ĉi tie0>."
@@ -5765,7 +5922,7 @@ msgstr "Se vi bezonas ĝisdatigi vian retpoŝtadreson, <0>klaku ĉi tie0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Se vi forigos ĉi tiun afiŝon, vi ne povos restaŭri ĝin."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Se vi ĝisdatigos vian retpoŝtadreson, retpoŝta 2FA estos malŝaltota."
@@ -5773,7 +5930,6 @@ msgstr "Se vi ĝisdatigos vian retpoŝtadreson, retpoŝta 2FA estos malŝaltota.
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Se vi volas ŝanĝi vian pasvorton, ni sendos al vi kodon por konfirmi, ke ĉi tiu estas via konto."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Se vi volas limigi kiu povos ricevi sciigojn pri agado de via konto, vi povas ŝanĝi tion en <0>Agordoj → Privateco kaj sekureco0>."
@@ -5786,23 +5942,33 @@ msgstr "Se vi estas programisto, vi povas gastigi vian propran servilon."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Bildo"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "Bildo {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Bildo {0} el {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "Bildo {0} el {imageCount}"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Bilda kaŝmemoro viŝita, {0} liberita(j)"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "Bildogalerio, {0} bildoj"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "Bildo nedisponeblas."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Opcioj de bildo"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Identoprunto"
msgid "Import contacts"
msgstr "Importi kontaktojn"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Importi kontaktojn"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Importu kontaktojn por trovi viajn amikojn"
@@ -5881,40 +6047,40 @@ msgstr "Importita je {0}"
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "En-apaj"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "En-apaj sciigoj"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "En-apaj, Ĉiuj"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "En-apaj, Homoj kiujn vi sekvas"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "En-apaj, Ŝprucaj"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "En-apaj, Ŝprucaj, Ĉiuj"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "En-apaj, Ŝprucaj, Homoj kiujn vi sekvas"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Ricevujo malplenas!"
@@ -5963,6 +6129,10 @@ msgstr "Ni prezentas \"konservitaj afiŝoj\" alinome \"legosignoj\""
msgid "Invalid 2FA confirmation code."
msgstr "Nevalida 2FA-konfirmkodo."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Nevalida identigilo. Bonvolu uzi iun alian."
@@ -5977,10 +6147,14 @@ msgstr "Nevalidaj agordoj pri interagado."
msgid "Invalid phone number"
msgstr "Nevalida telefononumero"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Nevalida temlinio de raporto"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Nevalida aŭtentikig-kodo"
@@ -6010,12 +6184,12 @@ msgstr "Inviti amikojn"
msgid "Invite friends <0/>"
msgstr "Inviti amikojn <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Invitligilo"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "Invitligilo kreita"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "Invitligilo malŝaltita"
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Vi estas sola ĉi-momente! Aldoni pli da homoj al via startpako serĉante supre."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID de laboro: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID de laboro: {0}"
msgid "Jobs"
msgstr "Laboroj"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Laboroj"
msgid "Join Bluesky"
msgstr "Aliĝi al Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Aliĝi al konversacio"
msgid "Journalism"
msgstr "Ĵurnalismo"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Daŭre redakti"
@@ -6143,7 +6331,7 @@ msgstr "Etikedoj sur via konto"
msgid "Labels on your content"
msgstr "Etikedoj sur via enhavo"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Lingvaj agordoj"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Plej freŝaj"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Eksciu pli pri ĉi tiu averto"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Ekscii pli pri konfirmado ĉe Bluesky"
@@ -6239,7 +6427,7 @@ msgstr "Ekscii pli pri konfirmado ĉe Bluesky"
msgid "Learn more about what is public on Bluesky."
msgstr "Eksciu pli pri kio estas publika ĉe Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Eksciu pli pri via ligilo de Germ DM"
@@ -6252,8 +6440,8 @@ msgstr "Eksciu pli en viaj <0>kontaj agordoj0>."
msgid "Learn more."
msgstr "Eksciu pli."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Foriri"
@@ -6276,7 +6464,7 @@ msgstr "Foriri el babilejo"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Foriri el konversacio"
@@ -6284,13 +6472,13 @@ msgstr "Foriri el konversacio"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Foriri el konversacio"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "Foriri el grupa babilejo"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr "Foriri el ĉi tiu grupa babilejo"
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Hela"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Ŝati ({0, plural, one {# ŝato} other {# ŝatoj}})"
@@ -6346,11 +6534,7 @@ msgstr "Ŝatu 10 afiŝojn"
msgid "Like 10 posts to train the Discover feed"
msgstr "Ŝatu 10 afiŝojn por trejni la fluon Discover"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Sciigoj pri ŝatoj"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Ŝati ĉi tiun fluon"
@@ -6358,8 +6542,8 @@ msgstr "Ŝati ĉi tiun fluon"
msgid "Like this labeler"
msgstr "Ŝati ĉi tiun etikedilon"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Ŝatata de"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Ŝatata de {0, plural, one {# uzanto} other {# uzantoj}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Ŝatata de {likeCount, plural, one {# uzanto} other {# uzantoj}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Ŝatoj"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Ŝatoj de viaj reafiŝoj"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Sciigoj pri ŝatoj de viaj reafiŝoj"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Ŝatoj de ĉi tiu afiŝo"
@@ -6409,11 +6589,11 @@ msgstr "Ŝatoj de ĉi tiu afiŝo"
msgid "Linear"
msgstr "Linie"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "Ligilo kopiita al tondujo"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Listo"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Listo malsilentigita"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listoj"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr "Ŝargado de interagaj agordoj de afiŝo..."
msgid "Loading..."
msgstr "Ŝargado..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "Ŝlosi"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "Ŝlosi grupan babilejon"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "Ĉu ŝlosi grupan babilejon?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "Ŝlosi ĉi tiun grupan babilejon"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "Ŝlosita"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Protokolo"
@@ -6662,7 +6842,7 @@ msgstr "Fluo de sekvatoj ŝajne mankas al vi. <0>Klaku ĉi tie por aldoni iun.
msgid "Love GIFs"
msgstr "GIF-oj pri amo"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Faru ĝustigojn al retpoŝtaj agordoj por via konto"
@@ -6687,9 +6867,8 @@ msgstr "Administri konfirmadajn agordojn"
msgid "Manage your muted words and tags"
msgstr "Administri la silentigitajn vortojn k kradvortojn"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Marki ĉiujn kiel legitaj"
@@ -6698,13 +6877,12 @@ msgstr "Marki ĉiujn kiel legitaj"
msgid "Mark as read"
msgstr "Marki kiel legita"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Markis ĉiujn kiel legitaj"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Eble poste"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Aŭdvidaĵoj, kiuj povas esti maltrankviligaj aŭ nekonvenaj por kelkaj spektantoj."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Anoj"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "Anoj ankoraŭ povas legi babilejan historion sed ne povas sendi novajn mesaĝojn."
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Sciigoj pri mencioj"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "menciitaj uzantoj"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Mencioj"
@@ -6775,22 +6949,22 @@ msgstr "Mesaĝo {0}"
msgid "Message {displayName}"
msgstr "Mesaĝi {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Mesaĝo forigita"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Mesaĝo forigita"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Malsukcesis sendi mesaĝon."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Mesaĝo de @{0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Mesaĝo tro longas"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "Mesaĝo tro longas ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Opcioj de mesaĝo"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Mesaĝoj"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr "Noktomezo"
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Sciigoj aliaj"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Miskonkludiga"
@@ -6850,7 +7020,7 @@ msgstr "Miskonkludiga"
msgid "Missing media"
msgstr "Mankanta aŭdvidaĵo"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Kontrolado"
@@ -6894,7 +7064,7 @@ msgstr "Kontrol-listo ĝisdatigita"
msgid "Moderation lists"
msgstr "Kontrol-listoj"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Kontrol-listoj"
@@ -6903,7 +7073,7 @@ msgstr "Kontrol-listoj"
msgid "moderation settings"
msgstr "agordoj pri kontrolado"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Statoj de kontrolado"
@@ -6949,7 +7119,7 @@ msgstr "Filmoj"
msgid "Music"
msgstr "Muziko"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Silentigi"
@@ -6994,7 +7164,7 @@ msgstr "Silentigi liston"
msgid "Mute these accounts?"
msgstr "Ĉu silentigi tiujn kontojn?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "Silentigi ĉi tiun grupan babilejon"
@@ -7032,7 +7202,7 @@ msgstr "Silentigi fadenon"
msgid "Mute words & tags"
msgstr "Silentigi vortojn kaj kradvortojn"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "Silentigita"
@@ -7040,7 +7210,7 @@ msgstr "Silentigita"
msgid "Muted accounts"
msgstr "Silentigitaj kontoj"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Silentigitaj kontoj"
@@ -7108,8 +7278,8 @@ msgstr "Iras al la sekva ekrano"
msgid "Navigates to your profile"
msgstr "Iras al via profilo"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Ĉu vi bezonas raporti kopirajtan malobservon, jurpeton aŭ problemon pri reguliga observo?"
@@ -7136,34 +7306,34 @@ msgstr "{postsCount, plural, one {Nova afiŝo} other {Novaj afiŝoj}} de {firstA
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{postsCount, plural, one {Nova afiŝo} other {Novaj afiŝoj}} de {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Nova babilejo"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "Nova babilejo kun {0}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "Nova babilejo kun {0} kaj {1}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "Nova babilejo kun {0}, {1}, kaj {memberCount, plural, one {{memberCount} alia} other {{memberCount} aliaj}}."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Nova retpoŝtadreso"
@@ -7174,29 +7344,25 @@ msgstr "Nova retpoŝtadreso"
msgid "New Feature"
msgstr "Nova funkcio"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Sciigoj pri novaj sekvantoj"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Novaj sekvantoj"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "Nova grupa babilejo"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "Nova grupa babilejo"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "Nova grupa babilejo kun:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Nova afiŝo"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Nova afiŝo"
@@ -7262,8 +7428,8 @@ msgstr "Novaĵoj"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "Neniu GIF-o trovita por \"{query}\"."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "Neniu GIF-o por montri nuntempe. Reprovu post momento."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Sen bildo"
@@ -7362,7 +7528,7 @@ msgstr "Vi ne plu sekvas {0}"
msgid "No media yet"
msgstr "Ankoraŭ neniu aŭdvidaĵo"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Ankoraŭ neniu mesaĝo"
@@ -7378,12 +7544,12 @@ msgstr "Sen nomo"
msgid "No notifications yet!"
msgstr "Ankoraŭ neniu sciigo!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Neniu"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Neniu"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Sen rezulto"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Sen rezultoj"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Ne-seksuma nudeco"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Neniu"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7520,14 +7682,14 @@ msgstr "Nedisponebla ĉe ĉi tiu platformo."
#: src/components/KnownFollowers.tsx:254
msgid "Not followed by anyone you’re following"
-msgstr ""
+msgstr "Sekvata de neniu el viaj sekvatoj"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Netrovita"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Ĉu vi ne pretas afiŝi? Konservu viajn plej bonajn ideojn en Malnetoj ĝis la momento estos bona."
@@ -7548,44 +7710,31 @@ msgstr "Noto: Ĉi tiu afiŝo videblas nur al ensalutintaj uzantoj."
msgid "Nothing saved yet"
msgstr "Ankoraŭ nenio konservita"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Sciigaj agordoj"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Sciigaj sonoj"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Sciigoj"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Sciigoj pri ĉio alia, ekzemple kiam iu aliĝos uzante unu el viaj startpakoj."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "nun"
@@ -7601,7 +7750,7 @@ msgstr "Numero devas esti telefononumero"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Malŝaltita"
@@ -7623,7 +7772,8 @@ msgstr "Bone"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "ĉe<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Restarigi la lernilon"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Unu aŭ pli afiŝoj estas tro longaj por konservi kiel malneto. La maksimuma nombro da signoj estas {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {# signo.} other {# signoj.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Al unu aŭ pli da videaĵoj mankas alternativa teksto."
@@ -7685,6 +7835,26 @@ msgstr "Al unu aŭ pli da videaĵoj mankas alternativa teksto."
msgid "Only {0} can reply."
msgstr "Nur {0} povas respondi."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Nur sekvantoj kiujn mi sekvas"
msgid "Only image files are supported"
msgstr "Nur bildaj dosieroj estas subtenataj"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Nur WebVTT-dosieroj (.vtt) estas subtenataj"
@@ -7712,7 +7892,7 @@ msgstr "Ups, io misfunkciis!"
msgid "Oops!"
msgstr "Ups!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Malfermi la profilbildan kreilon"
@@ -7720,12 +7900,17 @@ msgstr "Malfermi la profilbildan kreilon"
msgid "Open camera"
msgstr "Malfermi fotilon"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "Malfermi opciojn de babilejano por {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Malfermi la opciojn pri konversacio"
@@ -7739,16 +7924,16 @@ msgstr "Malfermi flankmenuon"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Malfermi emoĝi-elektilon"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Malfermi la informekranon de la fluo"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Malfermi la opciomenuon de la fluo"
@@ -7760,13 +7945,17 @@ msgstr "Malfermi la tutan emoĝi-liston"
msgid "Open Germ DM"
msgstr "Malfermi Germ DM"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "Malfermi agrdojn de grupa babilejo"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Malfermi ligilon al {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Malfermi pakon"
msgid "Open post options menu"
msgstr "Malfermi menuon de la afiŝo"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Malfermi profilon"
@@ -7817,6 +8006,10 @@ msgstr "Malfermi la historiopaĝon"
msgid "Open system log"
msgstr "Malfermi sisteman protokolon"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Malfermas pliajn detalojn por sencimigo"
msgid "Opens alt text dialog"
msgstr "Malfermas dialogujon de alternativa teksto"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Malfermas fotilon de aparato"
@@ -7858,22 +8051,24 @@ msgstr "Malfermas redaktilon"
msgid "Opens device camera"
msgstr "Malfermi fotilon de aparato"
-#. 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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Malfermas procezon de kreado de nova Bluesky-konto"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Malfermas procezon de ensalutado al via ekzistanta Bluesky-konto"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Malfermas la tutan bildon"
@@ -7890,7 +8085,7 @@ msgstr "Malfermas la bildo-elektilon"
msgid "Opens link {0}"
msgstr "Malfermas ligilon {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Malfermas tujelsendan statusan dialogujon"
@@ -7904,7 +8099,7 @@ msgstr "Malfermi agordojn de afiŝaj lingvoj"
#: src/components/dms/SystemMessageItem.tsx:60
msgid "Opens profile"
-msgstr ""
+msgstr "Malfermas profilon"
#. Accessibility hint announced after the GIF picker button label, describing what activating it will do.
#: src/view/com/composer/photos/SelectGifBtn.tsx:45
@@ -7919,9 +8114,9 @@ msgstr "Malfermas la afiŝan redaktilon"
msgid "Opens this draft in the composer"
msgstr "Malfermas ĉi tiun malneton en la redaktilo"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Malfermas ĉi tiun profilon"
@@ -7997,12 +8192,12 @@ msgstr "Nia blogafiŝo"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Nia kontrolad-teamo ricevis vian raporton."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Niaj kontrolantoj ekzamenis denuncojn kaj decidis malebligi vian aliron al babilejojn ĉe Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Niaj kontrolantoj ekzamenis denuncojn kaj decidis malebligi vian aliron
msgid "Owner"
msgstr "Posedanto"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Paĝo netrovita"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Paĝo netrovita"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Paŭzigi videaĵon"
msgid "People"
msgstr "Homoj"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "Homoj, kiujn {ownerName} sekvas, povas aliĝi tuje"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "Homoj, kiujn {ownerName} sekvas, povas peti aliĝi"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Homoj sekvataj de @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Homoj sekvantaj @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Homoj kiujn mi sekvas"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "Homoj, kiujn mi sekvas, povas aliĝi tuje"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "Homoj, kiujn mi sekvas, povas peti aliĝi"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Bildoj destinitaj por adoltoj."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Alpingli fluon"
@@ -8152,7 +8348,7 @@ msgstr "Alpingli fluon"
msgid "Pin to home"
msgstr "Alpingli al hejmo"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Alpingli al hejmo"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Alpinglita"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} alpinglita al hejmo"
@@ -8236,7 +8432,7 @@ msgstr "Bonvolu elekti vian identigilon."
msgid "Please choose your password."
msgstr "Bonvolu elekti vian pasvorton."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Bonvolu alklaki la ligilon en la retmesaĝo, kiun ni ĵus sendis al vi, por konfirmi vian novan retpoŝtadreson. Ĉi tio estas grava paŝo por permesi al vi daŭre ĝui ĉiujn funkciojn de Bluesky."
@@ -8244,7 +8440,7 @@ msgstr "Bonvolu alklaki la ligilon en la retmesaĝo, kiun ni ĵus sendis al vi,
msgid "Please complete the verification captcha."
msgstr "Bonvolu plenumi la captcha-kontrolon."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Bonvolu konfirmi vian retpoŝtadreson por alŝuti videaĵojn."
@@ -8265,14 +8461,14 @@ msgstr "Bonvolu entajpi pasvorton. Ĝi devas havi longon de almenaŭ 8 signojn."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Bonvolu entajpi unikan nomon por ĉi tiu apa pasvorto, aŭ uzu nian hazarde generitan."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Bonvolu entajpi validan kodon."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Bonvolu entajpi validan retpoŝtadreson."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Bonvolu entajpi validan, neprovizoran retpoŝtadreson. Vi eble bezonos aliri ĉi tiun retpoŝtadreson estontece."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Bonvolu entajpi suben la kodon, kiun ni sendis al <0>{0}0>."
@@ -8293,7 +8489,7 @@ msgstr "Bonvolu entajpi suben la kodon, kiun ni sendis al <0>{0}0>."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Bonvolu entajpi la kodon kiun vi ricevis kaj la novan pasvorton kiun vi volus uzi."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Bonvolu entajpi la sekurecan kodon, kiun ni sendis al via antaŭa retpoŝtadreso."
@@ -8306,7 +8502,7 @@ msgstr "Bonvolu entajpi vian retpoŝtadreson."
msgid "Please enter your invite code."
msgstr "Bonvolu entajpi vian invitan kodon."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Bonvolu entajpi vian novan retpoŝtadreson."
@@ -8323,7 +8519,7 @@ msgstr "Bonvolu entajpi vian uzantnomon"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Bonvolu klarigi kial vi kredas, ke ĉi tiu etikedo estis malĝuste surmetita de {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Bonvolu klarigi kial vi pensas, ke viaj babilejoj estis malebligitaj mise"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Bonvolu konfirmi vian retpoŝtadreson"
@@ -8383,7 +8579,7 @@ msgstr "Politiko"
msgid "Porn"
msgstr "Pornografio"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Afiŝi"
@@ -8403,12 +8599,12 @@ msgstr "Afiŝi foton"
msgid "Post a video"
msgstr "Afiŝi videaĵon"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Afiŝi ĉiujn"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Afiŝi ĉiuokaze"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Afiŝo blokita"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Afiŝo de @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Afiŝo forigita"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Malsukcesis ŝargi afiŝon. Bonvolu kontroli vian retkonekton kaj reprovi."
@@ -8454,7 +8650,7 @@ msgstr "Afiŝo kaŝita de vi"
msgid "Post interaction settings"
msgstr "Interagaj agordoj de afiŝo"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Interagaj agordoj de afiŝo"
@@ -8464,8 +8660,8 @@ msgstr "Interagaj agordoj de afiŝo"
msgid "Post language selection"
msgstr "Elekto de afiŝa lingvo"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Afiŝi ligilon"
@@ -8491,7 +8687,6 @@ msgstr "Afiŝo depinglita"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Afiŝoj povas esti silentigitaj laŭ sia teksto, siaj etikedoj, aŭ amba
msgid "Posts hidden"
msgstr "Afiŝoj kaŝitaj"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Afiŝoj, respondoj"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Eventuale misgvida ligilo"
@@ -8528,6 +8719,7 @@ msgstr "Premu por provi rekonekti"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Premu por reprovi"
@@ -8536,7 +8728,7 @@ msgstr "Premu por reprovi"
msgid "Press to view followers of this account that you also follow"
msgstr "Premu por vidi sekvantojn de ĉi tiu konto kiun vi ankaŭ sekvas"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Antaŭmontro"
@@ -8559,21 +8751,20 @@ msgstr "Privateco"
msgid "Privacy and security"
msgstr "Privateco kaj sekureco"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privateco kaj sekureco"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Agordoj de privateco kaj sekureco"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Regularo pri privateco"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "Traktado de GIF..."
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Traktado de videaĵo..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Traktado..."
@@ -8602,8 +8793,8 @@ msgstr "Traktado..."
msgid "profile"
msgstr "profilo"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Publikigi afiŝon"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Publikigi afiŝojn"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Publikigi respondojn"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Publikigi respondon"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Ŝprucaj"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Ŝprucosciigoj"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
-msgstr "Ŝprucaj, Ĉiuj"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "Ŝprucaj, Homoj kiujn vi sekvas"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "QR-kodo estis elŝutita!"
msgid "QR code saved to your camera roll!"
msgstr "QR-kodo konservita en via bildgalerio!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Sciigoj pri citaĵoj"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Citafiŝoj malebligitaj"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Citaĵoj"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Religi citaĵon"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Reŝalti invitligilon"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Reŝalti ligilon"
@@ -8745,8 +8932,8 @@ msgstr "Reŝalti ligilon"
msgid "React with {emoji}"
msgstr "Reagi per {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Reagoj"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Legu blogafiŝon"
@@ -8812,11 +8999,11 @@ msgstr "Realaj homoj."
msgid "Reason for appeal"
msgstr "Kialo de apelacio"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Ricevi en-apajn sciigojn"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Ricevi ŝprucosciigojn"
@@ -8841,6 +9028,10 @@ msgstr "Rekomenditaj"
msgid "Reconnect"
msgstr "Rekonekti"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Malakcepti"
msgid "Reject chat request"
msgstr "Malakcepti babilpeton"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Reŝargi konversaciojn"
@@ -8896,17 +9087,17 @@ msgstr "Forigi konton"
msgid "Remove all contacts"
msgstr "Forigi ĉiujn kontaktojn"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Forigi aldonaĵon"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Forigi profilbildon"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Forigi rubandon"
@@ -8914,8 +9105,9 @@ msgstr "Forigi rubandon"
msgid "Remove caption file"
msgstr "Forigi subtekstan dosieron"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Forigi enkorpigaĵon"
@@ -8933,8 +9125,8 @@ msgstr "Ĉu forigi fluon?"
msgid "Remove from chat"
msgstr "Forigi el babilejo"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Forigi el konservitaj afiŝoj"
msgid "Remove from your feeds?"
msgstr "Ĉu forigi el viaj fluoj?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Forigi bildon"
@@ -9009,11 +9201,11 @@ msgstr "Forigi konfirmon"
msgid "Remove your verification for this account?"
msgstr "Ĉu forigi vian konfirmon por ĉi tiu konto?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Forigita de la aŭtoro"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Forigita de vi"
@@ -9035,7 +9227,7 @@ msgstr "Forigita el konservitaj afiŝoj"
msgid "Removed from starter pack"
msgstr "Forigita el la startpako"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Respondis al vi"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Respondoj"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Respondi"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Respondi ({0, plural, one {# respondo} other {# respondoj}})"
@@ -9125,10 +9316,6 @@ msgstr "Respondo kaŝita de la faden-aŭtoro"
msgid "Reply Hidden by You"
msgstr "Respondo kaŝita de vi"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Sciigoj pri respondoj"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Agordoj pri respondado estas elektitaj de la aŭtoro de la fadeno"
@@ -9146,9 +9333,9 @@ msgstr "Videbleco de respondoj ĝisdatiĝis"
msgid "Reply was successfully hidden"
msgstr "Respondo estis sukcese kaŝita"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Raporti"
@@ -9164,13 +9351,13 @@ msgstr "Raporti konton"
msgid "Report conversation"
msgstr "Raporti konversacion"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Raporta dialogujo"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Raporti fluon"
@@ -9179,7 +9366,7 @@ msgstr "Raporti fluon"
msgid "Report list"
msgstr "Raporti liston"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Raporti mesaĝon"
@@ -9199,8 +9386,8 @@ msgstr "Raporti startpakon"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Raporto sendita"
@@ -9213,7 +9400,7 @@ msgstr "Raporti ĉi tiun konversacion"
msgid "Report this feed"
msgstr "Raporti ĉi tiun fluon"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "Raporti ĉi tiun grupan babilejon"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Raporti ĉi tiun liston"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Reafiŝi"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Reafiŝi ({0, plural, one {# reafiŝo} other {# reafiŝoj}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Sciigoj pri reafiŝoj"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Reafiŝita de vi"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Reafiŝoj"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Reafiŝoj de ĉi tiu afiŝo"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Reafiŝoj de viaj reafiŝoj"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Sciigoj pri reafiŝoj de viaj reafiŝoj"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Peti kodon"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Devigi alternativan tekston antaŭ ol afiŝi"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Devigi retmesaĝan kodon por ensaluti al via konto."
@@ -9328,7 +9534,11 @@ msgstr "Necesa por ĉi tiu provizanto"
msgid "Required in your region"
msgstr "Devigita en via regiono"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Resendi"
@@ -9393,15 +9603,16 @@ msgstr "Reprovas la lastan agon, kiu eraris"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Reprovas la lastan agon, kiu eraris"
msgid "Retry"
msgstr "Reprovi"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Reprovi ŝargi raportajn opciojn"
@@ -9426,14 +9637,14 @@ msgstr "Reprovi ŝargi raportajn opciojn"
msgid "Return to previous page"
msgstr "Reveni al la antaŭa paĝo"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Revenas al hejmpaĝo"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Revenas al antaŭa paĝo"
@@ -9454,7 +9665,7 @@ msgstr "GIF-oj pri malfeliĉo"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Konservi naskiĝdaton"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Konservi ŝanĝojn"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Ĉu konservi ŝanĝojn?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Konservi malneton"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Ĉu konservi malneton?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Konservi QR-kodon"
msgid "Save these options for next time"
msgstr "Konservi tiujn opciojn por venonta fojo"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Konservi al miaj fluoj"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Konservitaj"
msgid "Saved Feeds"
msgstr "Konservitaj fluoj"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Konservitaj afiŝoj"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Konservita al viaj fluoj"
@@ -9551,8 +9764,8 @@ msgstr "Konservita al viaj fluoj"
msgid "Say hello!"
msgstr "Diru saluton!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr "Rulumi dekstren"
msgid "Scroll to top"
msgstr "Rulumi al la supro"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Serĉi"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Serĉi afiŝojn de @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Serĉi miajn afiŝojn"
msgid "Search posts"
msgstr "Serĉi afiŝojn"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Serĉi profilojn"
msgid "Search..."
msgstr "Serĉi..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Serĉas profilojn"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Sekureca etapo devigita"
@@ -9759,7 +9972,7 @@ msgstr "Elekti {langName}"
msgid "Select a color"
msgstr "Elekti koloron"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Elektu kialon"
@@ -9828,7 +10041,7 @@ msgstr "Elektu GIF-on"
msgid "Select GIF \"{0}\""
msgstr "Elektu GIF-on \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "Elektu anojn por grupa babilejo"
@@ -9850,7 +10063,7 @@ msgstr "Elekti lingvon..."
msgid "Select languages"
msgstr "Elektu lingvojn"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Elektu kontrol-servon"
@@ -9904,11 +10117,11 @@ msgstr "Elektu viajn interesojn el la opcioj sube"
msgid "Select your preferred language for translations in your feed."
msgstr "Elektu vian preferatan lingvon por tradukoj en via fluo."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Elektu viajn preferajn sciigajn kanalojn"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "Elektado de pluraj aŭdvidaĵaj specoj ne estas subtenata."
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr "Sendi kodon"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Sendi retmesaĝon"
@@ -9939,7 +10152,7 @@ msgstr "Sendi eraran raporton"
msgid "Send feedback"
msgstr "Sendi prikomentadon"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Sendi mesaĝon"
@@ -9952,7 +10165,7 @@ msgstr "Sendi afiŝon al {name}"
msgid "Send post to..."
msgstr "Sendi afiŝon al..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Sendi raporton al {title}"
@@ -9960,7 +10173,7 @@ msgstr "Sendi raporton al {title}"
msgid "Send the message from your phone"
msgstr "Sendu la mesaĝon per via telefono"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Sendi per rekta mesaĝo"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "Sendita je {0}"
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Agordas retpoŝtadreson por restarigi pasvorton"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Agordoj"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Agordoj por agado de aliuloj"
@@ -10030,39 +10243,39 @@ msgstr "Agordoj por agado de aliuloj"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Agordoj por permesi al aliuloj ricevi sciigojn pri viaj afiŝoj"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Agordoj por sciigoj pri ŝatoj"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Agordoj por sciigoj pri mencioj"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Agordoj por sciigoj pri novaj sekvantoj"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Agordoj por sciigoj pri ĉio alia"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Agordoj por sciigoj pri ŝatoj de viaj reafiŝoj"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Agordoj por sciigoj pri reafiŝoj de viaj reafiŝoj"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Agordoj por sciigoj pri citaĵoj"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Agordoj por sciigoj pri respondoj"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Agordoj por sciigoj pri reafiŝoj"
@@ -10079,10 +10292,12 @@ msgstr "Seksuma ago aŭ erotika nudeco."
msgid "Sexually Suggestive"
msgstr "Seksume sugesta"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Konigi DID-on de aŭtoro"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Kunigi bildon"
@@ -10124,7 +10339,7 @@ msgstr "Konigi URI-on at:// de afiŝo"
msgid "Share QR code"
msgstr "Konigi QR-kodon"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Konigi ĉi tiun fluon"
@@ -10151,7 +10366,7 @@ msgstr "Konigi per..."
msgid "Share your contacts to find friends"
msgstr "Konigi viajn kontaktojn por trovi amikojn"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Testanto de komunaj preferoj"
@@ -10167,16 +10382,16 @@ msgstr "Montri alternativan tekston"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Montri ĉiuokaze"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10195,7 +10410,7 @@ msgstr "Montri adaptadajn opciojn"
#: src/components/dms/SystemMessageGroup.tsx:57
msgid "Show group chat updates"
-msgstr ""
+msgstr "Montri aktualigojn de grupaj babilejoj"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Montri averton kaj elfiltri el fluoj"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr "Montras la enhavon"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Ensalutu aŭ kreu konton"
msgid "Sign in or create your account to join the conversation!"
msgstr "Ensalutu aŭ kreu vian konton por aliĝi al la konversacio!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Ensaluti al nelistigitan konton"
@@ -10337,6 +10558,10 @@ msgstr "Ensaluti al nelistigitan konton"
msgid "Sign in to Bluesky or create a new account"
msgstr "Ensalutu al Bluesky aŭ kreu novan konton"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Ensalutu por vidi la afiŝon"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Elsaluti"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Elsaluti"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Ĉu elsaluti?"
@@ -10391,7 +10616,7 @@ msgstr "Preterpasi"
msgid "Skip contact sharing and continue to the app"
msgstr "Preterpasi kontaktan konigon kaj daŭrigi al la apo"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Ĉu preterlasi malplenajn afiŝojn?"
@@ -10405,7 +10630,7 @@ msgstr "Preterpasi enkondukon kaj komenci uzi vian konton"
msgid "Skip to next step"
msgstr "Preterpasi al sekva paŝo"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "lumbilda"
@@ -10413,7 +10638,7 @@ msgstr "lumbilda"
msgid "Smaller"
msgstr "Malpli granda"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Dormetas la sciigon"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "Iu foriris el la grupo"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Iu reagis per {0}"
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr "Iu estis forigita el la grupo"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Io ne estis tute ĝusta pri la datumoj, kiujn vi provas raporti. Bonvolu kontaki subtenejon."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Io misfunkciis"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Io misfunkciis!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Io misfunkciis. Bonvolu reprovi post momento."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Io misfunkciis. Bonvolu reprovi."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Ĉu io misfunkciis? Sciigu nin."
@@ -10568,7 +10798,7 @@ msgstr "Sporto"
msgid "Start a conversation, and it will appear here."
msgstr "Komencu konversacion, kaj ĝi aperos ĉi tie."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Komenci novan babilejon"
@@ -10582,17 +10812,17 @@ msgstr "Komenci aldoni homojn"
msgid "Start adding people!"
msgstr "Komencu aldoni homojn!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Komenci babilejon"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Komenci babili kun {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Startpako"
@@ -10654,12 +10884,12 @@ msgstr "Konservejo vakigita, nun relanĉu la apon."
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Historio de agoj"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Sendi"
@@ -10684,9 +10914,9 @@ msgstr "Sendi apelacion"
msgid "Submit Appeal"
msgstr "Sendi apelacion"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Sendi raporton"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Aboni"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Sukceso"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Sukceso!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Sukcese konfirmita"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Proponita"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Sunsubiro"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Subteno"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Subteno por ĉi tiu funkcio en via lando ankoraŭ ne estis ebligita. Bonvolu rekontroli poste."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Ŝanĝi konton"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Ŝanĝi konton"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Ŝanĝi al {0}"
@@ -10828,7 +11062,7 @@ msgstr "Nur kradvortoj"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Tuŝetu sube por permesi al Bluesky aliri vian GPS-pozicion. Ni tiam uzos tiujn datumojn por pli precize determini la enhavon kaj funkciojn disponeblajn en via regiono."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr "Tuŝetu por kvitanci, ke vi komprenas kaj konsentas pri tiuj aktualigoj
msgid "Tap to close context menu"
msgstr "Tuŝetu por fermi kuntekstmenuon"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Tuŝetu por ignori"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Tuŝetu por forigi"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "Tuŝetu por forigi vian reagon {0}"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Tuŝetu por reprovi"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "Tuŝetu por montri {0} reagojn"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Tuŝetu por montri ĉiujn reagojn"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Tuŝetu por vidi reagojn"
@@ -10924,7 +11176,7 @@ msgstr "Kondiĉoj"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Teksto k kradvortoj"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Kampo de teksta enigo"
@@ -11049,6 +11301,11 @@ msgstr "La sekvaj agordoj estos uzataj defaŭlte por ĉiuj kreataj de vi afiŝoj
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "La afiŝo al kiu vi respondas estis markita kiel tajpita en {suggestedLanguageName} de ĝia aŭtoro. Ĉu vi volas respondi en <0>{suggestedLanguageName}0>?"
@@ -11057,9 +11314,9 @@ msgstr "La afiŝo al kiu vi respondas estis markita kiel tajpita en {suggestedLa
msgid "The Privacy Policy has been moved to <0/>"
msgstr "La regularo pri privateco translokiĝis al <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "Estas neniu invitligilo por ĉi tiu grupa babilejo."
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "Estis problemo ŝargante GIF-ojn. Kontrolu vian konekton kaj reprovu."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "Estis problemo kun via interreta konekto, bonvolu reprovi denove"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "Estis problemo kun via interreta konekto, bonvolu reprovi denove"
msgid "There was an issue contacting the server"
msgstr "Estis problemo konektante servilon"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Estis problemo konektante servilon, bonvolu kontroli vian interretan konekton kaj reprovu."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Estis problemo ŝargante sciigojn. Tuŝetu ĉi tie por reprovi."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Estis problemo ŝargante afiŝojn. Tuŝeti ĉi tie por reprovi."
@@ -11161,7 +11420,7 @@ msgstr "Problemo okazis dum ŝarĝi infomojn de via servo"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Estis problemo forigante ĉi tiun fluon. Bonvolu kontroli vian interretan konekton kaj reprovu."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Ĉi tiu apelacio estos sendota al <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Ĉi tiu apelacio estos sendota al la kontrolservo de Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Ĉi tiu apelacio estos sendota al la kontrolservo de Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr "Ĉi tiu babilejo estas finiĝinta"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "Ĉi tiu babilejo estas ŝlosita"
@@ -11310,7 +11574,11 @@ msgstr "Ĉi tiu enhavo ne disponeblas pro ke unu el la koncernataj uzantoj bloki
msgid "This content is not viewable without a Bluesky account."
msgstr "Ĉi tiu enhavo ne estas videbla sen Bluesky-konto."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Ĉi tiu konversacio estas kun forigita aŭ malaktivigita konto. Premu po
msgid "This draft will be permanently deleted."
msgstr "Ĉi tiu malneto estos porĉiame forigota."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Ĉi tiu retpoŝtadreso jam estas ligita al via konto."
@@ -11360,7 +11628,7 @@ msgstr "Ĉi tiu fluo ne plu estas enreta. Anstataŭe ni montras <0>Discover0>.
msgid "This handle is reserved. Please try a different one."
msgstr "Tiu identigilo estas rezervita. Bonvolu provi alian."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr "Ĉi tiuj informoj estas privataj kaj ne montrataj al aliaj uzantoj."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr "Ĉi tio ne estas valida ligilo"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr "Nomo aŭ priskribo de ĉi tiu listo – kreita de vi – enhavas eble ma
msgid "This list is empty."
msgstr "Ĉi tiu listo malplenas."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "La aŭtoro de ĉi tiu afiŝo malŝaltis citafiŝojn."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Ĉi tiu respondo estos ordigota en kaŝitan sekcion ĉe la subo de via fadeno kaj silentigos sciigojn pri sekvontaj respondoj - ambaŭ por vi kaj aliuloj."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "Ĉi tiu ekrano disponeblas nur por grupaj konversacioj."
@@ -11494,7 +11775,7 @@ msgstr "Ĉi tiu uzanto ne havas montratan nomon, kaj tial ne povas esti konfirmi
msgid "This user doesn't have any followers."
msgstr "Ĉi tiu uzanto havas neniun sekvanton."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Ĉi tiu uzanto blokis vin. Vi ne povas vidi ties enhavon."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Fadenaj preferoj"
msgid "Threaded"
msgstr "Fadene"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Agordoj pri fadenoj"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Por malŝalti la retpoŝtan 2FA-metodon, bonvolu konfirmi vian atingon al la retpoŝtadreso."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Por malŝalti vian retpoŝtan 2FA-metodon, bonvolu konfirmi vian atingon al <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Plej popularaj"
msgid "Top replies first"
msgstr "La plej popularaj respondoj unue"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Temo"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Popularaj videaĵoj"
msgid "Trolling"
msgstr "Trolado"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "Fido aperas per interrilatoj, komunumoj kaj komunaj kuntekstoj, do ni ankaŭ estigis <0>fidataj konfirmantoj0>: organizoj kiuj povas rekte fari konfirmadon."
@@ -11763,11 +12044,15 @@ msgstr "Ne eblas kontakti vian servon. Bonvolu kontroli vian interretan konekton
msgid "Unable to delete"
msgstr "Ne eblas forigi"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr "Nedisponebla"
msgid "Unavailable feed information"
msgstr "Nedisponeblaj informoj pri fluo"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Malbloki liston"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Malfari"
@@ -11872,7 +12157,7 @@ msgstr "Ne sekvi konton"
msgid "Unfollows the user"
msgstr "Ĉesas sekvi la uzanton"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Bedaŭrinde, neniu el viaj abonitaj etikediloj subtenas ĉi tiun tipon de raporto."
@@ -11904,13 +12189,13 @@ msgstr "Neetikedita poradolta enhavo"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Ne plu ŝati ({0, plural, one {# ŝato} other {# ŝatoj}})"
@@ -11918,7 +12203,7 @@ msgstr "Ne plu ŝati ({0, plural, one {# ŝato} other {# ŝatoj}})"
msgid "Unlock chat"
msgstr "Malŝlosi babilejon"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr "Malbloki ĉi tiun grupan babilejon"
@@ -11955,7 +12240,7 @@ msgstr "Malsilentigi konversacion"
msgid "Unmute list"
msgstr "Malsilentigi liston"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "Malsilentigi ĉi tiun grupan babilejon"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Depingli"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Depingli fluon"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Depingli de la hejmpaĝo"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Depingli kontrol-liston"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} depinglita de Hejmo"
@@ -12030,11 +12315,11 @@ msgstr "Malaboni de ĉi tiu etikedilo"
msgid "Unsubscribed from list"
msgstr "Malabonita de listo"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "Nesubtenata tonduja enhavo"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Nesubtenata videaĵa tipo: {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "Ĝisdatigi"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Ĝisdatigi <0>{displayName}0> en listoj"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Ĝisdatigi retpoŝtadreson"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Aktualigi invitligilon"
@@ -12065,11 +12354,19 @@ msgstr "Aktualigi invitligilon"
msgid "Update to {domain}"
msgstr "Ŝanĝi al {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "Ĝisdatigi vian apon al la plej lasta versio por aliĝi!"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Ĝisdatigi vian retpoŝtadreson"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Ĝisdatigado de responda videbleco malsukcesis"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Alŝuti foton anstataŭe"
@@ -12098,39 +12395,40 @@ msgstr "Alŝuti foton anstataŭe"
msgid "Upload a text file to:"
msgstr "Alŝuti tekstodosieron al:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Alŝuti el la fotilo"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Alŝuti el la dosieroj"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Alŝuti el la biblioteko"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "Alŝutado de GIF..."
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Alŝutado de bildoj..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Alŝutado de ligila miniaturo..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Alŝutado de videaĵo..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "uzanto"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Uzanto blokita"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Listo de uzantoj de {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "Listo de uzantoj de {0}"
@@ -12255,15 +12553,15 @@ msgstr "uzantoj sekvataj de <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "uzantoj sekvantaj <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
-msgstr ""
+msgstr "Uzantoj, kiujn mi sekvas"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
-msgstr ""
+msgstr "Uzantoj, kiujn mi sekvas"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:451
msgid "Value:"
@@ -12277,7 +12575,7 @@ msgstr "Konfirmado malsukcesis, bonvolu reprovi."
msgid "Verification settings"
msgstr "Konfirmadaj agordoj"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Konfirmadaj agordoj"
@@ -12304,8 +12602,8 @@ msgstr "Konfirmi denove"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Konfirmi kodon"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Kontrolu DNS-rikordon"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Konfirmi retmesaĝan kodon"
@@ -12349,7 +12647,7 @@ msgstr "Ĉu konfirmi ĉi tiun konton?"
msgid "Verify your age"
msgstr "Konfirmi vian aĝon"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Versio {0}"
msgid "Video"
msgstr "Videaĵo"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Pritraktado de videaĵo fiaskis"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Videaĵo-fluo"
@@ -12419,7 +12717,7 @@ msgstr "Videaĵo netrovita."
msgid "Video settings"
msgstr "Agordoj pri videaĵoj"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Videaĵo alŝutita"
@@ -12432,18 +12730,18 @@ msgstr "Videaĵo: {0}"
msgid "Videos"
msgstr "Videaĵoj"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
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:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Vidi"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Vidi la profilbildon de {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Vidi la profilon de {0}"
msgid "View {0}’s profile"
msgstr "Vidi profilon de {0}"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "Vidi profilon de {displayName}"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Vidi detalojn"
msgid "View full thread"
msgstr "Vidi tutan fadenon"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr "Vidi alvenintajn petojn al grupaj babilejoj"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Vidu informojn pri ĉi tiuj etikedoj"
@@ -12522,7 +12828,7 @@ msgstr "Vidi pli"
msgid "View more trending videos"
msgstr "Vidi pli da furoraj videaĵoj"
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Vidi afiŝon"
@@ -12539,10 +12845,10 @@ msgstr "Vidi profilon"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Vidi la profilbildon"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "Vidi la invitligilon por ĉi tiu grupa babilejo"
@@ -12563,7 +12869,7 @@ msgstr "Vidi la etikedadan servon provizitan de @{0}"
msgid "View this user's verifications"
msgstr "Vidi konfirmojn de ĉi tiu uzanto"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Vidi uzantojn, kiuj ŝatis ĉi tiun fluon"
@@ -12596,8 +12902,8 @@ msgstr "Vidi viajn silentigitajn kontojn"
msgid "View your verifications"
msgstr "Vidi viajn konfirmojn"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Montras la tutan bildon"
@@ -12640,8 +12946,8 @@ msgstr "Averti pri enhavo"
msgid "Warn content and filter from feeds"
msgstr "Averti pri enhavo kaj elfiltri el fluoj"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Spekti nun"
@@ -12665,10 +12971,14 @@ msgstr "Ni ne povis trovi rezultojn por tiu kradvorto."
msgid "We couldn't find any results for that topic."
msgstr "Ni ne povis trovi rezultojn por tiu temo."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Ni ne povis ŝargi ĉi tiun konversacion"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "Ni ne povis ŝargi agordojn de ĉi tiu konversacio"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Ni rekomendas al vi elekti almenaŭ du interesojn."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Ni sendis retmesaĝon al <0>{0}0> enhavatan ligilon. Bonvolu alklaki ĝin por plenumi la procezon de retpoŝtadresa konfirmado."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Ni ne povis determini ĉu vi rajtas alŝuti videaĵojn. Bonvolu provi denove."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "Ni sciigos vin, kiam ni trovos viajn amikojn."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Ni sendos retmesaĝon al <0>{0}0> enhavatan ligilon. Bonvolu alklaki ĝin por plenumi la procezon de retpoŝtadresa konfirmado."
@@ -12779,12 +13089,12 @@ msgstr "Ni havas problemojn pravalorizante la procezon de garantio pri aĝo por
msgid "We're having network issues, try again"
msgstr "Ni havas retajn problemojn, provu denove"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "Ni havas retajn problemojn, provu denove"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Ni prezentas novan tavolon de konfirmado ĉe Bluesky — facile videbla kontrolmarko."
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Kiel vi volas nomi vian startpakon?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Kio okazas?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Kiam vi tuŝetos markon, vi vidos kiuj organizoj donis konfirmon."
@@ -12878,7 +13188,7 @@ msgstr "Kiam vi tuŝetos markon, vi vidos kiuj organizoj donis konfirmon."
msgid "Who can interact with this post?"
msgstr "Kiu povas interagi kun ĉi tiu afiŝo?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "Kiu povas aliĝi al ĉi tiu grupa babilejo kaj kiel"
@@ -12887,13 +13197,13 @@ msgstr "Kiu povas aliĝi al ĉi tiu grupa babilejo kaj kiel"
msgid "Who can reply"
msgstr "Kiu povas respondi"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Kiu povas konfirmi?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Ups!"
@@ -12939,7 +13249,7 @@ msgstr "Kial ĉi tiu startpako estu reviziita?"
msgid "Why should this user be reviewed?"
msgstr "Kial ĉi tiu uzanto estu reviziita?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
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?"
@@ -12951,7 +13261,7 @@ msgstr ""
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:1320
+#: src/view/com/composer/Composer.tsx:1373
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?"
@@ -12960,12 +13270,12 @@ msgstr "Ĉu vi volas konservi ĉi tion kiel malneto por redakti ĝin poste?"
msgid "Write a post"
msgstr "Tajpu afiŝon"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Tajpu afiŝon"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Tajpu vian respondon"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Malĝusta DID sendita de servilo. Ricevita: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "Neĝusta speco de konversacio"
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr "Vi tujelsendas"
msgid "You are no longer live"
msgstr "Vi ne plu tujelsendas"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Vi ne rajtas alŝuti videaĵojn."
@@ -13117,12 +13428,12 @@ msgstr "Vi ĉiam povas supozi permeson kaj forigi viajn datumojn"
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Vi povas elekti ĉu sciigoj havas sonon en la babilejaj agordoj ene de la apo"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Vi povas daŭrigi daŭrantajn konversaciojn sendepende de la agordo kiun vi elektos."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Vi nun povas elekti ricevi sciigojn kiam specifaj homoj afiŝos. Se estas iu pri kiu vi volas akuratajn ĝisdatigojn, iru al ties profilo kaj trovu la novan sonorilan piktogramon apud la sekvi-butono."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "Vi povas konservi malnetojn maksimume nur 1000 signojn longajn."
@@ -13139,11 +13455,11 @@ msgstr "Vi povas konservi malnetojn maksimume nur 1000 signojn longajn."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "Vi povas konservi malnetojn maksimume nur 1000 signojn longajn. Ĉu vi volas forĵeti ĉi tiun afiŝon antaŭ ol vidi viajn malnetojn?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
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:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Vi povas elekti nur unu videaĵon samtempe."
@@ -13155,10 +13471,10 @@ msgstr "Vi povas reaktivigi vian konton por daŭrigi ensaluton. Via profilo kaj
msgid "You can read chat history but can’t send new messages."
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: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."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr ""
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,7 +13482,7 @@ msgstr "Vi povas elekti ĝis {MAX_IMAGES, plural, other {# bildojn}} entute."
msgid "You can update this later from your settings."
msgstr "Vi povas ĝisdatigi ĉi tion poste en viaj agordoj."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "Vi havas neniun konservitan fluon."
msgid "You got here first"
msgstr "Vi alvenis ĉi tien unue"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
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?"
@@ -13336,7 +13656,7 @@ msgstr "Vi devas sekvi almenaŭ sep aliajn homojn por generi startpakon."
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "Vi devas permesi aliron al via aŭdvida biblioteko."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Vi volu nun relanĉi la apon."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Vi reagis per {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "Vi lastatempe ŝanĝis vian naskiĝdaton"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Vi elsalutos el ĉiuj viaj kontoj."
@@ -13390,7 +13710,7 @@ msgstr "Vi nun ricevos sciigojn pri ĉi tiu fadeno"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Retmesaĝe vi ricevos \"restarigan kodon\". Enigu tiun kodon ĉi tien, poste entajpu vian novan pasvorton."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "Vi ne povos aliĝi ree, krom se vi estos invitota."
@@ -13463,7 +13783,7 @@ msgstr "Vi atingis la finon de la aktiva enhavo."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Vi atingis la finon de via fluo! Trovu pliajn kontojn por sekvi."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "Vi atingis la maksimuman nombron da malnetoj"
@@ -13475,11 +13795,11 @@ msgstr "Vi atingis la maksimuman nombron da permesitaj petoj. Bonvolu reprovi po
msgid "You've reached the start of the active content."
msgstr "Vi atingis la komencon de la aktiva enhavo."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Vi atingis vian tagan limon por videaĵ-alŝutoj (tro da bajtoj)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr "Via konto estis forigita, ĝis! ✌️"
msgid "Your account has been suspended"
msgstr "Via konto estis suspendita"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Via konto ne estas sufiĉe malnova por alŝuti videaĵojn. Bonvolu reprovi poste."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Via konta deponejo enhavanta ĉiujn publikajn datum-rikordojn estas elŝutebla kiel \"CAR\"-dosiero. Tiu dosiero ne enhavas aŭdvidaĵajn enkorpigaĵojn kiel bildoj aŭ viaj privataj datumoj kiuj devas esti elŝutotaj aparte."
@@ -13519,7 +13847,7 @@ msgstr "Via apelacio estas sendita. Se via apelacio sukcesos, vi ricevos retmesa
msgid "Your birth date"
msgstr "Via naskiĝdato"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Viaj babilejoj estis malŝaltitaj"
@@ -13561,7 +13889,7 @@ msgstr "Via retpoŝtadreso"
msgid "Your email appears to be invalid."
msgstr "Via retpoŝtadreso ŝajnas esti nevalida."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Via retpoŝtadreso ankoraŭ ne estas konfirmita. Bonvolu konfirmi vian retpoŝtadreson por ĝui ĉiujn funkciojn de Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "Via fluo de sekvatoj estas malplena! Eksekvu pli da homoj por ekscii, ki
msgid "Your full handle will be <0>@{0}0>"
msgstr "Via tuta identigilo estos <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "Via loko estis ĝisdatigita."
msgid "Your muted words"
msgstr "Viaj silentigitaj vortoj"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "Via nomo, profilbildo kaj la nomo de la grupa babilejo videblos al ĉiuj."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "Via afiŝo estis sendita"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "Viaj afiŝoj estis senditaj"
@@ -13635,7 +13963,7 @@ msgstr "Viaj afiŝoj estis senditaj"
msgid "Your preferred language"
msgstr "Via preferata lingvo"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "Via profilbildo"
@@ -13648,12 +13976,12 @@ msgstr "Via profilbildo ĉirkaŭita per samcentraj cirkloj de profilbildoj de al
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Via respondo estis sendita"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Via raporto estos sendota al <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "Via raporto estos sendota al <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Viaj elektitaj interesoj helpas nin havigi al vi enhavon, kiu gravas al vi."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "Via fadeno havas malplenajn afiŝojn, kiuj estos preterlasitaj. La restantaj afiŝoj estos publikigitaj kiel fadeno."
diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po
index ffde01d494..9b76c70385 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minuto} other {# minutos}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# mes} other {# meses}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# segundo} other {# segundos}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# elemento sin leer} other {# elementos sin leer}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr "{0} de 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} reaccionó con {1}"
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0} min."
msgid "{0}s"
msgstr "{0} s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# elemento sin leer} other {# elementos sin leer}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} te verificó"
msgid "{following} following"
msgstr "{following} siguiendo"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "No se puede enviar un mensaje a {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# hora {minutesString}} other {# horas {minutesStri
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# hora} other {# horas}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# notificacion no leída} other {# notificaciones no leídas}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Una nueva forma de verificar"
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr "Aceptar"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Aceptar"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Aceptar la solicitud de chat"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Aceptar la solicitud"
@@ -860,17 +935,26 @@ msgstr "Aceptar la solicitud"
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Accesibilidad"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Ajustes de accesibilidad"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Cuenta no silenciada"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Las cuentas con una marca de verificación ondeada <0><1/>0> pueden verificar a otras. Bluesky se encarga de seleccionar a estas cuentas de confianza."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Actividad de otras personas"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Notificaciones de actividad"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Añadir"
@@ -999,8 +1079,8 @@ msgstr "Añadir una cuenta"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Añadir un texto alternativo (opcional)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Añadir otra cuenta"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Añadir otra publicación"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr "Añadir contraseña de app"
msgid "Add App Password"
msgstr "Añadir contraseña de app"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr "Añadir reacción con emoji"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Añadir más detalles (opcional)"
@@ -1080,8 +1160,8 @@ msgstr "Añadir palabra silenciada con los ajustes seleccionados"
msgid "Add muted words and tags"
msgstr "Añadir palabras silenciadas y etiquetas"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr "Detalles adicionales (máximo 1000 caracteres)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Detalles adicionales (máximo 300 caracteres)"
@@ -1228,12 +1308,12 @@ msgstr "Solicitud de verificación de edad enviada"
msgid "Age assurance only takes a few minutes"
msgstr "La verificación de edad tarda unos pocos minutos"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@ejemplo.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Todas"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Permitir el acceso a tus mensajes directos"
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Ya has iniciado sesión como @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Texto alternativo"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "El texto alternativo permite describir las imágenes para los usuarios ciegos o con problemas de visión. Además, ayuda a dar más contexto para todas las personas."
@@ -1387,7 +1467,7 @@ msgstr "Se ha producido un error"
msgid "An error occurred"
msgstr "Se produjo un error"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Se produjo un error al comprimir el video."
@@ -1432,11 +1512,11 @@ msgstr "Error al guardar el código QR."
msgid "An error occurred while trying to follow all"
msgstr "Se produjo un error mientras intentabas seguir a todos"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Una ilustración que muestra que Bluesky selecciona a verificadores de confianza, los cuales verifican las cuentas de usuarios individuales."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Un problema no presente en estas opciones"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Se produjo un problema mientras intentaba abrir el chat"
msgid "An issue occurred, please try again."
msgstr "Ocurrió un problema. Inténtalo de nuevo."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Una simulación de un iPhone mostrando la aplicación de Bluesky abierta con el perfil de un usuario verificado con una marca de verificación junto a su nombre para mostrar."
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr "Cualquier persona que me siga"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "El nombre de la contraseña de app debe tener al menos cuatro caracteres
msgid "App passwords"
msgstr "Contraseñas de app"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Contraseñas de app"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Apelación enviada"
@@ -1632,14 +1716,14 @@ msgstr "Apelar la suspensión"
msgid "Appeal Suspension"
msgstr "Apelar la suspensión"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Apelar esta decisión"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "¿Seguro que quieres eliminar la contraseña de app \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ msgstr "¿Quieres eliminar este paquete de inicio?"
msgid "Are you sure you want to discard your changes?"
msgstr "¿Quieres descartar tus cambios?"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr "¿Quieres salir de esta conversación?"
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "¿Quieres descartar esta publicación?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Reproducir videos y GIFs automáticamente"
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr "Atrás"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Volver a los chats"
@@ -1840,12 +1926,12 @@ msgstr "Para aceptar esta solicitud de chat, debes verificar tu correo electrón
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Para contactar a otro usuario, debes verificar tu correo electrónico."
@@ -1877,7 +1963,7 @@ msgstr "Cumpleaños"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Bloquear cuenta"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "¿Bloquear cuenta?"
msgid "Block accounts"
msgstr "Bloquear cuentas"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "¿Bloquear estas cuentas?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Bloquear usuario"
@@ -1946,9 +2032,9 @@ msgstr "Bloquear usuario"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Bloquear usuario"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Bloqueado"
@@ -1964,13 +2050,13 @@ msgstr "Bloqueado"
msgid "Blocked accounts"
msgstr "Cuentas bloqueadas"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Cuentas bloqueadas"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte ni interactuar contigo de ninguna manera."
@@ -2029,7 +2115,7 @@ msgstr "¡Bluesky es mejor con amigos!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky elegirá un conjunto de cuentas recomendadas de personas en su r
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 "Bluesky no mostrará tu perfil o posts a usuarios que no hayan iniciado sesión. Es posible que otras apps no respeten esta solicitud. Esto no hace que tu cuenta sea privada."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky verificará proactivamente cuentas destacadas y auténticas."
@@ -2137,23 +2223,30 @@ msgstr "Negocios"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Por {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Por <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Al crear una cuenta, aceptas los <0>Términos de servicio0>."
msgid "By you"
msgstr "Tuyos"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Cámara"
@@ -2192,8 +2285,8 @@ msgstr "Cámara"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Cámara"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Cámara"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Cancelar"
@@ -2248,9 +2341,9 @@ msgstr "Cancelar la reactivación y cerrar la sesión"
msgid "Cancel search"
msgstr "Cancelar búsqueda"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "No se puede interactuar con un usuario bloqueado"
@@ -2264,7 +2357,7 @@ msgstr "Subtítulos (.vtt)"
msgid "Captions & alt text"
msgstr "Subtítulos y texto alternativo"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr "Cambiar el idioma de la aplicación"
msgid "Change Handle"
msgstr "Cambiar nombre de usuario"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Cambiar el servicio de moderación"
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Cambiar la razón de la denuncia"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Chat"
@@ -2361,6 +2454,13 @@ msgstr "Chat eliminado"
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Chat silenciado"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Bandeja de solicitudes de chat"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Solicitudes de chat"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Ajustes de chat"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Configuración de chat"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Chat no silenciado"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Chats"
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "Elige este color como tu avatar"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr "clic aquí"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Haz clic aquí para reiniciar el proceso de verificación."
@@ -2567,11 +2667,11 @@ msgstr "Haz clic aquí para reiniciar el proceso de verificación."
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Haz clic aquí para actualizar tu correo electrónico"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Clic para reintentar mensaje fallido"
@@ -2594,28 +2694,30 @@ msgstr "Clic para reintentar mensaje fallido"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Clic para reintentar mensaje fallido"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Cerrar diálogo activo"
msgid "Close alert"
msgstr "Cerrar la alerta"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Cerrar el cajón inferior"
@@ -2657,8 +2763,9 @@ msgstr "Cerrar el cajón inferior"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Cerrar ventana"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Cerrar la imagen"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr "Cerrar el menú"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Cierra este diálogo"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Cierra la alerta de actualización de contraseña"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Cierra la ventana de redacción y descarta el borrador"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Cómics"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Directrices de la comunidad"
@@ -2740,12 +2855,12 @@ msgstr "Completa el desafío"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Escribir nueva publicación"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Escribir publicaciones de hasta {0, plural, other {# caracteres}}"
@@ -2753,11 +2868,11 @@ msgstr "Escribir publicaciones de hasta {0, plural, other {# caracteres}}"
msgid "Compose reply"
msgstr "Escribir la respuesta"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Comprimiendo video..."
@@ -2780,7 +2895,7 @@ msgstr "Configurado en <0>ajustes de moderación0>."
msgid "Confirm"
msgstr "Confirmar"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Contenido y medios"
msgid "Content and media"
msgstr "Contenido y medios"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Contenido y medios"
@@ -2889,7 +3004,7 @@ msgstr "Fondo del menú contextual, haga clic para cerrar el menú."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "Continuar hilo..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Continuar al siguiente paso"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Conversación eliminada"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversación eliminada"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Versión de compilación copiada al portapapeles"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Copiar DID"
msgid "Copy host"
msgstr "Copiar host"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Copiar el enlace al perfil"
msgid "Copy link to starter pack"
msgstr "Copiar el enlace al paquete de inicio"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Copiar el texto del mensaje"
@@ -3052,7 +3175,7 @@ msgstr "Copiar valor del registro TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Política de derechos de autor"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "No se pudo salir de este chat"
@@ -3094,6 +3217,10 @@ msgstr "No se pudo salir de este chat"
msgid "Could not load feed"
msgstr "No se pudo cargar este feed"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Crear"
@@ -3159,7 +3286,7 @@ msgstr "Crear un código QR para paquete de inicio"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Crea un paquete de inicio"
@@ -3174,13 +3301,14 @@ msgstr "Crea un paquete de inicio para mí"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Crea una cuenta"
msgid "Create an account without using this starter pack"
msgstr "Crear una cuenta sin usar este paquete de inicio"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Crea un avatar"
@@ -3206,7 +3334,7 @@ msgstr "Crea un avatar"
msgid "Create another"
msgstr "Crea otro"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Crear una cuenta nueva"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Crea un reporte de {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Creada {0}"
@@ -3341,7 +3470,7 @@ msgstr "Por Defecto"
msgid "Default icons"
msgstr "Iconos por defecto"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Borrar registro de declaración de chat"
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Eliminar la conversación"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Borrar para mi"
@@ -3399,11 +3528,11 @@ msgstr "Borrar para mi"
msgid "Delete list"
msgstr "Borrar la lista"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Borrar mensaje"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Borrar mensaje para mi"
@@ -3413,7 +3542,7 @@ msgstr "Eliminar mi cuenta"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Borrar la publicación"
@@ -3434,12 +3563,12 @@ msgstr "¿Borrar esta lista?"
msgid "Delete this post?"
msgstr "¿Borrar esta publicación?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Eliminado"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Cuenta eliminada"
@@ -3507,13 +3636,13 @@ msgstr "Ajustar quién puede interactuar con esta publicación"
msgid "Dim"
msgstr "Tenue"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Desactivar la autenticación de doble factor"
@@ -3521,7 +3650,7 @@ msgstr "Desactivar la autenticación de doble factor"
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Desactivar la autenticación de doble factor por correo electrónico"
@@ -3534,8 +3663,8 @@ msgstr "Desactivar la autenticación de doble factor por correo electrónico"
msgid "Disable haptic feedback"
msgstr "Desactivar la retroalimentación háptica"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Deshabilitado"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Descartar"
msgid "Discard changes?"
msgstr "¿Descartar cambios?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "¿Descartar borrador?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "¿Descartar publicación?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Descubrir nuevos feeds"
msgid "Dismiss"
msgstr "Descartar"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Descartar error"
@@ -3673,7 +3802,7 @@ msgstr "No incluye desnudez."
msgid "Domain verified!"
msgstr "¡Dominio verificado!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "¿No tienes código o necesitas uno nuevo? <0>Haz clic aquí.0>"
@@ -3681,7 +3810,7 @@ msgstr "¿No tienes código o necesitas uno nuevo? <0>Haz clic aquí.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "¿No has recibido un correo electrónico? <0>Haz clic aquí para reenviarlo.0>"
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Listo"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Toca dos veces o presiona durante un instante el mensaje para añadir una reacción"
@@ -3741,15 +3873,6 @@ msgstr "Pulsa dos veces para indicar que te gusta"
msgid "Download Bluesky"
msgstr "Descargar Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Descargar archivo CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Descargar archivo CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Editar"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Editar avatar"
@@ -3847,14 +3978,14 @@ msgstr "Editar avatar"
msgid "Edit Feeds"
msgstr "Editar Feeds"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Editar la imagen"
@@ -3868,7 +3999,16 @@ msgstr "Editar ajustes de interacción"
msgid "Edit interests"
msgstr "Modificar los intereses"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr "Editar el estado del directo"
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Editar mis feeds"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Editar las personas"
@@ -3925,7 +4060,7 @@ msgstr "Editar el perfil"
msgid "Edit starter pack"
msgstr "Editar paquete de inicio"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "Editar quién puede responder"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Edita tu paquete de inicio"
@@ -3971,7 +4106,7 @@ msgstr "Dirección de correo electrónico"
msgid "Email Resent"
msgstr "Correo electrónico reenviado"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "Correo electrónico enviado"
@@ -4006,8 +4141,8 @@ msgstr "Incrusta esta publicación en tu sitio web. Simplemente copia el siguien
msgid "Embedded video player"
msgstr "Reproductor de video incrustado"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Activar"
@@ -4025,7 +4160,7 @@ msgstr "Mostrar contenido para adultos"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Activar la autenticación de doble factor por correo electrónico"
@@ -4038,13 +4173,12 @@ msgstr "Activar medios externos"
msgid "Enable media players for"
msgstr "Reproducir multimedia de"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr "Ingresa una contraseña"
msgid "Enter a word or tag"
msgstr "Ingresa una palabra o etiqueta"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Ingresa el código"
@@ -4143,7 +4277,7 @@ msgstr "Entra en pantalla completa"
msgid "Entertainment"
msgstr "Ocio"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Error"
@@ -4185,23 +4319,23 @@ msgstr "Todos pueden responder"
msgid "Everybody can reply to this post."
msgstr "Todos pueden responder a esta publicación."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Todos"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Todos"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Todos"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "Excluye a los usuarios que sigues"
msgid "Exit fullscreen"
msgstr "Salir de pantalla completa"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Expandir el texto alternativo"
@@ -4226,7 +4360,7 @@ msgstr "Expandir el texto alternativo"
msgid "Expand list of users"
msgstr "Expandir lista de usuarios"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Expandir o colapsar la publicación completa a la que estás respondiendo"
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr "Amplía o reduce el texto de la publicación"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Se esperaba que el uri resolviera a un registro"
@@ -4277,9 +4411,9 @@ msgstr "Medios explícitos o potencialmente perturbadores."
msgid "Explicit sexual images."
msgstr "Imágenes sexuales explícitas."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Explorar"
@@ -4289,11 +4423,8 @@ msgstr "Explorar"
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,7 @@ msgstr "Medios externos"
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 "Es posible que medios externos permitan que otros sitios recopilen datos sobre ti y tu dispositivo. No se envía o solicita información hasta que presionas el botón de reproducir."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Preferencias sobre Medios Externos"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Error al aceptar el chat"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Error al añadir una reacción de emoji"
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "Error al cambiar nombre de usuario. Por favor vuelve a intentarlo."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "Error al crear contraseña de app. Vuelve a intentarlo."
msgid "Failed to create conversation"
msgstr "Error al crear la conversación"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Error al eliminar el chat"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Error al eliminar el mensaje"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Error al cargar las conversaciones"
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "Error al cargar las preferencias de feeds"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "Error al cargar los feeds sugeridos"
msgid "Failed to load suggested follows"
msgstr "Error al cargar las sugerencias de seguimiento"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Error al marcar todas las solicitudes como leídas"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Error al fijar la publicación"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Error al eliminar una reacción de emoji"
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr "Error al eliminar la verificación"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Error al guardar tus intereses."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Error al enviar el correo electrónico, vuelve a intentarlo."
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Error al enviar la apelación. Por favor, inténtalo de nuevo."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Error al cambiar el estado de silencio del hilo, vuelve a intentarlo"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Error al actualizar los ajustes de autenticación de doble factor por correo electrónico"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Error al actualizar el correo electrónico, vuelve a intentarlo."
@@ -4614,7 +4751,7 @@ msgstr "Error al actualizar los feeds"
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Error al actualizar los ajustes"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Feed"
@@ -4649,7 +4786,7 @@ msgstr "Feed"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Feed por {0}"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Menú de feed"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Feeds"
@@ -4739,7 +4876,7 @@ msgstr "Filtrar la búsqueda por idioma (actualmente: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Filtrar quién puede recibir notificaciones de tu actividad"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "Finalizando"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Buscar cuentas para seguir"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr "Buscar a gente para seguir"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Buscar publicaciones, usuarios y feeds en Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "Seguido por <0>{0}0> y <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Seguido por <0>{0}0>, <1>{1}1>, y {2, plural, one {# más} other {# más}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Seguidores de @{0} que conoces"
@@ -4995,19 +5136,16 @@ msgstr "Siguiendo {handle}"
msgid "Following feed preferences"
msgstr "Preferencias del feed de cuentas que sigues"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Preferencias del feed de cuentas que sigues"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Te sigue"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Te sigue"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Fuente"
@@ -5069,7 +5207,7 @@ msgstr "¿La olvidaste?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr "De <0/>"
msgid "Generate a starter pack"
msgstr "Genera un paquete de inicio"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "Obtiene ayuda"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Recibe una notificación cuando alguien responda a tus mensajes."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Recibe una notificación cuando alguien republique publicaciones que hayas republicado."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Recibe una notificación cuando alguien responda a tus publicaciones."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr ""
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Recibe una notificación de nuevas publicaciones"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Recibe notificaciones de mensajes y respuestas de cuentas que elijas."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Recibe una notificación cuando {name} publique"
@@ -5174,27 +5316,27 @@ msgstr "Recibe notificaciones de la actividad de esta cuenta"
msgid "Get notified when {name} posts"
msgstr "Recibe una notificación cuando {name} publique"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Comenzar"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Ponle cara a tu perfil"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Volver"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Volver"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Volver al paso anterior"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Ir al inicio"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Ir al inicio"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Ir al inicio"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Ir a la conversación con {0}"
@@ -5299,12 +5440,12 @@ msgstr "Ir al siguiente"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Ir al perfil"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Nombre de usuario demasiado largo. Intente con uno más corto."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Etiqueta"
@@ -5458,8 +5615,8 @@ msgstr "Etiqueta {tag}"
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "¿Tienes un código? <0>Haz clic aquí.0>"
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Ayuda"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Sube una foto o crea un avatar para que la gente sepa que no eres un bot."
@@ -5652,18 +5809,18 @@ msgstr "Hmmmm, parece que estamos teniendo problemas para cargar estos datos. Co
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmmm, no conseguimos cargar ese servicio de moderación."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "¡Espera! Estamos dando acceso a videos gradualmente, y aún estás en la lista de espera. ¡Vuelve a consultar pronto!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Inicio"
@@ -5721,7 +5878,7 @@ msgstr "Lo entiendo"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
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."
@@ -5757,7 +5914,7 @@ msgstr "Si eliminas esta lista, no podrás recuperarla."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Si tienes tu propio dominio, puedes usarlo como tu nombre de usuario. Este permite auto-verificar tu identidad. <0>obtén más información0>."
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Si necesitas actualizar tu correo electrónico, <0>haz clic aquí0>."
@@ -5765,7 +5922,7 @@ msgstr "Si necesitas actualizar tu correo electrónico, <0>haz clic aquí0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Si eliminas esta publicación, no podrás recuperarla."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5773,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Si deseas cambiar tu contraseña, te enviaremos un código para verificar que esta es tu cuenta."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr "Si eres desarrollador/a, puedes alojar tu propio servidor."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Imagen"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Caché de imágenes limpiado, {0} liberado"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "La bandeja de entrada está vacía"
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Código de confirmación de autenticación de doble factor no válido."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Nombre de usuario inválido. Por favor intenta uno diferente."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "El tema de la denuncia no es válido"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Código de Verificación no válido"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "¡Solo estás tú por ahora! Agrega más personas a tu paquete de inicio buscando arriba."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "Tarea ID: {0}"
@@ -6083,6 +6257,11 @@ msgstr "Tarea ID: {0}"
msgid "Jobs"
msgstr "Tareas"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Tareas"
msgid "Join Bluesky"
msgstr "Únete a Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Únete a la conversación"
msgid "Journalism"
msgstr "Periodismo"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "Etiquetas en tu cuenta"
msgid "Labels on your content"
msgstr "Etiquetas en tu contenido"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Ajustes de Idiomas"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Último"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Más información sobre esta advertencia"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Más información sobre qué es público en Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "Aprender más."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Dejar"
@@ -6276,7 +6464,7 @@ msgstr "Dejar chat"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Dejar conversación"
@@ -6284,13 +6472,13 @@ msgstr "Dejar conversación"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Dejar conversación"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Claro"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Like ({0, plural, one {# me gusta} other {# me gusta}})"
@@ -6346,11 +6534,7 @@ msgstr "Dale \"me gusta\" a 10 publicaciones"
msgid "Like 10 posts to train the Discover feed"
msgstr "Dale \"me gusta\" a 10 publicaciones para entrenar el feed de Descubrimiento."
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Dar \"me gusta\" a este feed"
@@ -6358,8 +6542,8 @@ msgstr "Dar \"me gusta\" a este feed"
msgid "Like this labeler"
msgstr "Dar \"me gusta\" a este etiquetador"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Le gusta a"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Le gusta a {0, plural, one {# usuario} other {# usuarios}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Le gusta a {likeCount, plural, one {# usuario} other {# usuarios}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Me gusta"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "\"Me gusta\" en esta publicación"
@@ -6409,11 +6589,11 @@ msgstr "\"Me gusta\" en esta publicación"
msgid "Linear"
msgstr "Lineal"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Lista"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "La lista ya no está silenciada"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listas"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Cargando..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Registro"
@@ -6662,7 +6842,7 @@ msgstr "Parece que te falta un feed de cuentas que sigues. <0>Haz clic aquí par
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr "Gestionar los ajustes de verificación"
msgid "Manage your muted words and tags"
msgstr "Gestiona tus palabras y etiquetas silenciadas"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Marcar todo como leído"
@@ -6698,13 +6877,12 @@ msgstr "Marcar todo como leído"
msgid "Mark as read"
msgstr "Marcar como leído"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Se ha marcado todo como leído"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "En otro momento"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Medios que pueden ser perturbadores o inapropiados para algunos públicos."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "usuarios mencionados"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Menciones"
@@ -6775,22 +6949,22 @@ msgstr "Mensaje {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Mensaje eliminado"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Mensaje eliminado"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Mensaje de @{0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "El mensaje es muy largo"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Opciones del mensaje"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Mensajes"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr "Medianoche"
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderación"
@@ -6894,7 +7064,7 @@ msgstr "Lista de moderación actualizada"
msgid "Moderation lists"
msgstr "Listas de moderación"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Listas de moderación"
@@ -6903,7 +7073,7 @@ msgstr "Listas de moderación"
msgid "moderation settings"
msgstr "ajustes de moderación"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Estados de moderación"
@@ -6949,7 +7119,7 @@ msgstr "Cine"
msgid "Music"
msgstr "Música"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Silenciar"
@@ -6994,7 +7164,7 @@ msgstr "Silenciar la lista"
msgid "Mute these accounts?"
msgstr "¿Silenciar estas cuentas?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Silenciar el hilo"
msgid "Mute words & tags"
msgstr "Silenciar palabras y etiquetas"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Cuentas silenciadas"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Cuentas silenciadas"
@@ -7108,8 +7278,8 @@ msgstr "Navega a la siguiente pantalla"
msgid "Navigates to your profile"
msgstr "Navega a tu perfil"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Nuevo chat"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Nueva dirección de correo electrónico"
@@ -7174,29 +7344,25 @@ msgstr "Nueva dirección de correo electrónico"
msgid "New Feature"
msgstr "Nueva característica"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Nueva publicación"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Nueva publicación"
@@ -7262,8 +7428,8 @@ msgstr "Noticias"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "Ya no sigues a {0}"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "No hay mensajes aún"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "No hay notificaciones"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Sin resultado"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Sin resultados"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Desnudez no sexual"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "No encontrado"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Ajustes de notificaciones"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Sonidos de notificación"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Notificaciones"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "ahora"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Apagar"
@@ -7623,7 +7772,8 @@ msgstr "Aceptar"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "en<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Reiniciar introducción"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Falta el texto alternativo en uno o más videos."
@@ -7685,6 +7835,26 @@ msgstr "Falta el texto alternativo en uno o más videos."
msgid "Only {0} can reply."
msgstr "Solo {0} puede responder."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Solo seguidores a quienes sigo"
msgid "Only image files are supported"
msgstr "Solo se admiten archivos de imagen"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Solo se admiten archivos WebVTT (.vtt)"
@@ -7712,7 +7892,7 @@ msgstr "¡Uy, algo ha salido mal!"
msgid "Oops!"
msgstr "¡Uy!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Abrir el creador de avatares"
@@ -7720,12 +7900,17 @@ msgstr "Abrir el creador de avatares"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Abrir las opciones de conversación"
@@ -7739,16 +7924,16 @@ msgstr "Abrir el menú lateral"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Abrir el selector de emojis"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Abrir la pantalla de información del feed"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Abrir el menú de opciones del feed"
@@ -7760,13 +7945,17 @@ msgstr "Abrir la lista completa de emoji"
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Abrir enlace a {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Abrir"
msgid "Open post options menu"
msgstr "Abrir menú de opciones de la publicación"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr "Abrir pagina de histórico"
msgid "Open system log"
msgstr "Abrir el registro del sistema"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Abre detalles adicionales para una entrada de depuración."
msgid "Opens alt text dialog"
msgstr "Abre el diálogo de texto alternativo"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Abrir cámara del dispositivo"
@@ -7858,22 +8051,24 @@ msgstr "Abrir la ventana de redacción"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Abre el flujo para crear una nueva cuenta de Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
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"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Abre este perfil"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "El equipo de moderación ha recibido tu denuncia."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Nuestros moderadores han revisado denuncias y han decidido deshabilitar tu acceso a los chats en Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Nuestros moderadores han revisado denuncias y han decidido deshabilitar
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Página no encontrada"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Página no encontrada"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Pausar video"
msgid "People"
msgstr "Personas"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Personas seguidas por @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Personas siguiendo a @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Personas a las que sigo"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Imágenes destinadas a adultos."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Anclar el feed"
@@ -8152,7 +8348,7 @@ msgstr "Anclar el feed"
msgid "Pin to home"
msgstr "Anclar en inicio"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Anclar en inicio"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Anclado"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} anclados en inicio"
@@ -8236,7 +8432,7 @@ msgstr "Por favor, elige tu identificador."
msgid "Please choose your password."
msgstr "Por favor, elige tu contraseña."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "Por favor, completa la verificación CAPTCHA."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr "Escribe una contraseña. Debe tener al menos 8 caracteres."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Introduce un nombre único para esta contraseña de app o utiliza el que generamos aleatoriamente."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "Introduce tu correo electrónico."
msgid "Please enter your invite code."
msgstr "Introduce tu código de invitación."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr "Escribe tu nombre de usuario"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Por favor, explica por qué crees que esta etiqueta fue aplicada incorrectamente por {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Por favor, explica por qué crees que tus chats fueron deshabilitados incorrectamente"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "Política"
msgid "Porn"
msgstr "Pornografía"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Publicar"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Publicar Todo"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Publicación por {0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Publicación eliminada"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Error al subir la publicación. Por favor, verifica tu conexión a internet y vuelve a intentarlo."
@@ -8454,7 +8650,7 @@ msgstr "Publicación ocultada por ti"
msgid "Post interaction settings"
msgstr "Ajustes de interacción de la publicación"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Ajustes de interacción de la publicación"
@@ -8464,8 +8660,8 @@ msgstr "Ajustes de interacción de la publicación"
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Publicación desfijado"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Los posts pueden ser silenciados según su texto, sus etiquetas o ambos.
msgid "Posts hidden"
msgstr "Publicaciones ocultas"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Publicaciones, respuestas"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "Presiona para reintentar la conexión"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Presiona para reintentar"
@@ -8536,7 +8728,7 @@ msgstr "Presiona para reintentar"
msgid "Press to view followers of this account that you also follow"
msgstr "Presiona para ver los seguidores de esta cuenta que también sigues."
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "Privacidad"
msgid "Privacy and security"
msgstr "Privacidad y seguridad"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privacidad y Seguridad"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Ajustes de privacidad y seguridad"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Política de privacidad"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Procesando video..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Procesando..."
@@ -8602,8 +8793,8 @@ msgstr "Procesando..."
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
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:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Publicar las publicaciones"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Publicar las respuestas"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Publicar la respuesta"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Push"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Notificaciones push"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
-msgstr "Push, todos"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "Push, personas a las que sigues"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "¡El código QR ha sido descargado!"
msgid "QR code saved to your camera roll!"
msgstr "¡Código QR guardado en tu galería!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Citas deshabilitadas"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Citas"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Vincular cita de nuevo"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr "React con {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Leer la publicación del blog (en inglés)"
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr "Motivo del recurso"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Recibir notificaciones en la aplicación"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Recibir notificaciones push"
@@ -8841,6 +9028,10 @@ msgstr "Recomendaciones"
msgid "Reconnect"
msgstr "Reconectar"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Rechazar"
msgid "Reject chat request"
msgstr "Rechazar la solicitud de chat"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Recargar conversaciones"
@@ -8896,17 +9087,17 @@ msgstr "Eliminar la cuenta"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Eliminar adjunto"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Eliminar Avatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Eliminar Banner"
@@ -8914,8 +9105,9 @@ msgstr "Eliminar Banner"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Eliminar incrustado"
@@ -8933,8 +9125,8 @@ msgstr "¿Eliminar feed?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr "¿Eliminar de tus feeds?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Eliminar la imagen"
@@ -9009,11 +9201,11 @@ msgstr "Eliminar la verificación"
msgid "Remove your verification for this account?"
msgstr "¿Eliminar tu verificación para esta cuenta?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Eliminado por el autor"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Eliminado por ti"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Respuestas"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Responder"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Responder ({0, plural, one {# respuesta} other {# respuestas}})"
@@ -9125,10 +9316,6 @@ msgstr "Respuesta ocultada por el autor del hilo"
msgid "Reply Hidden by You"
msgstr "Respuesta ocultada por ti"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Notificaciones de respuestas"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "La configuración de respuestas es elegida por el autor del hilo"
@@ -9146,9 +9333,9 @@ msgstr "Visibilidad de la respuesta actualizada"
msgid "Reply was successfully hidden"
msgstr "La respuesta se ha ocultado correctamente"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Denunciar"
@@ -9164,13 +9351,13 @@ msgstr "Denunciar la cuenta"
msgid "Report conversation"
msgstr "Denunciar conversación"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Ventana de denuncia"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Denunciar feed"
@@ -9179,7 +9366,7 @@ msgstr "Denunciar feed"
msgid "Report list"
msgstr "Denunciar la lista"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Denunciar mensaje"
@@ -9199,8 +9386,8 @@ msgstr "Denunciar paquete de inicio"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Denuncia enviada"
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Denunciar este feed"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Denunciar esta lista"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Republicar"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Republicar ({0, plural, one {# republicación} other {# republicaciones}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Notificaciones de republicaciones"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Republicado por ti"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Republicaciones"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Republicaciones de esta publicación"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Republicaciones de tus republicaciones"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Notificaciones de republicaciones de tus republicaciones"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Requerir texto alternativo antes de publicar"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Requerir un código por correo electrónico antes de iniciar sesión con tu cuenta."
@@ -9328,7 +9534,11 @@ msgstr "Requerido para este proveedor"
msgid "Required in your region"
msgstr "Requerido en tu región"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Reenviar"
@@ -9393,15 +9603,16 @@ msgstr "Reintenta la última acción, que presentó un error"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Reintenta la última acción, que presentó un error"
msgid "Retry"
msgstr "Reintentar"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Reintentar cargar opciones de denuncia"
@@ -9426,14 +9637,14 @@ msgstr "Reintentar cargar opciones de denuncia"
msgid "Return to previous page"
msgstr "Volver a la página anterior"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Volver a la página de inicio"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Volver a la página anterior"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Guardar cambios"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Guardar código QR"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Guardar en mis feeds"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "Feeds guardados"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Guardado en tus feeds"
@@ -9551,8 +9764,8 @@ msgstr "Guardado en tus feeds"
msgid "Say hello!"
msgstr "¡Di hola!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "Desplazar hacia arriba"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Buscar"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Buscar en las publicaciones de @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Buscar en mis publicaciones"
msgid "Search posts"
msgstr "Buscar en sus publicaciones"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Buscar perfiles"
msgid "Search..."
msgstr "Buscar..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Busca perfiles"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Se requiere un paso de seguridad"
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "Selecciona un color"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "Seleccionar GIF"
msgid "Select GIF \"{0}\""
msgstr "Seleccionar GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Seleccionar idioma..."
msgid "Select languages"
msgstr "Seleccionar idiomas"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Seleccionar servicio de moderación"
@@ -9904,11 +10117,11 @@ msgstr "Selecciona tus intereses entre las siguientes opciones"
msgid "Select your preferred language for translations in your feed."
msgstr "Elige a qué idioma deseas traducir las publicaciones de tu feed."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Elegir los canales de notificación que prefieres"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Enviar correo"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Enviar comentarios"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Enviar mensaje"
@@ -9952,7 +10165,7 @@ msgstr "Enviar la publicación a {name}"
msgid "Send post to..."
msgstr "Enviar publicación a..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Enviar denuncia a {title}"
@@ -9960,7 +10173,7 @@ msgstr "Enviar denuncia a {title}"
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Enviar por mensaje directo"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Establece el correo electrónico para restablecer la contraseña"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Ajustes"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr "Permitir que los demás reciban notificaciones de tus publicaciones"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "Actividad sexual o desnudez erótica."
msgid "Sexually Suggestive"
msgstr "Sexualmente sugestivo"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr "Compartir el URI at:// de la publicación"
msgid "Share QR code"
msgstr "Compartir código QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Compartir este feed"
@@ -10151,7 +10366,7 @@ msgstr "Compartir por..."
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Probador de Preferencias Compartidas"
@@ -10167,16 +10382,16 @@ msgstr "Ver texto alternativo"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Ver de todas maneras"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Mostrar advertencia y filtrar de los feeds"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr "Muestra el contenido"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Iniciar sesión o crear una cuenta"
msgid "Sign in or create your account to join the conversation!"
msgstr "¡Inicia sesión o crea una cuenta para unirte a la conversación!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Iniciar sesión en una cuenta que no está en la lista"
@@ -10337,6 +10558,10 @@ msgstr "Iniciar sesión en una cuenta que no está en la lista"
msgid "Sign in to Bluesky or create a new account"
msgstr "Inicia sesión en Bluesky o crea una nueva cuenta"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Cerrar sesión"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Cerrar sesión"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "¿Cerrar sesión?"
@@ -10391,7 +10616,7 @@ msgstr "Saltar"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Más pequeño"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Posponer el recordatorio"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Alguien reaccionó con {0}"
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Hubo un problema con los datos que intentaste denunciar. Por favor, contacta con el soporte."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Se produjo un error"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "¡Se produjo un error!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Se produjo un error. Inténtalo de nuevo."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "¿Algo va mal? Avísanos."
@@ -10568,7 +10798,7 @@ msgstr "Deportes"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Iniciar un nuevo chat"
@@ -10582,17 +10812,17 @@ msgstr "Empieza a añadir personas"
msgid "Start adding people!"
msgstr "¡Empieza a añadir personas!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Iniciar chat con {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Paquete de inicio"
@@ -10654,12 +10884,12 @@ msgstr "Almacenamiento limpio, necesitas reiniciar la aplicación ahora."
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Libro de cuentos"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Enviar"
@@ -10684,9 +10914,9 @@ msgstr "Enviar apelación"
msgid "Submit Appeal"
msgstr "Enviar apelación"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Enviar denuncia"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Suscribirse"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "¡Éxito!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Verificado correctamente"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Atardecer"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Soporte"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Cambiar a otra cuenta"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Cambiar cuentas"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Cambiar a {0}"
@@ -10828,7 +11062,7 @@ msgstr "Solo etiquetas"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr "Toca para cerrar el menú contextual"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Toca para descartar"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Condiciones"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Texto y etiquetas"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Campo de introducción de texto"
@@ -11049,6 +11301,11 @@ msgstr "Estos serán los ajustes por defecto cuando crees una nueva publicación
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "La Política de Privacidad se ha trasladado a <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "Hubo un problema al contactar con el servidor"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Hubo un problema al contactar con el servidor. Por favor, verifica tu conexión a internet e inténtalo de nuevo."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Hubo un problema al obtener las notificaciones. Toca aquí para intentar de nuevo."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Hubo un problema al obtener las publicaciones. Toca aquí para intentar de nuevo."
@@ -11161,7 +11420,7 @@ msgstr "Hubo un problema al obtener tu información de servicio"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Hubo un problema al eliminar este feed. Por favor, verifica tu conexión a internet e inténtalo de nuevo."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Esta apelación será enviada a <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Esta apelación será enviada al servicio de moderación de Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Esta apelación será enviada al servicio de moderación de Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Este contenido no está disponible porque uno de los usuarios involucrad
msgid "This content is not viewable without a Bluesky account."
msgstr "Este contenido no se puede ver sin una cuenta de Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Esta conversación es con una cuenta eliminada o desactivada. Presiona p
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr "Este feed ya no está en línea. Estamos mostrando <0>Descubrir0> en s
msgid "This handle is reserved. Please try a different one."
msgstr "Este nombre de usuario está reservado. Por favor intenta con uno diferente."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr "Este enlace no es válido"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr "Es posible que el nombre o la descripción de esta lista (creada por ti)
msgid "This list is empty."
msgstr "Esta lista está vacía"
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "El autor de esta publicación ha deshabilitado las citas."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Esta respuesta se colocará en una sección oculta al final de tu hilo. Las notificaciones de respuestas posteriores se silenciarán, tanto para ti como para los demás."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr "Este usuario no tiene un nombre para mostrar, por lo tanto no puede ser
msgid "This user doesn't have any followers."
msgstr "Este usuario no tiene seguidores."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Este usuario te ha bloqueado. No puedes ver su contenido."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Preferencias de hilos"
msgid "Threaded"
msgstr "En hilos"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Preferencias de hilos"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Para desactivar el método de autenticación de doble factor por correo electrónico, por favor, asegúrate de que puedes acceder a la dirección de correo."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Para desactivar tu método de autenticación de doble factor por correo electrónico, comprueba que puedes acceder a <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Destacados"
msgid "Top replies first"
msgstr "Respuestas destacadas primero"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Tema"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Videos populares"
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "La confianza se construye a partir de las relaciones, las comunidades y los contextos compartidos. Por ello, también nombramos a <0>verificadores de confianza0>: organizaciones que pueden verificar cuentas directamente."
@@ -11763,11 +12044,15 @@ msgstr "No se puede contactar con tu proveedor. Comprueba tu conexión a Interne
msgid "Unable to delete"
msgstr "No se puede eliminar"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Desbloquear la lista"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr "Dejar de seguir esta cuenta"
msgid "Unfollows the user"
msgstr "Deja de seguir al usuario"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Desafortunadamente, los etiquetadores a los que te suscribiste no soportan este tipo de denuncia."
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "No me gusta ({0, plural, one {# me gusta} other {# me gusta}})"
@@ -11918,7 +12203,7 @@ msgstr "No me gusta ({0, plural, one {# me gusta} other {# me gusta}})"
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Dejar de silenciar la conversación"
msgid "Unmute list"
msgstr "Dejar de silenciar la lista"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Desfijar"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Desfijar feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Desfijar de inicio"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Desfijar lista de moderación"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} desfijado de inicio"
@@ -12030,11 +12315,11 @@ msgstr "Darse de baja de este etiquetador"
msgid "Unsubscribed from list"
msgstr "Dado de baja de la lista"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr "Actualizar"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Actualizar <0>{displayName}0> en listas"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Actualizar el correo electrónico"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "Actualizar a {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Actualizar tu correo electrónico"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Actualizar la visibilidad de la respuesta falló"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Sube una foto en su lugar"
@@ -12098,39 +12395,40 @@ msgstr "Sube una foto en su lugar"
msgid "Upload a text file to:"
msgstr "Carga un archivo de texto en:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Subir desde la cámara"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Subir desde tus archivos"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Subir desde la biblioteca"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Subiendo imágenes..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Subiendo miniatura del enlace..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Subiendo video..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Usuario bloqueado"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Lista de usuarios por {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "usuarios seguidos por <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "usuarios siguiendo a <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr "Error al verificar, inténtalo de nuevo."
msgid "Verification settings"
msgstr "Ajustes de verificación"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Ajustes de verificación"
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Verificar registro DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Verificar el código del correo electrónico"
@@ -12349,7 +12647,7 @@ msgstr "¿Verificar esta cuenta?"
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Versión {0}"
msgid "Video"
msgstr "Video"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "El video no se pudo procesar"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Feed de videos"
@@ -12419,7 +12717,7 @@ msgstr "Video no encontrado."
msgid "Video settings"
msgstr "Configuración del video"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Video subido"
@@ -12432,18 +12730,18 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videos"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Ver el avatar de {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Ver el perfil de {0}"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Ver detalles"
msgid "View full thread"
msgstr "Ver hilo completo"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Ver información sobre estas etiquetas"
@@ -12522,7 +12828,7 @@ msgstr "Ver más"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "Ver perfil"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Ver el avatar"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "Ver el servicio de etiquetado proporcionado por @{0}"
msgid "View this user's verifications"
msgstr "Ver las verificaciones de este usuario"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Ver usuarios a los que les gusta este feed"
@@ -12596,8 +12902,8 @@ msgstr "Ver tus cuentas silenciadas"
msgid "View your verifications"
msgstr "Ver tus verificaciones"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Muestra la imagen a tamaño completo"
@@ -12640,8 +12946,8 @@ msgstr "Advertir contenido"
msgid "Warn content and filter from feeds"
msgstr "Advertir contenido y filtrar de los feeds"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Ver"
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr "No hemos encontrado resultados para ese tema."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "No pudimos cargar esta conversación"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Te recomendamos que elijas al menos dos intereses."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Hemos enviado un correo electrónico a <0>{0}0> con un enlace. Haz clic en el enlace para completar la verificación del correo electrónico."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "No pudimos determinar si tienes permiso para cargar videos. Inténtalo de nuevo."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Vamos a enviar un correo electrónico a <0>{0}0> con un enlace. Haz clic en el enlace para completar la verificación del correo electrónico."
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "Estamos teniendo problemas de red, inténtalo de nuevo"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Hemos incluido una nueva capa de verificación en Bluesky: una marca fácil de ver."
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "¡Lo sentimos! No encontramos la página que buscabas."
@@ -12865,12 +13175,12 @@ 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.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "¿Qué hay de nuevo?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Si tocas en una verificación, verás qué organizaciones la han concedido."
@@ -12878,7 +13188,7 @@ msgstr "Si tocas en una verificación, verás qué organizaciones la han concedi
msgid "Who can interact with this post?"
msgstr "¿Quién puede interactuar con esta publicación?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Quién puede responder"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "¿Quién puede verificar?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "¡Vaya!"
@@ -12939,7 +13249,7 @@ msgstr "¿Por qué crees que este paquete de inicio debe ser revisado?"
msgid "Why should this user be reviewed?"
msgstr "¿Por qué crees que este usuario debe ser revisado?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Escribe una publicación"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Escribe una respuesta"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "DID equivocado devuelto por el servidor. Se recibió: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr "Estás emitiendo en directo"
msgid "You are no longer live"
msgstr "Ya no estás emitiendo en directo"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "No tienes permiso para subir videos."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Puedes elegir si las notificaciones de chat tienen sonido en la configuración del chat dentro de la aplicación"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Puedes continuar las conversaciones en curso independientemente de la configuración que elijas."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "Puedes reactivar tu cuenta para continuar iniciando sesión. Tu perfil y
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr "Puedes cambiar esta opción en Ajustes."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "No tienes ningún feed guardado."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "Debes seguir al menos a siete personas más para generar un paquete de i
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Probablemente quieras reiniciar la aplicación ahora."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Reaccionaste con {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Se cerrará la sesión de todas tus cuentas."
@@ -13390,7 +13710,7 @@ msgstr "Ahora recibirás notificaciones de este hilo"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Hemos enviado un código de restablecimiento a tu correo. Introdúcelo aquí y, después, introduce tu nueva contraseña."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "¡Has llegado al fin de tu feed! Encuentra más cuentas para seguir."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr "Has alcanzado el número máximo de solicitudes permitidas. Inténtalo d
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Has alcanzado tu límite diario de carga de videos (demasiados bytes)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr "Se ha suspendido tu cuenta"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Tu cuenta aún no tiene suficiente antigüedad para subir videos. Inténtalo de nuevo más tarde."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Tu repositorio de cuenta, que contiene todos los registros de datos públicos, puede ser descargado como un archivo \"CAR\". Este archivo no incluye archivos multimedia incrustados, como imágenes, ni tus datos privados, que deben ser obtenidos por separado."
@@ -13519,7 +13847,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Tus chats han sido deshabilitados"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "Tu correo electrónico parece no ser válido."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Aún no has verificado tu correo electrónico. Hazlo para poder disfrutar de todas las funciones de Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "¡Tu feed de Siguiendo esta vacío! Sigue a más usuarios para ver sus p
msgid "Your full handle will be <0>@{0}0>"
msgstr "Tu nombre de usuario completo será <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "Tus palabras silenciadas"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Se enviará tu denuncia a <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "Se enviará tu denuncia a <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Los intereses que selecciones nos ayudarán a ofrecerte contenido interesante para ti."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/eu/messages.po b/src/locale/locales/eu/messages.po
index 036574c20d..41a141296f 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Basque\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {minutu #} other {# minutu}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {hilabete #} other {# hilabete}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr "{0, plural, one {sartzeko eskaera berri #} other {# sartzeko eskaera berri}}"
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, one {pertsona #-ek} other {# pertsonek}} erreakzionatu du/dute – {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {segundu #} other {# segundu}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {Elementu bat} other {# elementu}} irakurri gabe"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr "{0, plural, one {m#} other {#m}}"
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} jarraitzen"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr "{0}-k blokeatzen zaitu"
@@ -264,7 +269,7 @@ msgstr "50etik {0}"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} erreakzioantu du {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, {1}-ren zerrenda"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "{0}-ren abatarra"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "{0}-ren abatarra"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr "{0}/{1}"
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr "{0}/{1} {2, plural, one {kide} other {kide}}"
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr "{0}/{1} kide"
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}min"
msgid "{0}s"
msgstr "{0}seg"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr "{count, plural, =0 {Ez dago sartzeko eskaerarik} one {Sartzeko eskaera #} other {# sartzeko eskaera}}"
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr "{count, plural, one {txat eguneraketa #} other {# txat eguneraketa}}"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr "{count, plural, one {sartzeko eskaera berri #} other {# sartzeko eskaera berri}}"
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, one {eskaera #} other {# eskaera}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {Elementu bat} other {# elementu}} irakurri gabe"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr "{count, plural, one {Freskatu orria ikusteko.} other {Freskatu orria guztiak ikusteko.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr "{count, plural, one {Post honek argazki # dauka.} other {Post honek # argazki ditu.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr "{count, plural, one {Zure aplikazioa eguneratu ikusteko.} other {Zure aplikazioa eguneratu guztiak ikusteko.}}"
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr "{count, plural, other {#+ sarrera eskaera}}"
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "{count}+"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "{count}+ eskaera"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName}-k egiaztatu zaitu"
msgid "{following} following"
msgstr "{following} jarraitzen"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "{handle} ezin da gehitu"
@@ -547,7 +599,7 @@ msgstr "{handle} ezin da gehitu"
msgid "{handle} can't be messaged"
msgstr "{handle} ezin zaio mezua bidali"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "{handle} ezin zaio mezua bidali"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {ordu {minutesString} #} other {# ordu {minutesStrin
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {ordu #} other {# ordu}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "{JOIN_REQUESTS_THRESHOLD}+ sarrera eskaera berri"
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "{JOIN_REQUESTS_THRESHOLD}+ sarrera eskaera berri"
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,9 +643,9 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, other {Gehienez # erantzun ezkuta ditzakezu.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
-msgstr ""
+msgstr "{memberCount}/{memberLimit}"
#: src/features/liveNow/utils.ts:10
msgid "{minutes, plural, one {# minute} other {# minutes}}"
@@ -607,7 +669,7 @@ msgstr "{name}-ren feed eta pertsona gogokoenak - elkartu niri!"
msgid "{name}'s starter pack"
msgstr "{name}-ren abio multzoa"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {Elementu bat} other {# elementu}} irakurri gabe"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, one {eskaera #} other {# eskaera}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "{requestCount}+ eskaera"
@@ -795,8 +857,11 @@ msgstr "Sareko errore bat gertatu da. Mesedez, egiaztatu zure Interneteko konexi
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Sareko errore bat gertatu da. Mesedez, egiaztatu zure Interneteko konexioa."
@@ -804,7 +869,7 @@ msgstr "Sareko errore bat gertatu da. Mesedez, egiaztatu zure Interneteko konexi
msgid "A new code has been sent"
msgstr "Kode berri bat bidali da"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Egiaztatzeko modu berri bat"
@@ -827,11 +892,11 @@ msgstr "Jarraitu botoiaren ondoan kanpai ikono bat duen profil orri baten pantai
msgid "A screenshot of 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 "Post-konpositorearen pantaila-argazkia, ondoan \"Zirriborroak\" dioen botoi berri batekin, ortzadarraren koloreko su artifizial efektuarekin. Behean, konpositoreko testuak dio: \"Aupa, entzun al dituzu berriak? Bluesky-k zirriborroak ditu orain!!!\"."
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
-msgstr ""
+msgstr "Hautatutako hartzailea ez du bidaltzaileak jarraitzen."
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Jokabide abusiboa edo diskriminatzailea"
msgid "Accept"
msgstr "Onartu"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Onartu"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Onartu txateatzeko eskaera"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr "Onartu sartzeko eskaera"
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Onartu Eskaera"
@@ -860,17 +935,26 @@ msgstr "Onartu Eskaera"
msgid "Accept this language suggestion"
msgstr "Onartu hizkuntza-iradokizun hau"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr "Onartutako elkarrizketak"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr "Sarbidea eskatu da! Taldearen jabeak zure eskaera berrikusiko du."
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Erabilerraztasun"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Erabilerraztasun Doikuntzak"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Kontua desmutututa"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Egiaztapen-marka urdin ondulatua <0><1/>0> duten kontuek beste batzuk egiazta ditzakete. Egiaztatzaile fidagarri hauek Blueskyk hautatzen ditu."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Beste batzuen jarduera"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Jarduera jakinarazpenak"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Gehitu"
@@ -999,8 +1079,8 @@ msgstr "Gehitu kontua"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Gehitu aukerazko testua (hautazkoa)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Gehitu beste kontu bat"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Gehitu beste post bat"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Gehitu beste post bat harira"
@@ -1035,7 +1115,7 @@ msgstr "Gehitu aplikazio pasahitza"
msgid "Add App Password"
msgstr "Gehitu Aplikazio Pasahitza"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "Gehitu automatizazio etiketa kontuan"
@@ -1043,7 +1123,7 @@ msgstr "Gehitu automatizazio etiketa kontuan"
msgid "Add emoji reaction"
msgstr "Gehitu emoji erreakzioa"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Gehitu txat taldeko kideak"
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Gehitu multimedia postari"
@@ -1062,8 +1142,8 @@ msgstr "Gehitu multimedia postari"
msgid "Add members"
msgstr "Gehitu kideak"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Gehitu xehetasun gehiago (hautazkoa)"
@@ -1080,8 +1160,8 @@ msgstr "Gehitu mutututako hitza aukeratutako ezarpenekin"
msgid "Add muted words and tags"
msgstr "Gehitu hitz mutuak eta etiketak"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "Kideak zerrendara gehitzen..."
msgid "Additional details (limit 1000 characters)"
msgstr "Xehetasun gehiago (1000 karaktere gehienez)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Xehetasun gehiago (300 karaktere gehienez)"
@@ -1228,12 +1308,12 @@ msgstr "Adinaren berme-eskaera aurkeztu da"
msgid "Age assurance only takes a few minutes"
msgstr "Adina bermatzeko minutu gutxi batzuk besterik ez dira behar"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "ane@adibidea.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Guztiak"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "Dena {0}"
@@ -1278,13 +1358,13 @@ msgstr "Baimendu sarrera zure mezu zuzenetara"
msgid "Allow anyone to reply"
msgstr "Utzi edonori erantzuten"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "Baimendu mezu zuzenak hemendik"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr "Baimendu txat taldeko gonbidapenak hemendik"
@@ -1338,12 +1418,12 @@ msgstr "Dagoeneko kontu bat daukazu?"
msgid "Already signed in as @{0}"
msgstr "Dagoeneko izena emanda @{0} bezala"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "AUKERAZKO TESTUA"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Aukerazko Testua"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Aukerazko testuak itsu eta ikusmen urriko erabiltzaileentzako irudiak deskribatzen ditu eta guztientzako testuingurua ematen laguntzen du."
@@ -1387,7 +1467,7 @@ msgstr "Errore bat gertatu da"
msgid "An error occurred"
msgstr "Errore bat gertatu da"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Errore bat gertatu da bideoa konprimitzean."
@@ -1432,11 +1512,11 @@ msgstr "Errore bat gertatu da QR kodea gordetzean!"
msgid "An error occurred while trying to follow all"
msgstr "Errore bat gertatu da guztiak jarraitzen saiatzean"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "Errore bat gertatu da bideoa igotzean. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "Errore bat gertatu da bideoa igotzean. Egiaztatu Interneteko konexioa eta saiatu berriro."
@@ -1461,21 +1541,21 @@ msgstr "Hainbat Bluesky-ren posten ilustrazioa, berposta, atsegin dut eta iruzki
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Bluesky-k egiaztatzaile fidagarriak hautatzen dituela erakusten duen ilustrazio bat, eta egiaztatzaile fidagarriek, berriz, erabiltzaile-kontuak egiaztatzen dituztela."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "Gonbidapen-esteka batek txat taldean sartzeko aukera ematen dio jendeari zuzenean gehitu gabe. Esteka nork erabil dezakeen eta zure onespenaren beharra kontrolatzen dituzu. Esteka edozein unetan desgai dezakezu."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr "Gonbidapen-esteka batek txat taldean sartzeko aukera ematen dio jendeari zuzenean gehitu gabe. Txatean nor sar daitekeen kontrolatzen duzu. Esteka edozein unetan desgai dezakezu."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Aukera hauetan sartzen ez den arazo bat"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
-msgstr ""
+msgstr "Arazo bat gertatu da txat taldea sortzean. Mesedez, saiatu berriro."
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
-msgstr ""
+msgstr "Arazo bat gertatu da txata hastean. Mesedez, saiatu berriro."
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
msgid "An issue occurred while trying to open the chat"
@@ -1490,7 +1570,7 @@ msgstr "Arazo bat gertatu da txata irekitzen saiatzean"
msgid "An issue occurred, please try again."
msgstr "Arazo bat gertatu da. Mesedez, saiatu berriro."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Bluesky aplikazioa irekita erakusten duen iPhone baten maketa egiaztatutako erabiltzaile baten profilean kontrol-marka urdin batekin bistaratzeko izenaren ondoan."
@@ -1539,13 +1619,17 @@ msgstr "Edonor"
msgid "Anyone can interact"
msgstr "Edozeinek elkarreragin dezake"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr "Edonor sar daiteke"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "Edonork bat egin dezake berehala"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "Edonork eska dezake bat egiteko"
@@ -1555,11 +1639,11 @@ msgstr "Edonork eska dezake bat egiteko"
msgid "Anyone who follows me"
msgstr "Niri jarraitzen didan edonor"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr "Daukan edonork ezingo du gehiago sartu edo sartzeko eskaera egin. Beti sor dezakezu berri bat."
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Aplikazioaren pasahitzaren izenek 4 karaktere izan behar dituzte gutxien
msgid "App passwords"
msgstr "Aplikazio pasahitzak"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Aplikazio Pasahitzak"
@@ -1618,7 +1702,7 @@ msgstr "Zuzeneko emankizunaren etenaldiaren aurkako helegitea"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Apelazioa bidalita"
@@ -1632,14 +1716,14 @@ msgstr "Apelazioa geldiarazi"
msgid "Appeal Suspension"
msgstr "Apelazioa Geldiarazi"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Apelatu erabaki hau"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "Benetan, benetan ziur al zaude?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Ziur zaude \"{0}\" aplikazioaren pasahitza ezabatu nahi duzula?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Ziur zaude mezu hau ezabatu nahi duzula? Mezua zuretzako ezabatuko da, baina ez beste parte-hartzaileentzat."
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "Ziur zaude {groupName} utzi nahi duzula?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr "Ziur zaude elkarrizketa hau utzi nahi duzula?"
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
msgstr "Ziur zaude elkarrizketa hau utzi nahi duzula? Zure mezuak ezabatuko dira zuretzako, baina ez beste parte-hartzaileentzat."
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Ziur zaude post hau baztertu nahi duzula?"
@@ -1752,7 +1836,7 @@ msgstr "Kontu automatizatua"
msgid "Automation label"
msgstr "Automatizazio etiketa"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "Automatizazio Etiketa"
@@ -1767,12 +1851,12 @@ msgstr "Bideo eta GIF erreprodukzio automatikoa"
msgid "Available"
msgstr "Eskuragarri"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Eskuragarri"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Eskuragarri"
msgid "Back"
msgstr "Atzera"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Itzuli Txatetara"
@@ -1840,12 +1926,12 @@ msgstr "Txateatzeko eskaera hau onartu aurretik, zure posta elektronikoa egiazta
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "{name}-ren posten jakinarazpenak jaso aurretik, zure helbide elektronikoa egiaztatu behar duzu."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Beste erabiltzaile bati mezua bidali aurretik, zure posta elektronikoa egiaztatu behar duzu."
@@ -1877,7 +1963,7 @@ msgstr "Urtebetetzea"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "Blokeatu {displayName}"
msgid "Block account"
msgstr "Kontua blokeatu"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Kontua blokeatu?"
@@ -1912,15 +1998,15 @@ msgstr "Kontua Blokeatu?"
msgid "Block accounts"
msgstr "Kontuak blokeatu"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
-msgstr ""
+msgstr "Blokeatu eta ezabatu"
#. After-report action for a conversation
#: src/components/dms/AfterReportConversationDialog.tsx:167
msgctxt "button"
msgid "Block and leave"
-msgstr ""
+msgstr "Blokeatu eta utzi"
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
msgid "Block list"
@@ -1936,9 +2022,9 @@ msgstr "Kontu hauek blokeatu?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Blokeatu erabiltzailea"
@@ -1946,17 +2032,17 @@ msgstr "Blokeatu erabiltzailea"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Blokeatu erabiltzailea"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Blokeatu erabiltzailea eta/edo ezabatu elkarrizketa hau"
#: src/components/dms/AfterReportConversationDialog.tsx:217
msgid "Block user and/or leave this conversation"
-msgstr ""
+msgstr "Blokeatu erabiltzailea eta/edo utzi elkarrizketa hau"
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Blokeatua"
@@ -1964,13 +2050,13 @@ msgstr "Blokeatua"
msgid "Blocked accounts"
msgstr "Blokeatutako kontuak"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Blokeatutako Kontuak"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zurekin elkarreragin."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky hobea da lagunekin!"
msgid "Bluesky is more fun with friends"
msgstr "Bluesky dibertigarriagoa da lagunekin"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Bluesky dibertigarriagoa da lagunekin! Inportatu zure kontaktuak dagoeneko hemen nor dagoen ikusteko."
@@ -2053,7 +2139,7 @@ msgstr "Bluesky-k zure sareko pertsonen artean gomendatutako kontu multzo bat au
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 "Bluesky-k ez die zure profila eta postak erakutsiko saioa hasita ez duten erabiltzaileei. Baliteke beste aplikazio batzuek eskaera hau ez onartzea. Horrek ez du zure kontua pribatu bihurtzen."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky-k modu proaktiboan egiaztatuko ditu kontu aipagarriak eta benetakoak."
@@ -2137,23 +2223,30 @@ msgstr "Negozio"
msgid "Button to go back to the home timeline"
msgstr "Hasierako denbora-lerrora itzultzeko botoia"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "{0}-gatik"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "<0>{0}0>-gatik"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr "<0>{ownerDisplayName}0>-rena"
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr "<0>@{0}0>-gatik"
@@ -2181,7 +2274,7 @@ msgstr "Kontua sortzean <0>Zerbitzu Baldintzak0> onartzen dituzu."
msgid "By you"
msgstr "Zugatik"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Kamera"
@@ -2192,8 +2285,8 @@ msgstr "Kamera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Kamera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Utzi"
@@ -2248,9 +2341,9 @@ msgstr "Utzi berriro aktibatzea eta amaitu saioa"
msgid "Cancel search"
msgstr "Utzi bilaketa"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Ezin da blokeatutako erabiltzaile batekin elkarreragin"
@@ -2264,7 +2357,7 @@ msgstr "Epigrafeak (.vtt)"
msgid "Captions & alt text"
msgstr "Epigrafeak eta aukerazko testua"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "karrusela"
@@ -2297,7 +2390,7 @@ msgstr "Aldatu aplikazioaren hizkuntza"
msgid "Change Handle"
msgstr "Aldatu Erabiltzailea"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Aldatu moderazio zerbitzua"
@@ -2310,11 +2403,11 @@ msgstr "Aldatu pasahitza"
msgid "Change password dialog"
msgstr "Pasahitza aldatzeko elkarrizketa-koadroa"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Txostenaren kategoria aldatu"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Aldatu salaketa arrazoia"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Abio multzoan egindako aldaketak ez dira zerrendan islatuko sortu ondoren. Zerrenda kopia independentea izango da."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Txateatu"
@@ -2361,6 +2454,13 @@ msgstr "Txata ezabatuta"
msgid "Chat ended"
msgstr "Txata bukatuta"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr "Txateko gonbidapen-esteka jada ez dago erabilgarri"
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "Txata itxita"
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Txata mutututa"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
-msgstr ""
+msgstr "Txataren hartzailea ez du bidaltzaileak jarraitzen."
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Txateatzeko eskaeren sarrera-ontzia"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Txateatzeko eskaerak"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Txataren ezarpenak"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Txataren Ezarpenak"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Txata desmutututa"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Txatak"
@@ -2479,7 +2579,7 @@ msgstr "Aukeratu posten hizkuntzak"
msgid "Choose this color as your avatar"
msgstr "Aukeratu kolore hau zure abatar gisa"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "Aukeratu nork eta nola batu daitekeen txat talde honetara."
@@ -2533,7 +2633,7 @@ msgstr "Egin klik informazioa lortzeko"
msgid "click here"
msgstr "klik hemen"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "Egin klik hemen txat talde honetara jendea gehitzeko"
@@ -2541,7 +2641,7 @@ msgstr "Egin klik hemen txat talde honetara jendea gehitzeko"
msgid "Click here to contact our support team"
msgstr "Egin klik hemen gure laguntza-taldearekin harremanetan jartzeko"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "Egin klik hemen txat talde honetarako gonbidapen-esteka sortzeko edo kudeatzeko"
@@ -2558,7 +2658,7 @@ msgstr "Egin klik hemen saioa amaitzeko"
msgid "Click here to resend the email"
msgstr "Egin klik hemen mezu elektronikoa berriro bidaltzeko"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Egin klik hemen egiaztapen-prozesua berrabiarazteko."
@@ -2567,11 +2667,11 @@ msgstr "Egin klik hemen egiaztapen-prozesua berrabiarazteko."
msgid "Click here to update your birthdate"
msgstr "Egin klik hemen zure jaiotze data eguneratzeko"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Egin klik hemen zure posta elektronikoa eguneratzeko"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "Egin klik hemen txat talde honetarako gonbidapen-esteka ikusteko"
@@ -2580,7 +2680,7 @@ msgstr "Egin klik hemen txat talde honetarako gonbidapen-esteka ikusteko"
msgid "Click to open tag menu for {0}"
msgstr "Egin klik {0} etiketa-menua irekitzeko"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Egin klik huts egindako mezua berriro bidaltzen saiatzeko"
@@ -2594,28 +2694,30 @@ msgstr "Egin klik huts egindako mezua berriro bidaltzen saiatzeko"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Egin klik huts egindako mezua berriro bidaltzen saiatzeko"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Itxi elkarrizketa-koadro aktiboa"
msgid "Close alert"
msgstr "Itxi alerta"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr "Itxi bannerra"
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Itxi beheko tiradera"
@@ -2657,8 +2763,9 @@ msgstr "Itxi beheko tiradera"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Itxi elkarrizketa-koadroa"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Itxi irudia"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Itxi irudi ikuslea"
@@ -2683,6 +2790,14 @@ msgstr "Itxi irudi ikuslea"
msgid "Close menu"
msgstr "Itxi menua"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr "Itxi sarrera eskaeren bannerra"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Itxi elkarrizketa-koadro hau"
@@ -2695,7 +2810,7 @@ msgstr "Itxi ongietorri modala"
msgid "Closes password update alert"
msgstr "Pasahitzak eguneratzeko alerta ixten du"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Post-konpositorea ixten du eta post-zirriborroa baztertzen du"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Komikiak"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Komunitate-gidalerroak"
@@ -2740,12 +2855,12 @@ msgstr "Osatu erronka"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Idatzi post berria"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Idatzi {0, plural, other {# karaktere}} gehienezko postak"
@@ -2753,11 +2868,11 @@ msgstr "Idatzi {0, plural, other {# karaktere}} gehienezko postak"
msgid "Compose reply"
msgstr "Idatzi erantzuna"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "GIFa konprimitzen..."
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Bideoa konprimitzen..."
@@ -2780,7 +2895,7 @@ msgstr "<0>Moderazio-ezarpenetan0> konfiguratuta."
msgid "Confirm"
msgstr "Berretsi"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Edukiak eta Media"
msgid "Content and media"
msgstr "Edukiak eta media"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Edukiak eta Media"
@@ -2889,7 +3004,7 @@ msgstr "Testuinguru-menuaren atzeko planoa, egin klik menua ixteko."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Jarraitu haria"
msgid "Continue thread..."
msgstr "Jarraitu haria..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Jarraitu taldearen izenera"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Jarraitu hurrengo urratsera"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Elkarrizketa"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Elkarrizketa ezabatuta"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Elkarrizketa ezabatuta"
@@ -2939,13 +3054,20 @@ msgstr "Elkarrizketa ezabatuta"
#: src/components/dms/AfterReportConversationDialog.tsx:179
msgctxt "toast"
msgid "Conversation left"
-msgstr ""
+msgstr "Elkarrizketa utzita"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr "Ez da elkarrizketa aurkitu."
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Konpilazio bertsioa arbelean kopiatu da"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Kopiatu DID"
msgid "Copy host"
msgstr "Kopiatu ostalaria"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Kopiatu esteka profilera"
msgid "Copy link to starter pack"
msgstr "Kopiatu abio multzoaren esteka"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Kopiatu mezuaren testua"
@@ -3052,7 +3175,7 @@ msgstr "Kopiatu TXT erregistroaren balioa"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Copyright Politika"
@@ -3065,7 +3188,7 @@ msgstr "Ezin izan da feed pertsonalizatura konektatu"
msgid "Could not connect to feed service"
msgstr "Ezin izan da feed zerbitzura konektatu"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr "Ezin izan da posta eskuratu"
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Ezin izan dira bat datozen guztiak jarraitu. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Ezin izan da txata utzi"
@@ -3094,6 +3217,10 @@ msgstr "Ezin izan da txata utzi"
msgid "Could not load feed"
msgstr "Ezin izan da feeda kargatu"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr "Ezin izan da gonbidapena kargatu"
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Herrialde kodea"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Sortu"
@@ -3159,7 +3286,7 @@ msgstr "Sortu QR kodea abio multzo baterako"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Sortu abio multzo bat"
@@ -3174,13 +3301,14 @@ msgstr "Sortu niretzat abio multzo bat"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Sortu kontu bat"
msgid "Create an account without using this starter pack"
msgstr "Sortu kontu bat abio multzo hau erabili gabe"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Sortu abatar bat horren ordez"
@@ -3206,7 +3334,7 @@ msgstr "Sortu abatar bat horren ordez"
msgid "Create another"
msgstr "Sortu beste bat"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Sortu txat taldea"
@@ -3228,19 +3356,20 @@ msgstr "Sortu zerrenda abio multzotik"
msgid "Create moderation list"
msgstr "Sortu moderazio-zerrenda"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Sortu kontu berria"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr "Sortu edo aldatu gonbidapen-esteka bat txat talde honetarako"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Sortu salaketa {0}rentzat"
@@ -3256,8 +3385,8 @@ msgstr "Sortu erabiltzaile-zerrenda"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Sortuta {0}"
@@ -3341,7 +3470,7 @@ msgstr "Lehenetsia"
msgid "Default icons"
msgstr "Ikono lehenetsiak"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Ezabatu txat-adierazpenaren erregistroa"
msgid "Delete contacts"
msgstr "Kontaktuak ezabatu"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Ezabatu elkarrizketa"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Ezabatu niretzat"
@@ -3399,11 +3528,11 @@ msgstr "Ezabatu niretzat"
msgid "Delete list"
msgstr "Ezabatu zerrenda"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Ezabatu mezua"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Ezabatu mezua niretzat"
@@ -3413,7 +3542,7 @@ msgstr "Ezabatu nire kontua"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Ezabatu posta"
@@ -3434,12 +3563,12 @@ msgstr "Zerrenda hau ezabatu nahi duzu?"
msgid "Delete this post?"
msgstr "Post hau ezabatu nahi duzu?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Ezabatu da"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Ezabatutako Kontua"
@@ -3507,13 +3636,13 @@ msgstr "Elkarrizketa: egokitu mezu honekin nork elkarreragin dezakeen"
msgid "Dim"
msgstr "Lausotu"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Desgaitu"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Desgaitu 2FA"
@@ -3521,7 +3650,7 @@ msgstr "Desgaitu 2FA"
msgid "Disable captions"
msgstr "Desgaitu azpitituluak"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Desgaitu 2FA posta elektronikoa"
@@ -3534,8 +3663,8 @@ msgstr "Desgaitu 2FA posta elektronikoa"
msgid "Disable haptic feedback"
msgstr "Desgaitu feedback haptikoa"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr "Desgaitu esteka"
@@ -3547,7 +3676,7 @@ msgstr "Desgaitu post honen aipamen postak"
msgid "Disable replies entirely"
msgstr "Desgaitu erantzunak erabat"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "Gonbidapen-esteka hau desgaitu?"
@@ -3560,9 +3689,9 @@ msgstr "Desgaituta"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Baztertu"
msgid "Discard changes?"
msgstr "Aldaketak baztertu?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Zirriborroa baztertu?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Posta baztertu?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Deskonektatu Germ DM"
@@ -3613,11 +3742,11 @@ msgstr "Aurkitu Feed Berriak"
msgid "Dismiss"
msgstr "Baztertu"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Baztertu bannerra"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Baztertu errorea"
@@ -3673,7 +3802,7 @@ msgstr "Ez du biluztasunik."
msgid "Domain verified!"
msgstr "Domeinua egiaztatu da!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Ez duzu koderik edo berri bat behar duzu? <0>Egin klik hemen.0>"
@@ -3681,7 +3810,7 @@ msgstr "Ez duzu koderik edo berri bat behar duzu? <0>Egin klik hemen.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Ez duzu koderik ikusten? <0>Egin klik hemen berriro bidaltzeko.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Ez duzu mezu elektronikorik ikusten? <0>Egin klik hemen berriro bidaltzeko.0>"
@@ -3700,16 +3829,19 @@ msgstr "Ez kezkatu! Mezu eta ezarpen guztiak gordeta daude eta heldua zarela egi
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Eginda"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Kolpetxo bikoitza edo luze sakatu erreakzio bat gehitzeko"
@@ -3741,15 +3873,6 @@ msgstr "Kolpetxo bikoitza gogoko emateko"
msgid "Download Bluesky"
msgstr "Deskargatu Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Deskargatu CAR fitxategia"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Deskargatu CAR fitxategia"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Deskargatu txataren datuak"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Deskargatu txataren datuak"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Deskargatu irudia"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr "Deskargatu profilaren datuak"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr "Deskargatu profilaren datuak"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Doxxing-a"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "adib. Iragarkiekin behin eta berriz erantzuten duten erabiltzaileak."
msgid "Eating disorders"
msgstr "Elikadura-nahasmenduak"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Editatu"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Editatu abatarra"
@@ -3847,14 +3978,14 @@ msgstr "Editatu abatarra"
msgid "Edit Feeds"
msgstr "Editatu Feedak"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Editatu taldearen izena"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Editatu irudia"
@@ -3868,7 +3999,16 @@ msgstr "Editatu interakzio-ezarpenak"
msgid "Edit interests"
msgstr "Editatu interesak"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr "Editatu gonbidapen-esteka"
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr "Editatu gonbidapen-esteka"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "Editatu estekaren ezarpenak"
@@ -3886,20 +4026,15 @@ msgstr "Zuzeneko egoera editatu"
msgid "Edit moderation list"
msgstr "Editatu moderazio zerrenda"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Editatu Nire Feedak"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "Editatu izena"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Editatu {0}-ren jakinarazpenak"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Editatu Jendea"
@@ -3925,7 +4060,7 @@ msgstr "Editatu Profila"
msgid "Edit starter pack"
msgstr "Editatu abio multzoa"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "Editatu txat taldearen izena"
@@ -3937,7 +4072,7 @@ msgstr "Editatu erabiltzaile zerrenda"
msgid "Edit who can reply"
msgstr "Editatu nork erantzun dezakeen"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Editatu zure abio multzoa"
@@ -3971,7 +4106,7 @@ msgstr "Email helbidea"
msgid "Email Resent"
msgstr "Posta elektronikoa Birbidali"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "Posta elektronikoa bidalia!"
@@ -4006,8 +4141,8 @@ msgstr "Txertatu post hau zure webgunean. Kopiatu hurrengo kode zatia eta itsats
msgid "Embedded video player"
msgstr "Bideo erreproduzitzailea txertatua"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Gaitu"
@@ -4025,7 +4160,7 @@ msgstr "Gaitu helduentzako edukia"
msgid "Enable captions"
msgstr "Gaitu azpitituluak"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Gaitu 2FA posta elektronikoa"
@@ -4038,13 +4173,12 @@ msgstr "Gaitu kanpoko multimedia"
msgid "Enable media players for"
msgstr "Gaitu multimedia-erreproduzitzaileak"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Kontu baten jakinarazpenak gaitzeko, bisitatu haren profila eta sakatu <0>kanpai ikonoa0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Gaitu push jakinarazpenak"
@@ -4091,8 +4225,8 @@ msgstr "Sartu pasahitz bat"
msgid "Enter a word or tag"
msgstr "Sartu hitz edo etiketa bat"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Sartu kodea"
@@ -4143,7 +4277,7 @@ msgstr "Pantaila osora sartzen da"
msgid "Entertainment"
msgstr "Entretenimendua"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Errorea"
@@ -4185,23 +4319,23 @@ msgstr "Denek erantzun dezakete"
msgid "Everybody can reply to this post."
msgstr "Denek erantzun dezakete post honi."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Edonork"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Edonork"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Edonork"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Beste guztia"
@@ -4217,8 +4351,8 @@ msgstr "Jarraitzen dituzun erabiltzaileak baztertzen ditu"
msgid "Exit fullscreen"
msgstr "Irten pantaila osotik"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Zabaldu aukerazko testua"
@@ -4226,7 +4360,7 @@ msgstr "Zabaldu aukerazko testua"
msgid "Expand list of users"
msgstr "Zabaldu erabiltzaileen zerrenda"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Zabaldu edo tolestu erantzuten ari zaren post osoa"
@@ -4238,7 +4372,7 @@ msgstr "Zabaldu postaren testua"
msgid "Expands or collapses post text"
msgstr "Postaren testua zabaldu edo tolesten du"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Erregistro batean ebaztea espero zen uri-a"
@@ -4277,9 +4411,9 @@ msgstr "Esplizituak edo kezkagarriak izan daitezkeen multimediak."
msgid "Explicit sexual images."
msgstr "Sexu-irudi esplizituak."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Arakatu"
@@ -4289,11 +4423,8 @@ msgstr "Arakatu"
msgid "Explore the app"
msgstr "Arakatu aplikazioa"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr "Esportatu txateko datuak"
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "Esportatu nire txateko datuak"
@@ -4322,7 +4453,7 @@ msgstr "Kanpoko Multimedia"
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 "Kanpoko multimediak webguneek zuri eta zure gailuari buruzko informazioa biltzeko aukera izan dezake. Ez da informaziorik bidali edo eskatzen \"play\" botoia sakatu arte."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Kanpoko Multimedia Hobespenak"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Ezin izan da txata onartu"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr "Ezin izan da onartu sartzeko eskaera"
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Errorea emoji erreakzioa gehitzean"
@@ -4354,7 +4489,7 @@ msgstr "Ezin izan da abio multzora gehitu"
msgid "Failed to change handle. Please try again."
msgstr "Ezin izan da handle-a aldatu. Mesedez, saiatu berriro."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "Ezin izan da esteka kopiatu"
@@ -4367,7 +4502,7 @@ msgstr "Ezin izan da sortu aplikazioaren pasahitza. Mesedez, saiatu berriro."
msgid "Failed to create conversation"
msgstr "Ezin izan da elkarrizketa sortu"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "Ezin izan da sortu gonbidapen-esteka"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Ezin izan da txata ezabatu"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Ezin izan da mezua ezabatu"
@@ -4394,24 +4529,24 @@ msgstr "Ezin izan da posta ezabatu. Mesedez, saiatu berriro"
msgid "Failed to delete starter pack"
msgstr "Ezin izan da abio multzoa ezabatu"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "Ezin izan da desgaitu gonbidapen-esteka"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Germ DM deskonektatzeak huts egin du. Errorea: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "Ezin izan da txat taldearen izena editatu"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "Ezin izan da editatu gonbidapen-esteka"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "Ezin izan da gaitu gonbidapen-esteka"
@@ -4427,19 +4562,27 @@ msgstr "Ezin izan dira zure lagun guztiak jarraitu, mesedez, saiatu berriro"
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "Ezin izan da iradokizuna ezkutatu, egiaztatu zure Interneteko konexioa"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr "Ezin izan da baztertu batzeko eskaera"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr "Ezin izan da txat taldean sartu. Mesedez, saiatu berriro."
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "Ezin izan da SMS aplikazioa abiarazi"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "Ezin izan da txat taldea utzi"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Ezin izan dira elkarrizketak kargatu"
@@ -4456,17 +4599,8 @@ msgstr "Ezin izan dira feedak kargatu"
msgid "Failed to load feeds preferences"
msgstr "Ezin izan dira kargatu feeden hobespenak"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Ezin izan dira jakinarazpenen ezarpenak kargatu."
@@ -4493,16 +4627,15 @@ msgstr "Ezin izan dira iradokitako feedak kargatu"
msgid "Failed to load suggested follows"
msgstr "Ezin izan dira kargatu iradokitako jarraipenak"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "Ezin izan da txat taldea itxi"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Ezin izan dira eskaera guztiak irakurri gisa markatu"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "Ezin izan da txat taldea mututu"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Ezin izan da posta ainguratu"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Germ DM berriro konektatzeak huts egin du. Errorea: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Ezin izan dira datuak ezabatu. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Errorea emoji errakzioa kentzerakoan"
@@ -4542,15 +4675,19 @@ msgstr "Ezin izan da txat taldeko kidea ezabatu"
msgid "Failed to remove verification"
msgstr "Ezin izan da egiaztapena kendu"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr "Ezin izan da zure eskaera bertan behera utzi. Mesedez, saiatu berriro."
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr "Ezin izan da kokapena ebatzi. Mesedez, saiatu berriro."
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Ezin izan da zirriborroa gorde"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "Ezin izan da irudia gorde"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Ezin izan dira zure interesak gorde."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Ezin izan da posta elektronikoa bidali. Mesedez, saiatu berriro."
@@ -4580,7 +4717,7 @@ msgstr "Ezin izan da salaketa bidali"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Ezin izan da apelazioa bidali. Mesedez, saiatu berriro."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Ezin izan da mututu/ez mututu haria. Mesedez, saiatu berriro"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr "Ezin izan da txat taldea ireki"
@@ -4597,12 +4734,12 @@ msgstr "Ezin izan da txat taldea ireki"
msgid "Failed to unpin list"
msgstr "Ezin izan da zerrenda ainguratik kendu"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Ezin izan dira 2FA posta elektroniko ezarpenak eguneratu"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Ezin izan da posta elektronikoa eguneratu. Mesedez, saiatu berriro."
@@ -4614,7 +4751,7 @@ msgstr "Ezin izan dira feedak eguneratu"
msgid "Failed to update notification declaration"
msgstr "Ezin izan da jakinarazpen-adierazpena eguneratu"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Ezin izan dira ezarpenak eguneratu"
@@ -4641,7 +4778,7 @@ msgstr "Kontu faltsua edo bot-a"
msgid "False information about elections"
msgstr "Hauteskundeei buruzko informazio faltsua"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Feeda"
@@ -4649,7 +4786,7 @@ msgstr "Feeda"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "{0}-ren feeda"
@@ -4662,7 +4799,7 @@ msgstr "Feed sortzailea"
msgid "Feed identifier"
msgstr "Feed identifikatzailea"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Feed menua"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Iritzia feedaren operadoreari bidali zaio"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Feedak"
@@ -4739,7 +4876,7 @@ msgstr "Iragazi bilaketa hizkuntzaren arabera (oraingoa: {currentLanguageLabel})
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Iragazi nork aukera dezakeen zure jardueraren jakinarazpenak jasotzea"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Iragazi noren jakinarazpenak jasotzen dituzun"
@@ -4747,11 +4884,11 @@ msgstr "Iragazi noren jakinarazpenak jasotzen dituzun"
msgid "Finalizing"
msgstr "Amaitzen"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Azkenean!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Finantzak"
msgid "Find accounts to follow"
msgstr "Aurkitu jarraitu beharreko kontuak"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Bilatu Kontaktuak"
@@ -4799,7 +4936,7 @@ msgstr "Aurkitu jarraitzeko jendea"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Aurkitu postak, erabiltzaileak eta feedak Bluesky-n"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Bilatu zure lagunak"
@@ -4944,8 +5081,12 @@ msgstr "Jarraitua <0>{0}0>-gatik eta <1>{1}1>-gatik"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Jarraitua <0>{0}0>-gatik, <1>{1}1>-gatik eta {2, plural, one {#-gatik} other {#-gatik}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr "Jarraitzaileak sar daitezke"
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Ezagutzen dituzun @{0}-ren jarraitzaileak"
@@ -4995,19 +5136,16 @@ msgstr "{handle}-ri jarraitzen"
msgid "Following feed preferences"
msgstr "Jarraitzen dituzun feeden hobespenak"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Jarraitzen dituzun Feeden Hobespenak"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Jarraitzen dizu"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Jarraitzen Dizu"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Letra-tipoa"
@@ -5069,7 +5207,7 @@ msgstr "Ahaztuta?"
msgid "Free your feed"
msgstr "Askatu zure feeda"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "Nondik"
@@ -5086,35 +5224,35 @@ msgstr "<0/>-tik"
msgid "Generate a starter pack"
msgstr "Abio multzo bat sortu"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Sortu gonbidapen-esteka"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Sortu gonbidapen-esteka berria"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Sortu esteka berria"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germen DM deskonektatuta"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Germen DM Esteka"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germen DM berriro konektatuta"
@@ -5122,46 +5260,50 @@ msgstr "Germen DM berriro konektatuta"
msgid "Get help"
msgstr "Laguntza"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr "Jaso jakinarazpena abio-multzoan sartzean, egiaztatzean eta bestelako jardueretan."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Jaso jakinarazpenak jendeak jarraitzen zaituenean."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Jaso jakinarazpenak jendeari berpostatu dituzun postak gustatzen zaizkionean."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Jaso jakinarazpenak jendeari zure postak gustatzen zaizkionean."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr "Jaso jakinarazpenak jendeari zure berpostak gustatzen zaizkionean."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Jaso jakinarazpenak jendea aipatzen zaituenean."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Jaso jakinarazpenak jendeak zure postak aipatzen dituenean."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Jaso jakinarazpenak jendeak zure postak erantzuten dituenean."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Jaso jakinarazpenak jendeak zure berpostak berriro berpostatzen dituenean."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Jaso jakinarazpenak jendeak zure postak berpostatzen dituenean."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr "Jaso jakinarazpenak jendeak zure berpostak berpostatzen dituenean."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr "Jaso jakinarazpenak harpidetuta zauden postetan jarduera dagoenean."
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Jaso jakinarazpenak post berriei buruz"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Jaso jakinarazpenak aukeratzen dituzun kontuetako post eta erantzunen inguruan."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Jaso {name}-ren post berrien jakinarazpenak"
@@ -5174,27 +5316,27 @@ msgstr "Jaso kontu honen jardueraren jakinarazpenak"
msgid "Get notified when {name} posts"
msgstr "Jaso jakinarazpena {name}-k posteatzen duenean"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Jaso jakinarazpena norbaitek posteatzen duenean"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Hasi"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIFa igo da"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Eman aurpegia zure profilari"
@@ -5213,20 +5355,21 @@ msgstr "Indarkeriaren gorazarrea"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Itzuli"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Itzuli"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Itzuli aurreko urratsera"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Joan hasierara"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Joan hasierara"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Joan Hasierara"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Joan kontuaren ezarpenetara"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Joan {0}rekin elkarrizketara"
@@ -5299,12 +5440,12 @@ msgstr "Joan hurrengora"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Joan profilera"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "Joan \"{chatName}\" izeneko txat taldera"
@@ -5320,8 +5461,8 @@ msgstr "Joan erabiltzailearen profilera"
msgid "Going live is currently disabled for your account"
msgstr "Zure kontuan desgaituta dago zuzeneko emanaldia"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Ulertu dut"
@@ -5340,59 +5481,75 @@ msgstr "Eduki grafiko bortitza"
msgid "Grooming or predatory behavior"
msgstr "Jokabide harrapari edo grooming-a"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr "Txat taldea"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "Txat taldearen gonbidapen-esteka elkarrizketa-koadroa"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "Txat taldea itxita dago"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "Txat taldea mutututa dago"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr "Txat taldearen izena eguneratu da"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "Txat taldearen ezarpenak"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "Txat taldea irekita dago"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "Txat taldea desmututa dago"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr "Txat taldeak ez daude oraindik eskuragarri"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr "Txat taldeak eskuragarri daude orain"
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr "Txat taldetan gehienez {0, plural, other {# pertsona}} egon daitezke."
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "Taldea itxita dago"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Taldearen izena"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr "Taldearen izena luzeegia da. Gehienezko karaktere kopurua {MAX_GROUP_NAME_GRAPHEME_LENGTH} da."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Hacking edo sistema erasoak"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Handle luzeegia. Mesedez, saiatu laburrago batekin."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "Orain gertatzen ari da"
@@ -5446,7 +5603,7 @@ msgstr "Jarduera kaltegarriak edo arrisku handikoak"
msgid "Harming or endangering minors"
msgstr "Adingabeei kalte egitea edo arriskuan jartzea"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Traola"
@@ -5458,8 +5615,8 @@ msgstr "{tag} traola"
msgid "Hate speech"
msgstr "Gorrotozko diskurtsoa"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Baduzu koderik? <0>Egin klik hemen.0>"
@@ -5483,7 +5640,7 @@ msgstr "Bluesky-k 7 egunez gordetzen du gehiegikeria saihesteko, eta gero ezabat
msgid "Help"
msgstr "Laguntza"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Lagundu jendeari jakiten ez zarela bot bat argazki bat kargatuz edo abatar bat sortuz."
@@ -5652,18 +5809,18 @@ msgstr "Mmmmm, badirudi arazoak ditugula datu hauek kargatzeko. Ikus behean xehe
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Mmmmm, ezin izan dugu kargatu moderazio-zerbitzu hori."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Eutsi! Pixkanaka bideorako sarbidea ematen ari gara, eta ilaran zain zaude oraindik. Begiratu berriro laster!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Geldi hor! Ezaugarri hau ez dago oraindik eskuragarri zuretzat. Mesedez, saiatu berriro geroago."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Hasiera"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Autazko testua luzea bada, autazko testuaren hedapen egoera aldatzen du"
@@ -5757,7 +5914,7 @@ msgstr "Zerrenda hau ezabatzen baduzu, ezin izango duzu berreskuratu."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Zure domeinua baduzu, hori erabil dezakezu handle gisa. Honek zure nortasuna egiaztatzeko aukera ematen dizu. <0>Lortu informazio gehiago hemen.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Zure posta elektronikoa eguneratu behar baduzu, <0>egin klik hemen0>."
@@ -5765,7 +5922,7 @@ msgstr "Zure posta elektronikoa eguneratu behar baduzu, <0>egin klik hemen0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Post hau kentzen baduzu, ezin izango duzu berreskuratu."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Zure helbide elektronikoa eguneratzen baduzu, posta elektronikoaren 2FA desgaitu egingo da."
@@ -5773,7 +5930,6 @@ msgstr "Zure helbide elektronikoa eguneratzen baduzu, posta elektronikoaren 2FA
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Pasahitza aldatu nahi baduzu, kode bat bidaliko dizugu zure kontua dela egiaztatzeko."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Zure kontuaren jardueraren jakinarazpenak nork jaso ditzakeen mugatu nahi baduzu, hau alda dezakezu <0>Ezarpenak → Pribatutasuna eta Segurtasuna0> atalean."
@@ -5786,23 +5942,33 @@ msgstr "Garatzailea bazara, zure zerbitzari propioa osta dezakezu."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr "Baztertu"
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr "Baztertu sarrera eskaera"
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Irudia"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "Irudia {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Irudia {0} / {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "Irudia {0} / {imageCount}"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Irudien cachea garbituta, {0} askatuta"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "Irudi galeria, {0} irudi"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "Irudia ezkutatuta dago zure moderazio-ezarpenengatik."
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "Irudia ez dago erabilgarri."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Irudiaren aukerak"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Imitazioa"
msgid "Import contacts"
msgstr "Inportatu kontaktuak"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Inportatu Kontaktuak"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Inportatu kontaktuak zure lagunak aurkitzeko"
@@ -5881,40 +6047,40 @@ msgstr "Inportatua {0}-n"
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 "Adinari egokitutako esperientzia eskaintzeko, zure jaiotze data jakin behar dugu. Behin bakarrik egingo da, eta zure datuak pribatuan gordeko dira."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "Aplikazioan"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Jakinarazpenak aplikazioan"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "Aplikazioan, Guztiontzat"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr "Aplikazioan, guztiontzat"
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "Aplikazioan, Jarraitzen duzun jendea"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr "Aplikazioan, jarraitzen duzun jendea"
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "Aplikazioan, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr "Aplikazioan, push"
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "Aplikazioan, Push, Guztiontzat"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr "Aplikazioan, push, guztiontzat"
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "Aplikazioan, Push, Jarraitzen duzun jendea"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr "Aplikazioan, push, jarraitzen duzun jendea"
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "Sarrerako ontzia hutsik"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Sarrera-ontzia hutsik!"
@@ -5963,6 +6129,10 @@ msgstr "Gordetako postak, hau da, laster-markak, aurkeztea"
msgid "Invalid 2FA confirmation code."
msgstr "2FA baieztapen kode baliogabea."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr "Txat taldeko kode baliogabea."
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Handle baliogabea. Mesedez, saiatu beste bat."
@@ -5977,10 +6147,14 @@ msgstr "Interakzio-ezarpen baliogabeak."
msgid "Invalid phone number"
msgstr "Telefono zenbaki baliogabea"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Salaketa izenburua ez da zuzena"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr "Bertan behera uzteko eskaera baliogabea."
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Egiaztapen-kode baliogabea"
@@ -6010,12 +6184,12 @@ msgstr "Gonbidatu Lagunak"
msgid "Invite friends <0/>"
msgstr "Gonbidatu lagunak <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Gonbidapen-esteka"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "Gonbidapen-esteka sortuta"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "Gonbidapen-esteka desgaituta"
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Oraintxe bakarrik zaude! Gehitu jende gehiago zure abio multzoari goiko bilaketan."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "Lan ID: {0}"
@@ -6083,6 +6257,11 @@ msgstr "Lan ID: {0}"
msgid "Jobs"
msgstr "Lanak"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr "Sartu"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Lanak"
msgid "Join Bluesky"
msgstr "Sartu Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr "Sartu txat taldean"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr "Sartzeko eskaera bertan behera utzi da."
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Bat egin elkarrizketan"
msgid "Journalism"
msgstr "Kazetaritza"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Jarraitu editatzen"
@@ -6143,7 +6331,7 @@ msgstr "Etiketak zure kontuan"
msgid "Labels on your content"
msgstr "Etiketak zure edukian"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Hizkuntza Ezarpenak"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Azkena"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Gehiago ikasi abisu honi buruz"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Ikasi gehiago Bluesky-n egiaztapenari buruz (ingelesez)"
@@ -6239,7 +6427,7 @@ msgstr "Ikasi gehiago Bluesky-n egiaztapenari buruz (ingelesez)"
msgid "Learn more about what is public on Bluesky."
msgstr "Gehiago ikasi Bluesky-n publikoa denari buruz."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Lortu informazio gehiago zure Germ DM estekari buruz"
@@ -6252,8 +6440,8 @@ msgstr "Informazio gehiago zure <0>kontuaren ezarpenetan.0>"
msgid "Learn more."
msgstr "Ikasi gehiago."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Utzi"
@@ -6276,7 +6464,7 @@ msgstr "Utzi txata"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Utzi elkarrizketa"
@@ -6284,13 +6472,13 @@ msgstr "Utzi elkarrizketa"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Utzi elkarrizketa"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "Utzi txat taldea"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr "Utzi txat talde hau"
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Argia"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Gogoko ({0, plural, one {gogoko #} other {# gogoko}})"
@@ -6346,11 +6534,7 @@ msgstr "10 post gogoko egin"
msgid "Like 10 posts to train the Discover feed"
msgstr "Aurkitu feeda trebatzeko 10 post gogoko egin"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Gustoko jakinarazpenak"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Feed hau gogoko dut"
@@ -6358,8 +6542,8 @@ msgstr "Feed hau gogoko dut"
msgid "Like this labeler"
msgstr "Etiketatzaile hau gogoko dut"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Gogoko du"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Gogoko du {0, plural, one {# erabiltzaileak} other {# erabiltzaileek}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Gogoko du {likeCount, plural, one {# erabiltzaileak} other {# erabiltzaileek}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Gogoko"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Zure berposten gustokoak"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Zure berpost jakinarazpenen gustokoak"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Gogoko post honetan"
@@ -6409,11 +6589,11 @@ msgstr "Gogoko post honetan"
msgid "Linear"
msgstr "Lineala"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "Esteka arbelean kopiatua"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Zerrenda"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Zerrenda desmutututa"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Zerrendak"
@@ -6545,7 +6725,7 @@ msgstr "Zuzeneko gertaera ez ezkutatua"
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."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "Zuzeneko funtzioa betan dago"
@@ -6595,27 +6775,27 @@ msgstr "Posten interakzio-ezarpenak kargatzen..."
msgid "Loading..."
msgstr "Kargatzen..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "Itxi"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "Itxi txat taldea"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "Txat taldea itxi?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "Itxi txat talde hau"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "Itxita"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Erregistroa"
@@ -6662,7 +6842,7 @@ msgstr "Badirudi jarraipen feed bat falta zaizula. <0>Egin klik hemen bat gehitz
msgid "Love GIFs"
msgstr "Maitasun GIFak"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Egin doikuntzak zure kontuko posta elektronikoaren ezarpenetan"
@@ -6687,9 +6867,8 @@ msgstr "Kudeatu egiaztapen-ezarpenak"
msgid "Manage your muted words and tags"
msgstr "Kudeatu mutututa dauden hitzak eta etiketak"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Markatu denak irakurri gisa"
@@ -6698,13 +6877,12 @@ msgstr "Markatu denak irakurri gisa"
msgid "Mark as read"
msgstr "Markatu irakurri gisa"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Denak irakurri gisa markatuta"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Agian beranduago"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Publiko batzuentzat kezkagarriak edo desegokiak izan daitezkeen multimediak."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Kideak"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "Kideek txat-historia irakur dezakete oraindik, baina ezin dute mezu berririk bidali."
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Aipamen jakinarazpenak"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "aipatutako erabiltzaileak"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Aipamenak"
@@ -6775,22 +6949,22 @@ msgstr "Mezua {0}"
msgid "Message {displayName}"
msgstr "Mezua {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Mezua ezabatuta"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Mezua ezabatuta"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Ezin izan da bidali mezua."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "@{0}-ren mezua: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Mezua luzeegia da"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "Mezua luzeegia da ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Mezuaren aukerak"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Mezuak"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr "Pertsona honen mezuak ezkutatuta daude blokeatzen zaituzten bitartean."
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr "Pertsona honen mezuak ezkutatuta daude blokeatzen dituzun bitartean."
@@ -6838,10 +7012,6 @@ msgstr "Gauerdia"
msgid "Minor harassment or bullying"
msgstr "Adingabe bati jazarpen edo bullying-a"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Hainbat jakinarazpen"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Engainagarria"
@@ -6850,7 +7020,7 @@ msgstr "Engainagarria"
msgid "Missing media"
msgstr "Falta diren multimediak"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderazioa"
@@ -6894,7 +7064,7 @@ msgstr "Moderazio-zerrenda eguneratuta"
msgid "Moderation lists"
msgstr "Moderazio zerrendak"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Moderazio Zerrendak"
@@ -6903,7 +7073,7 @@ msgstr "Moderazio Zerrendak"
msgid "moderation settings"
msgstr "moderazio ezarpenak"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Moderazio-egoerak"
@@ -6949,7 +7119,7 @@ msgstr "Pelikulak"
msgid "Music"
msgstr "Musika"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Mututu"
@@ -6994,7 +7164,7 @@ msgstr "Mututu zerrenda"
msgid "Mute these accounts?"
msgstr "Kontu hauek mututu?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "Mututu txat talde hau"
@@ -7032,7 +7202,7 @@ msgstr "Mututu haria"
msgid "Mute words & tags"
msgstr "Mututu hitzak eta etiketak"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "Mutututa"
@@ -7040,7 +7210,7 @@ msgstr "Mutututa"
msgid "Muted accounts"
msgstr "Mutututako kontuak"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Mutututako Kontuak"
@@ -7108,8 +7278,8 @@ msgstr "Hurrengo pantailara nabigatzen da"
msgid "Navigates to your profile"
msgstr "Zure profilera nabigatzen du"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Copyright urraketa, eskaera legal edo araudi-betetze arazo baten berri eman behar duzu?"
@@ -7136,34 +7306,34 @@ msgstr "{firstAuthorLink}-rena {postsCount, plural, one {post berria} other {pos
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{firstAuthorName}-ren {postsCount, plural, one {post berria} other {post berriak}}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Txat berria"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "Txat berria {0}-rekin"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "Txat berria {0} eta {1}-rekin"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "Txat berria {0}, {1}, eta {memberCount, plural, one {{memberCount} gehiagorekin} other {{memberCount} gehiagorekin}}."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "E-posta helbide berria"
@@ -7174,29 +7344,25 @@ msgstr "E-posta helbide berria"
msgid "New Feature"
msgstr "Ezaugarri Berria"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Jarraitzaile berrien jakinarazpenak"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Jarraitzaile berriak"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "Txat talde berria"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "Txat talde berria"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "Txat talde berria honekin:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Post berria"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Post berria"
@@ -7262,8 +7428,8 @@ msgstr "Berriak"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "Ez da GIFik aurkitu \"{query}\"-rentzat."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "Ez dago GIFik erakusteko une honetan. Saiatu berriro une batean."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Irudirik ez"
@@ -7362,7 +7528,7 @@ msgstr "Jada ez da {0} jarraitzen"
msgid "No media yet"
msgstr "Oraindik ez dago multimediarik"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Oraindik ez dago mezurik"
@@ -7378,12 +7544,12 @@ msgstr "Izenik gabe"
msgid "No notifications yet!"
msgstr "Oraindik ez dago jakinarazpenik!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Inor ez"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Inor ez"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Ez dago emaitzarik"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Ez dago emaitzarik"
@@ -7509,10 +7675,6 @@ msgstr "Baimenik gabeko irudi intimoak"
msgid "Non-sexual Nudity"
msgstr "Biluztasun ez sexuala"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Bat ere ez"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "Ez dago eskuragarri plataforma honetan."
msgid "Not followed by anyone you’re following"
msgstr "Ez dio jarraitzen zuk jarraitzen diozun inork"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Ez da aurkitu"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Ez zaude posta argitaratzeko prest? Gorde zure ideiarik onenak Zirriborroetan, une egokia iritsi arte."
@@ -7548,44 +7710,31 @@ msgstr "Oharra: Post hau saioa hasi duten erabiltzaileentzat bakarrik ikus daite
msgid "Nothing saved yet"
msgstr "Ez da ezer gorde oraindik"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Jakinarazpen-ezarpenak"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Jakinarazpen soinuak"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Jakinarazpenak"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Beste guztiaren jakinarazpenak, adibidez, norbait zure abio-multzo baten bidez sartzen denean."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "orain"
@@ -7601,7 +7750,7 @@ msgstr "Zenbakia mugikor bat izan behar da"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Itzalita"
@@ -7623,7 +7772,8 @@ msgstr "Ados"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "<0><1/><2><3/>2>0>-n"
msgid "Onboarding reset"
msgstr "Sartzea berrezarri"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
-msgstr ""
+msgstr "Hautatutako hartzaileetako batek ez ditu txat taldeak onartzen."
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Hautatutako hartzaileetako batek blokeatu zaitu eta ezin zaio mezurik bidali."
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "GIF bati edo gehiagori aukerazko testua falta zaio."
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "Irudi bati edo gehiagori aukerazko testua falta zaio."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr "Hautatutako fitxategi bat edo gehiago handiegiak dira. Gehienezko tamaina {VIDEO_MAX_SIZE_MB} MB da."
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Post bat edo gehiago luzeegiak dira zirriborro gisa gordetzeko. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Gehienezko karaktere kopurua karaktere # da.} other {Gehienezko karaktere kopurua # karaktere dira.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Bideo bati edo gehiagori aukerazko testua falta zaio."
@@ -7685,6 +7835,26 @@ msgstr "Bideo bati edo gehiagori aukerazko testua falta zaio."
msgid "Only {0} can reply."
msgstr "{0}-k bakarrik erantzun dezake."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr "{1}-etik {0} irudi bakarrik gehitu {2, plural, one {da} other {dira}}; muga {MAX_GALLERY_IMAGES} da"
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr "Administratzaileek soilik onartu ditzakete sartzeko eskaerak."
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr "Administratzaileek soilik baztertu ditzakete sartzeko eskaerak."
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr "Jarraitzaileak soilik sartu daitezke txat talde honetan."
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Jarraitzen ditudan jarraitzaileak bakarrik"
msgid "Only image files are supported"
msgstr "Irudi-fitxategiak soilik onartzen dira"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr "{0}-k jarraitzen duen jendea bakarrik sar daiteke."
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr "Txataren jabeak jarraitzen duen jendea bakarrik sar daiteke"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "WebVTT (.vtt) fitxategiak soilik onartzen dira"
@@ -7712,7 +7892,7 @@ msgstr "Arazoren bat izan da!"
msgid "Oops!"
msgstr "Ups!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Ireki abatar sortzailea"
@@ -7720,12 +7900,17 @@ msgstr "Ireki abatar sortzailea"
msgid "Open camera"
msgstr "Ireki kamera"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr "Ireki txata"
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "Ireki {displayName}-ri txat-kide aukerak"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Ireki elkarrizketa aukerak"
@@ -7739,16 +7924,16 @@ msgstr "Ireki marrazki menua"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Ireki emoji-hautatzailea"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Ireki feedaren informazio pantaila"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Ireki feed aukeren menua"
@@ -7760,13 +7945,17 @@ msgstr "Ireki emoji zerrenda osoa"
msgid "Open Germ DM"
msgstr "Ireki Germ DM"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr "Ireki txat taldea"
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "Ireki txat taldearen ezarpenak"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Ireki esteka {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Ireki multzoa"
msgid "Open post options menu"
msgstr "Ireki post aukeren menua"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Ireki profila"
@@ -7817,6 +8006,10 @@ msgstr "Ireki ipuin liburuaren orria"
msgid "Open system log"
msgstr "Ireki sistemaren erregistroa"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr "Ireki txat talde hau"
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Arazketa-sarrera baten xehetasun gehigarriak irekitzen ditu"
msgid "Opens alt text dialog"
msgstr "Aukerazko testuaren elkarrizketa-koadroa irekitzen du"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Kamera irekitzen du gailuan"
@@ -7858,22 +8051,24 @@ msgstr "Konpositorea irekitzen du"
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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr "Gailuaren galeria irekitzen du gehienez {MAX_GALLERY_IMAGES, plural, other {# irudi}}, edo bideo edo GIF bakarra hautatzeko."
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Fluxua irekitzen du Bluesky kontu berri bat sortzeko"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Fluxua irekitzen du lehendik duzun Bluesky kontuan saioa hasteko"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Irudi osoa irekitzen du"
@@ -7890,7 +8085,7 @@ msgstr "Irudi-hautatzailea irekitzen du"
msgid "Opens link {0}"
msgstr "{0} esteka irekitzen du"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Zuzeneko egoeraren elkarrizketa-koadroa irekitzen du"
@@ -7919,9 +8114,9 @@ msgstr "Post-konpositorea irekitzen du"
msgid "Opens this draft in the composer"
msgstr "Zirriborro hau konpositorean irekitzen du"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Profil hau irekitzen du"
@@ -7997,12 +8192,12 @@ msgstr "Gure blogeko argitalpena"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Gure moderazio taldeak zure salaketa jaso du."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Gure moderatzaileek salaketak berrikusi dituzte eta Bluesky-ko txatetarako sarbidea desgaitzea erabaki dute."
@@ -8010,16 +8205,17 @@ msgstr "Gure moderatzaileek salaketak berrikusi dituzte eta Bluesky-ko txatetara
msgid "Owner"
msgstr "Jabea"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr "Jabeak taldea itxi behar du irten aurretik."
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Orria ez da aurkitu"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Orria Ez da Aurkitu"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Pausatu bideoa"
msgid "People"
msgstr "Jendea"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "{ownerName}-ri jarraitzen dioten pertsonek berehala bat egin dezakete"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "{ownerName} jarraitzen duten pertsonek eska dezakete bat egiteko"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "@{0}-k jarraitzen duen jendea"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "@{0}-ri jarraitzen dion jendea"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Jarraitzen ditudan pertsonak"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "Nik jarraitzen ditudan pertsonek berehala bat egin dezakete"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "Nik jarraitzen ditudan pertsonek eska dezakete bat egiteko"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Helduentzako pentsatutako irudiak."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Ainguratu feeda"
@@ -8152,7 +8348,7 @@ msgstr "Ainguratu feeda"
msgid "Pin to home"
msgstr "Ainguratu hasierara"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Ainguratu Hasierara"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Ainguratua"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} Hasierara ainguratua"
@@ -8236,7 +8432,7 @@ msgstr "Mesedez, zure handle-a aukeratu"
msgid "Please choose your password."
msgstr "Mesedez, zure pasahitza aukeratu"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Mesedez, egin klik bidali dizugun mezu elektronikoan dagoen estekan zure helbide elektroniko berria egiaztatzeko. Urrats garrantzitsua da hau Bluesky-ren funtzio guztiez gozatzen jarrai dezazun."
@@ -8244,7 +8440,7 @@ msgstr "Mesedez, egin klik bidali dizugun mezu elektronikoan dagoen estekan zure
msgid "Please complete the verification captcha."
msgstr "Mesedez, bete egiaztapen-captcha."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Mesedez, berretsi zure helbide elektronikoa bideoak kargatzeko."
@@ -8265,14 +8461,14 @@ msgstr "Sartu pasahitza. Gutxienez 8 karaktereko luzera izan behar du."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Mesedez, sartu izen esklusibo bat aplikazio honen pasahitzarentzat edo erabili gure ausaz sortutakoa."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Mesedez, sartu baliozko kode bat."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Mesedez, sartu baliozko helbide elektroniko bat."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Mesedez, sartu baliozko eta ez-aldi baterako helbide elektroniko bat. Baliteke etorkizunean helbide elektroniko honetara sartu behar izatea."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Mesedez, sartu behean <0>{0}0> helbidera bidali dugun kodea."
@@ -8293,7 +8489,7 @@ msgstr "Mesedez, sartu behean <0>{0}0> helbidera bidali dugun kodea."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Mesedez, sartu jaso duzun kodea eta erabili nahi duzun pasahitz berria."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Mesedez, sartu zure aurreko helbide elektronikora bidali dizugun segurtasun-kodea."
@@ -8306,7 +8502,7 @@ msgstr "Mesedez, sartu zure helbide elektronikoa."
msgid "Please enter your invite code."
msgstr "Mesedez, sartu zure gonbidapen kodea."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Mesedez, sartu zure helbide elektroniko berria."
@@ -8323,7 +8519,7 @@ msgstr "Mesedez, sartu zure erabiltzaile-izena"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Mesedez, azaldu zergatik uste duzun etiketa hau gaizki aplikatu duela {0}-k"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Mesedez, azaldu zergatik uste duzun zure txatak gaizki desgaitu zirela"
@@ -8366,7 +8562,7 @@ msgstr "Mesedez, erabili aplikazio natiboa zure kontaktuak inportatzeko."
msgid "Please use the native app to sync your contacts."
msgstr "Mesedez, erabili aplikazio natiboa zure kontaktuak sinkronizatzeko."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Mesedez, egiazttu zure helbide elektronikoa"
@@ -8383,7 +8579,7 @@ msgstr "Politika"
msgid "Porn"
msgstr "Pornografia"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Posteatu"
@@ -8403,12 +8599,12 @@ msgstr "Argazki bat posteatu"
msgid "Post a video"
msgstr "Bideo bat posteatu"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Posteatu Dena"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Posteatu hala ere"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Post blokeatuta"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "@{0}-ren posta"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Posta ezabatuta"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Ezin izan da posta kargatu. Egiaztatu Interneteko konexioa eta saiatu berriro."
@@ -8454,7 +8650,7 @@ msgstr "Zuk Ezkututako Posta"
msgid "Post interaction settings"
msgstr "Postaren elkarrekintza-ezarpenak"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Postaren Interakzio-Ezarpenak"
@@ -8464,8 +8660,8 @@ msgstr "Postaren Interakzio-Ezarpenak"
msgid "Post language selection"
msgstr "Postaren hizkuntza hautatzea"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Post esteka"
@@ -8491,7 +8687,6 @@ msgstr "Postaren aingura kendu da"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Postak mututu daitezke testuaren, etiketen edo bietan oinarrituta. Post
msgid "Posts hidden"
msgstr "Post ezkutuak"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Postak, Erantzunak"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Engainagarria izan daitekeen esteka"
@@ -8528,6 +8719,7 @@ msgstr "Sakatu berriro konektatzen saiatzeko"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Sakatu berriro saiatzeko"
@@ -8536,7 +8728,7 @@ msgstr "Sakatu berriro saiatzeko"
msgid "Press to view followers of this account that you also follow"
msgstr "Sakatu zuk ere jarraitzen duzun kontu honen jarraitzaileak ikusteko"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Aurrebista"
@@ -8559,21 +8751,20 @@ msgstr "Pribatutasuna"
msgid "Privacy and security"
msgstr "Pribatutasuna eta segurtasuna"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Pribatutasuna eta Segurtasuna"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Pribatutasun eta Segurtasun ezarpenak"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Pribatutasun Politika"
msgid "Privacy violation of a minor"
msgstr "Adingabe baten pribatutasun urraketa"
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "GIFa prozesatzen..."
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Bideoa prozesatzen..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Prozesatzen..."
@@ -8602,8 +8793,8 @@ msgstr "Prozesatzen..."
msgid "profile"
msgstr "profila"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Argitaratu posta"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Argitaratu postak"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Argitaratu erantzunak"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Argitaratu erantzuna"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Push"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Push jakinarazpenak"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
-msgstr "Push, Guztiontzat"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr "Push, guztiontzat"
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "Push, Jarraitzen duzun jendea"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr "Push, jarraitzen duzun jendea"
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "QR kodea deskargatu da!"
msgid "QR code saved to your camera roll!"
msgstr "QR kodea gorde da zure kameran!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Aipamen jakinarazpenak"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Post aipamenak desgaituta daude"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Aipamenak"
@@ -8733,11 +8920,11 @@ msgstr "Tarifa-muga gainditu da. Mesedez, saiatu berriro geroago."
msgid "Re-attach quote"
msgstr "Erantsi berriro aipamena"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Gaitu berriro gonbidapen-esteka"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Gaitu berriro esteka"
@@ -8745,8 +8932,8 @@ msgstr "Gaitu berriro esteka"
msgid "React with {emoji}"
msgstr "Erreakzionatu {emoji}-rekin"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Erreakzioak"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "irakurri bilaketa-iragazkiak nola erabili"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Irakurri blogeko posta"
@@ -8812,11 +8999,11 @@ msgstr "Benetako jendea."
msgid "Reason for appeal"
msgstr "Apelazio arrazoia"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Jaso aplikazio barruko jakinarazpenak"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Jaso push jakinarazpenak"
@@ -8841,6 +9028,10 @@ msgstr "Gomendatua"
msgid "Reconnect"
msgstr "Berriro konektatu"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr "Freskatu orria ikusteko."
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Baztertu"
msgid "Reject chat request"
msgstr "Baztertu txateatzeko eskaera"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Berriz kargatu elkarrizketak"
@@ -8896,17 +9087,17 @@ msgstr "Kendu kontua"
msgid "Remove all contacts"
msgstr "Kendu kontaktu guztiak"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Kendu eranskina"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Kendu Abatarra"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Kendu Bannerra"
@@ -8914,8 +9105,9 @@ msgstr "Kendu Bannerra"
msgid "Remove caption file"
msgstr "Kendu azpitituluen fitxategia"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Kendu kapsulatzea"
@@ -8933,8 +9125,8 @@ msgstr "Feeda kendu?"
msgid "Remove from chat"
msgstr "Kendu txatetik"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Kendu gordetako postetatik"
msgid "Remove from your feeds?"
msgstr "Zure feedetatik kendu?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Kendu irudia"
@@ -9009,11 +9201,11 @@ msgstr "Kendu egiaztapena"
msgid "Remove your verification for this account?"
msgstr "Zure egiaztapena kendu kontu honi?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Egileak kenduta"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Zuk kenduta"
@@ -9035,7 +9227,7 @@ msgstr "Gordetako postetatik kendua"
msgid "Removed from starter pack"
msgstr "Abio multzotik kenduta"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Zuri erantzunda"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Erantzunak"
@@ -9104,14 +9295,14 @@ msgstr "Erantzunak desgaituta daude"
msgid "Replies to this post are disabled."
msgstr "Mezu honen erantzunak desgaituta daude."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Erantzun"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Erantzuna ({0, plural, one {erantzun #} other {# erantzun}})"
@@ -9125,10 +9316,6 @@ msgstr "Erantzuna Hariaren Egileak Ezkutatuta"
msgid "Reply Hidden by You"
msgstr "Erantzuna Zuk Ezkutatuta"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Erantzun jakinarazpenak"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Erantzun ezarpenak hariaren egileak aukeratzen ditu"
@@ -9146,9 +9333,9 @@ msgstr "Erantzunen ikusgarritasuna eguneratu da"
msgid "Reply was successfully hidden"
msgstr "Erantzuna behar bezala ezkutatu da"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Salatu"
@@ -9164,13 +9351,13 @@ msgstr "Salatu kontua"
msgid "Report conversation"
msgstr "Salatu elkarrizketa"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Salaketaren elkarrizketa-koadroa"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Salatu feeda"
@@ -9179,7 +9366,7 @@ msgstr "Salatu feeda"
msgid "Report list"
msgstr "Salatu zerrenda"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Salatu mezua"
@@ -9199,8 +9386,8 @@ msgstr "Salatu abio multzoa"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Salaketa bidalia"
@@ -9213,7 +9400,7 @@ msgstr "Salatu elkarrizketa hau"
msgid "Report this feed"
msgstr "Salatu feed hau"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "Salatu txat talde hau"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Salatu zerrenda hau"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Salatu zuzeneko emankizun hau"
@@ -9256,10 +9443,6 @@ msgstr "Berpostatu"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Berposta ({0, plural, one {berpost #} other {# berpost}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Berpost jakinarazpenak"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Zuk berpostatua"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Berpostak"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Berpostatu post hau"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Zure berposten berpostak"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Zure berposten berpost jakinarazpenak"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr "Eskatu txat talderako sarbidea"
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr "Eskaera onartua."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Eskaera kodea"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr "Eskaera baztertua."
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr "Sartzeko eskaera"
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr "Eskaera eginda"
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "Eskaerak"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr "Sartzeko eskaerak"
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Eskatu aukerazko testua argitaratu aurretik"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Eskatu posta-kode bat zure kontuan saioa hasteko."
@@ -9328,7 +9534,11 @@ msgstr "Beharrezkoa hornitzaile honetarako"
msgid "Required in your region"
msgstr "Beharrezkoa zure eskualdean"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr "Bertan behera utzi eskaera"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Berbidali"
@@ -9393,15 +9603,16 @@ msgstr "Azken ekintza berriro saiatzen da, errorea izan duena"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Azken ekintza berriro saiatzen da, errorea izan duena"
msgid "Retry"
msgstr "Saiatu berriro"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Saiatu berriro salaketa aukerak kargatzen"
@@ -9426,14 +9637,14 @@ msgstr "Saiatu berriro salaketa aukerak kargatzen"
msgid "Return to previous page"
msgstr "Itzuli aurreko orrialdera"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Hasierako orrira itzultzen da"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Aurreko orrialdera itzultzen da"
@@ -9454,7 +9665,7 @@ msgstr "GIF tristeak"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Gorde jaiotze data"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Gorde aldaketak"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Gorde aldaketak?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Gorde zirriborroa"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Gorde zirriborroa?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Gorde QR kodea"
msgid "Save these options for next time"
msgstr "Gorde aukera hauek hurrengo baterako"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Gorde nire feedetan"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Gordeta"
msgid "Saved Feeds"
msgstr "Gordetako Feedak"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Gordetako Postak"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Zure feedetan gordeta"
@@ -9551,8 +9764,8 @@ msgstr "Zure feedetan gordeta"
msgid "Say hello!"
msgstr "Esan kaixo!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "Esan kaixo norbaiti"
@@ -9576,18 +9789,18 @@ msgstr "Joan eskuinera"
msgid "Scroll to top"
msgstr "Joan gora"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Bilatu"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Bilatu @{0}-ren postak"
@@ -9667,7 +9880,7 @@ msgstr "Bilatu nire postak"
msgid "Search posts"
msgstr "Bilatu postak"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Bilatu profilak"
msgid "Search..."
msgstr "Bilatu..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Profilak bilatzen ditu"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Segurtasun urratsa behar da"
@@ -9759,7 +9972,7 @@ msgstr "Aukeratu {langName}"
msgid "Select a color"
msgstr "Aukeratu kolore bat"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Aukeratu arrazoi bat"
@@ -9828,7 +10041,7 @@ msgstr "Aukeratu GIF-a"
msgid "Select GIF \"{0}\""
msgstr "Aukeratu GIF-a \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "Hautatu txat taldeko kideak"
@@ -9850,7 +10063,7 @@ msgstr "Aukeratu hizkuntza..."
msgid "Select languages"
msgstr "Aukeratu hizkuntzak"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Aukeratu moderazio zerbitzua"
@@ -9904,11 +10117,11 @@ msgstr "Aukeratu zure interesak beheko aukeretatik"
msgid "Select your preferred language for translations in your feed."
msgstr "Aukeratu zure feedean itzulpenak egiteko nahi duzun hizkuntza."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Hautatu zure gogoko jakinarazpen kanalak"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "Ez da onartzen hainbat euskarri mota hautatzea."
@@ -9921,9 +10134,9 @@ msgstr "Autolesioak edo jokabide arriskutsuak"
msgid "Send code"
msgstr "Bidali kodea"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Bidali mezu elektronikoa"
@@ -9939,7 +10152,7 @@ msgstr "Bidali errore salaketa"
msgid "Send feedback"
msgstr "Bidali iritzia"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Bidali mezua"
@@ -9952,7 +10165,7 @@ msgstr "Bidali posta {name}-ri"
msgid "Send post to..."
msgstr "Bidali posta hona..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Bidali salaketa {title}-ra"
@@ -9960,7 +10173,7 @@ msgstr "Bidali salaketa {title}-ra"
msgid "Send the message from your phone"
msgstr "Bidali mezua zure telefonotik"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Bidali mezu zuzenaren bidez"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "Bidalia hemen: {0}"
@@ -10015,14 +10228,14 @@ msgstr "Ezarri zure jaiotze data behean eta berehala argitaratu eta arakatzen ja
msgid "Sets email for password reset"
msgstr "Pasahitza berrezartzeko posta elektronikoa ezartzen du"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Ezarpenak"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Besteen jardueraren ezarpenak"
@@ -10030,39 +10243,39 @@ msgstr "Besteen jardueraren ezarpenak"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Zure posten berri beste batzuei emateko ezarpenak"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Gustoko jakinarazpenen ezarpenak"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Aipamen jakinarazpenen ezarpenak"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Jarraitzile berrien jakinarazpenen ezarpenak"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Beste guztiaren jakinarazpenen ezarpenak"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Zure berpost gustokoen jakinarazpenen ezarpenak"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Zure berpost berposten jakinarazpenen ezarpenak"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Aipamen jakinarazpenen ezarpenak"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Erantzun jakinarazpenen ezarpenak"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Berpost jakinarazpenen ezarpenak"
@@ -10079,10 +10292,12 @@ msgstr "Sexu-jarduera edo biluztasun erotikoa."
msgid "Sexually Suggestive"
msgstr "Sexu Lizuna"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Partekatu egilearen DID"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Partekatu irudia"
@@ -10124,7 +10339,7 @@ msgstr "Partekatu posta hemen:// URI"
msgid "Share QR code"
msgstr "Partekatu QR kodea"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Partekatu feed hau"
@@ -10151,7 +10366,7 @@ msgstr "Partekatu hemen..."
msgid "Share your contacts to find friends"
msgstr "Partekatu zure kontaktuak lagunak aurkitzeko"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Partekatutako Hobespenen Probatzailea"
@@ -10167,16 +10382,16 @@ msgstr "Erakutsi aukerazko testua"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Erakutsi hala ere"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "Erakutsi automatizazio etiketa"
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Erakutsi feedetako abisua eta iragazkia"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Erakutsi zuzenean zaudenean"
@@ -10297,15 +10512,17 @@ msgstr "Edukia erakusten du"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Hasi saioa edo sortu kontua"
msgid "Sign in or create your account to join the conversation!"
msgstr "Hasi saioa edo sortu zure kontua elkarrizketan sartzeko!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr "Hasi saioa gonbidapena onartzeko."
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Hasi saioa zerrendan ez dagoen kontuan"
@@ -10337,6 +10558,10 @@ msgstr "Hasi saioa zerrendan ez dagoen kontuan"
msgid "Sign in to Bluesky or create a new account"
msgstr "Hasi saioa Bluesky-n edo sortu kontu berri bat"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr "Hasi saioa txat talde honetarako sarbidea eskatzeko."
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Hasi saioa posta ikusteko"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Amaitu saioa"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Amaitu saioa"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Saioa amaitu?"
@@ -10391,7 +10616,7 @@ msgstr "Saltatu"
msgid "Skip contact sharing and continue to the app"
msgstr "Saltatu kontaktuak partekatzea eta jarraitu aplikaziora"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Post hutsak saltatu?"
@@ -10405,7 +10630,7 @@ msgstr "Saltatu sarrera eta hasi zure kontua erabiltzen"
msgid "Skip to next step"
msgstr "Hurrengo urratsera joan"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "diapositiba"
@@ -10413,7 +10638,7 @@ msgstr "diapositiba"
msgid "Smaller"
msgstr "Txikiagoa"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Gogorarazpena atzeratzen du"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "Norbaitek taldea utzi du"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Norbaitek erreakzionatu du {0}"
@@ -10487,17 +10712,22 @@ msgstr "Norbait kendua izan da"
msgid "Someone was removed from the group"
msgstr "Norbait taldetik kendu da"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr "Zerbait berria dago hemen"
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Zerbait ez zegoen ondo salatzen saiatzen ari zaren datuekin. Mesedez, jarri laguntzarekin harremanetan."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Zerbait gaizki joan da"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Arazoren bat izan da!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Arazoren bat izan da. Mesedez, saiatu berriro geroago."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Arazoren bat izan da. Mesedez, saiatu berriro."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Zerbait gaizki? Jakinaraziguzu."
@@ -10568,7 +10798,7 @@ msgstr "Kirolak"
msgid "Start a conversation, and it will appear here."
msgstr "Hasi elkarrizketa bat, eta hemen agertuko da."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Txat berria hasi"
@@ -10582,17 +10812,17 @@ msgstr "Hasi jendea gehitzen"
msgid "Start adding people!"
msgstr "Hasi jendea gehitzen!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Txata hasi"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Txat berria hasi {displayName}-rekin"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Abio Multzoa"
@@ -10654,12 +10884,12 @@ msgstr "Biltegia garbitu da, aplikazioa berrabiarazi behar duzu orain."
msgid "Stored as part of a secure code for matching with others"
msgstr "Besteekin bat etortzeko kode seguru baten barruan gordeta"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Ipuin liburua"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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-en erreproduzitzen ari zara? Ezarri zure zuzeneko egoera Bluesky-n zure avatarrari txapa bat gehitzeko. Sakatzean jendea zuzenean zure erreprodukziora eramango du."
@@ -10671,8 +10901,8 @@ msgstr "Twitch-en erreproduzitzen ari zara? Ezarri zure zuzeneko egoera Bluesky-
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Bidali"
@@ -10684,9 +10914,9 @@ msgstr "Bidali apelazioa"
msgid "Submit Appeal"
msgstr "Bidali Apelazioa"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Bidali salaketa"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Harpidetu"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr "Harpidetu {0}-n"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr "Harpidetu {publicationTitle}-ra {0}-n"
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Arrakasta"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Arrakasta!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr "Txat taldean sartu zara!"
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Behar bezala egiaztatu da"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Iradokitakoa"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Ilunabarra"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,20 +11014,20 @@ msgstr "Laguntza"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Ezaugarri honen laguntza ez dago oraindik zure herrialdean gaituta! Mesedez, saiatu berriro geroago."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
-msgstr ""
+msgstr "Etenda dauden kontuek ezin dute txat taldean parte hartu."
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
-msgstr ""
+msgstr "Etenda dauden kontuek ezin dute txatean parte hartu."
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Aldatu kontua"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Kontuak aldatu"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Aldatu {0}-ra"
@@ -10828,7 +11062,7 @@ msgstr "Etiketak soilik"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Sakatu behean Bluesky-k zure GPS kokapena atzitzeko aukera emateko. Ondoren, datu horiek erabiliko ditugu zure eskualdean eskuragarri dauden edukia eta funtzioak zehatzago zehazteko."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr "Sakatu xehetasunak ikusteko"
@@ -10854,33 +11088,51 @@ msgstr "Sakatu eguneratze hauek ulertu eta onartzen dituzula onartzeko eta Blues
msgid "Tap to close context menu"
msgstr "Ukitu testuinguru-menua ixteko"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr "Sakatu gonbidapen-esteka hau kopiatzeko"
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Sakatu baztertzeko"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr "Sakatu txat talde honetan berehala sartzeko"
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr "Sakatu txat talde hau irekitzeko"
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Sakatu ezabatzeko"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "Sakatu zure {0} erreakzioa ezabatzeko"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr "Sakatu txat talde honetan sartzeko sarbidea eskatzeko"
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Sakatu berriro saiatzeko"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "Sakatu {0} erreakzio erakusteko"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Sakatu erreakzio guztiak erakusteko"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Sakatu erreakzioak ikusteko"
@@ -10924,7 +11176,7 @@ msgstr "Baldintzak"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Testua eta etiketak"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Testua idazteko eremua"
@@ -11049,6 +11301,11 @@ msgstr "Hurrengo ezarpenak zure lehenetsitakoak bezala erabiliko dira post berri
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "Zure eskualdeko legeek heldua zarela egiaztatzea eskatzen dute funtzio batzuetara sartzeko. Sakatu informazio gehiago lortzeko."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr "Kideen mugara iritsi da."
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "Erantzuten ari zaren posta {suggestedLanguageName} hizkuntzan idatzita dagoela markatu du egileak. <0>{suggestedLanguageName}0> hizkuntzan erantzun nahi al duzu?"
@@ -11057,10 +11314,10 @@ msgstr "Erantzuten ari zaren posta {suggestedLanguageName} hizkuntzan idatzita d
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Pribatutasun-politika <0/>-ra eraman da"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
-msgstr "Hautatutako bideoa {videoSize} MB baino handiagoa da. Mesedez, saiatu berriro fitxategi txikiago batekin."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
+msgstr "Hautatutako bideoa {VIDEO_MAX_SIZE_MB} MB baino handiagoa da. Mesedez, saiatu berriro fitxategi txikiago batekin."
#: src/lib/hooks/useCleanError.ts:41
#: src/lib/strings/errors.ts:19
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "Ez dago gonbidapen-estekarik txat talde honetarako."
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "Arazo bat izan da GIFak kargatzen. Egiaztatu konexioa eta saiatu berriro."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "Arazo bat izan da zure internet konexioarekin, mesedez, saiatu berriro"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "Arazo bat izan da zure internet konexioarekin, mesedez, saiatu berriro"
msgid "There was an issue contacting the server"
msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko. Mesedez, egiaztatu Interneteko konexioa eta saiatu berriro."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Arazo bat izan da jakinarazpenak eskuratzean. Sakatu hemen berriro saiatzeko."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Arazo bat izan da postak eskuratzean. Sakatu hemen berriro saiatzeko."
@@ -11161,7 +11420,7 @@ msgstr "Arazo bat izan da zure zerbitzu informazioa eskuratzean"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Arazo bat izan da feed hau kentzean. Egiaztatu Interneteko konexioa eta saiatu berriro."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Apelazio hau <0>{sourceName}0> helbidera bidaliko da."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Apelazio hau Bluesky-ren moderazio zerbitzura bidaliko da."
@@ -11263,7 +11522,7 @@ msgstr "Apelazio hau Bluesky-ren moderazio zerbitzura bidaliko da."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "Egile honek bere postak saioa hasita duten pertsonentzat bakarrik ikusgai jartzea aukeratu du."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "Botoi honek Germ DM aplikazioa irekitzeko aukera ematen die beste batzuei mezu bat bidaltzeko. Bere ikusgarritasuna Germ DM aplikaziotik kudea dezakezu, edo zure Bluesky kontua Germ DM-tik guztiz deskonektatu dezakezu beheko botoian klik eginez."
@@ -11271,7 +11530,12 @@ msgstr "Botoi honek Germ DM aplikazioa irekitzeko aukera ematen die beste batzue
msgid "This chat has ended"
msgstr "Txat hau amaitu da"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr "Txat hau beteta dago"
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "Txat hau itxita dago"
@@ -11310,7 +11574,11 @@ msgstr "Eduki hau ez dago erabilgarri inplikatutako erabiltzaileetako batek best
msgid "This content is not viewable without a Bluesky account."
msgstr "Eduki hau ezin da ikusi Bluesky konturik gabe."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr "Elkarrizketa hau blokeatuta dago."
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Elkarrizketa ezabatuta edo desaktibatuta dagoen kontu batekin da. Sakatu
msgid "This draft will be permanently deleted."
msgstr "Zirriborro hau betiko ezabatuko da."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Helbide elektroniko hau zure kontuarekin lotuta dago dagoeneko."
@@ -11360,7 +11628,7 @@ msgstr "Feed hau jada ez dago sarean. <0>Ezagutu0> erakusten ari gara horren o
msgid "This handle is reserved. Please try a different one."
msgstr "Handle hau erreserbatuta dago. Mesedez, saiatu beste bat."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "Irudi hau ezin izan da erabili. Saiatu beste formatu batekin, adibidez, .jpg edo .png."
@@ -11368,6 +11636,18 @@ msgstr "Irudi hau ezin izan da erabili. Saiatu beste formatu batekin, adibidez,
msgid "This information is private and not shared with other users."
msgstr "Informazio hau pribatua da eta ez da beste erabiltzaileekin partekatzen."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr "Gonbidapen-esteka hau desgaitu egin da."
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr "Gonbidapen-esteka iraungi da"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr "Gonbidapen-esteka hau baliogabea da"
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "Hau egoera huts bat da"
@@ -11377,7 +11657,7 @@ msgstr "Hau egoera huts bat da"
msgid "This is not a valid link"
msgstr "Esteka hau ez da baliozkoa"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "Etiketa honek munduari jakinarazten dio kontu hau automatizatua dela. Aktibatuta badago, etiketa hau kontuaren izenaren ondoan agertuko da haien profilean eta postetan. Edozein unetan aktibatu edo desaktibatu daiteke."
@@ -11410,13 +11690,13 @@ msgstr "Zuk sortutako zerrenda honen izenak edo deskribapenak Bluesky-ren komuni
msgid "This list is empty."
msgstr "Zerrenda hau hutsik dago."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr "Mezu hau ezkutatuta dago erabiltzaile honek blokeatzen zaituelako."
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr "Mezu hau ezkutatuta dago erabiltzaile hau blokeatzen ari zarelako."
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Post honen egileak aipamenak desgaitu ditu."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Erantzun hau zure hariaren beheko aldean ezkutuko atal batean ordenatuko da eta hurrengo erantzunen jakinarazpenak mututuko ditu, bai zuretzako bai besteentzako."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "Pantaila hau taldeko elkarrizketetarako bakarrik dago eskuragarri."
@@ -11494,18 +11775,18 @@ msgstr "Erabiltzaile honek ez du bistaratzeko izenik, beraz, ezin da egiaztatu."
msgid "This user doesn't have any followers."
msgstr "Erabiltzaile honek ez du jarraitzailerik."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Erabiltzaile honek blokeatu zaitu eta ezin zaio mezurik bidali."
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr "Erabiltzaile honek blokeatu zaitu. Ezin duzu haren edukia ikusi."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
-msgstr ""
+msgstr "Erabiltzaile honek txata desgaitu du eta ezin zaio mezurik bidali."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
@@ -11574,7 +11855,7 @@ msgstr "Hariaren Hobespenak"
msgid "Threaded"
msgstr "Harikatua"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Harien Hobespenak"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Posta elektronikoaren 2FA metodoa desgaitzeko, mesedez egiaztatu helbide elektronikorako sarbidea duzula."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Zure posta elektronikoaren 2FA metodoa desgaitzeko, mesedez egiaztatu <0>{0}0>-ra sarbidea duzula"
@@ -11646,12 +11927,12 @@ msgstr "Joan gora"
msgid "Top replies first"
msgstr "Goiko erantzunak lehenik"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Gaia"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Joera Bideoak"
msgid "Trolling"
msgstr "Trolling-a"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "Konfiantza harremanetatik, komunitateetatik eta partekatutako testuinguruetatik sortzen da, beraz, <0>egiaztatzaile fidagarriak0> ere gaitzen ari gara: egiaztapena zuzenean jaulki dezaketen erakundeak."
@@ -11763,13 +12044,17 @@ msgstr "Ezin da zure zerbitzuarekin harremanetan jarri. Mesedez, egiaztatu zure
msgid "Unable to delete"
msgstr "Ezin da ezabatu"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
-msgid "Unable to find a selected recipient."
-msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr "Ezin dira eskuratu sarrera eskaerak."
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr "Ezin da hautatutako hartzailerik aurkitu."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
-msgstr ""
+msgstr "Ezin da hautatutako hartzailea aurkitu."
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
@@ -11791,7 +12076,7 @@ msgstr "Ez dago eskuragarri"
msgid "Unavailable feed information"
msgstr "Feedaren informazioa ez dago erabilgarri"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Desblokeatu zerrenda"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Desegin"
@@ -11872,7 +12157,7 @@ msgstr "Utzi kontua jarraitzeari"
msgid "Unfollows the user"
msgstr "Erabiltzailea jarraitzeari uzten dio"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Zoritxarrez, harpidetutako etiketatzaileetako batek ere ez du onartzen salaketa mota hau."
@@ -11904,13 +12189,13 @@ msgstr "Helduentzako etiketarik gabeko edukia"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Etiketarik gabeko, abusuzko edo baimenik gabeko helduentzako edukia"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Ez gogoko ({0, plural, one {gogoko #} other {# gogoko}})"
@@ -11918,7 +12203,7 @@ msgstr "Ez gogoko ({0, plural, one {gogoko #} other {# gogoko}})"
msgid "Unlock chat"
msgstr "Ireki txata"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr "Ireki txat talde hau"
@@ -11955,7 +12240,7 @@ msgstr "Elkarrizketa ez mututu"
msgid "Unmute list"
msgstr "Desmututu zerrenda"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "Desmututu txat talde hau"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Aingura kendu"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Feedari aingura kendu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Aingura kendu hasieratik"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Moderazio zerrendari aingura kendu"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0}-ri aingura kendu Hasieratik"
@@ -12030,11 +12315,11 @@ msgstr "Harpidetza kendu etiketatzaile honi"
msgid "Unsubscribed from list"
msgstr "Zerrendatik harpidetza kenduta"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "Onartzen ez den arbeleko edukia"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Bideo mota bateraezina: {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "Eguneratu"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Eguneratu <0>{displayName}0> Zerrendetan"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr "Eguneratu aplikazioa"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Eguneratu posta elektronikoa"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Eguneratu gonbidapen-esteka"
@@ -12065,11 +12354,19 @@ msgstr "Eguneratu gonbidapen-esteka"
msgid "Update to {domain}"
msgstr "Eguneratu {domain}ra"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr "Eguneratu zure aplikazioa"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr "Eguneratu zure aplikazioa ikusteko."
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "Eguneratu zure aplikazioa azken bertsiora parte hartzeko!"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Eguneratu zure posta elektronikoa"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Ezin izan da eguneratu erantzunen ikusgaitasuna"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Kargatu argazki bat ordez"
@@ -12098,39 +12395,40 @@ msgstr "Kargatu argazki bat ordez"
msgid "Upload a text file to:"
msgstr "Kargatu testu-fitxategi bat hona:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Kargatu Kameratik"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Kargatu Fitxategietatik"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Kargatu Liburutegitik"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "GIFa kargatzen..."
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Irudiak kargatzen..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Estekaren miniatura kargatzen..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Bideoa kargatzen..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "erabiltzailea"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Erabiltzailea blokeatuta"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "{0}-ren erabiltzaile zerrenda"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "{0}-ren Erabiltzaile Zerrenda"
@@ -12255,12 +12553,12 @@ msgstr "<0>@{0}0>-k jarraitzen dituen erabiltzaileak"
msgid "users following <0>@{0}0>"
msgstr "<0>@{0}0> erabiltzaileak jarraitzen"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "Nik jarraitzen ditudan erabiltzaileak"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Nik jarraitzen ditudan erabiltzaileak"
@@ -12277,7 +12575,7 @@ msgstr "Egiaztapena huts egin du, saiatu berriro."
msgid "Verification settings"
msgstr "Egiaztapen-ezarpenak"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Egiaztapen-Ezarpenak"
@@ -12304,8 +12602,8 @@ msgstr "Egiaztatu berriro"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Egiaztatu kodea"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Egiaztatu DNS erregistroa"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Egiaztatu posta elektroniko kodea"
@@ -12349,7 +12647,7 @@ msgstr "Kontu hau egiaztatu?"
msgid "Verify your age"
msgstr "Egiaztatu zure adina"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "{0} bertsioa"
msgid "Video"
msgstr "Bideoa"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Ezin izan da prozesatu bideoa"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Bideo Feeda"
@@ -12419,7 +12717,7 @@ msgstr "Ez da bideoa aurkitu."
msgid "Video settings"
msgstr "Bideo ezarpenak"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Bideoa kargatuta"
@@ -12432,18 +12730,18 @@ msgstr "Bideoa: {0}"
msgid "Videos"
msgstr "Bideoak"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr "Bideoek 3 minutu baino gutxiago iraun behar dute."
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Ikusi"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr "Ikusi {0}"
@@ -12455,7 +12753,7 @@ msgstr "Ikusi {0}-ren abatarra"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Ikusi {0}-ren profila"
msgid "View {0}’s profile"
msgstr "Ikusi {0}-ren profila"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "Ikusi {displayName}-ren profila"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr "Ikusi {publicationTitle}"
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr "Ikusi @{0}-ren profila"
@@ -12503,10 +12801,18 @@ msgstr "Ikusi xehetasunak"
msgid "View full thread"
msgstr "Ikusi hari osoa"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr "Ikusi sarrerako txat talde-eskaerak"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr "Ikusi sarrerako eskaerak"
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr "Ikusi txat talde honetan sartzeko sarrerako eskaerak"
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Ikusi etiketa hauei buruzko informazioa"
@@ -12522,7 +12828,7 @@ msgstr "Ikusi gehiago"
msgid "View more trending videos"
msgstr "Joera-bideo gehiago ikusi"
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Ikusi posta"
@@ -12539,10 +12845,10 @@ msgstr "Ikusi profila"
msgid "View profile banner"
msgstr "Ikusi profileko bannerra"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr "Ikusi argitalpena"
@@ -12550,7 +12856,7 @@ msgstr "Ikusi argitalpena"
msgid "View the avatar"
msgstr "Ikusi abatarra"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "Ikusi txat talde honetarako gonbidapen-esteka"
@@ -12563,7 +12869,7 @@ msgstr "Ikusi @{0}-k eskaintzen duen etiketa-zerbitzua"
msgid "View this user's verifications"
msgstr "Ikusi erabiltzaile honen egiaztapenak"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Ikusi feed hau gogoko duten erabiltzaileak"
@@ -12596,8 +12902,8 @@ msgstr "Ikusi zuk mutututako kontuak"
msgid "View your verifications"
msgstr "Ikusi zure egiaztapenak"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Irudi osoa ikusten du"
@@ -12640,8 +12946,8 @@ msgstr "Edukia ohartarazi"
msgid "Warn content and filter from feeds"
msgstr "Edukia ohartarazi eta iragazi feedetatik"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Ikusi orain"
@@ -12665,10 +12971,14 @@ msgstr "Ezin izan dugu etiketa horren emaitzarik aurkitu."
msgid "We couldn't find any results for that topic."
msgstr "Ezin izan dugu gai horren emaitzarik aurkitu."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Ezin izan dugu kargatu elkarrizketa hau"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr "Ezin izan ditugu kargatu elkarrizketa honen sarrera eskaerak"
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "Ezin izan ditugu kargatu elkarrizketa honen ezarpenak"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Gutxienez bi interes hautatzea gomendatzen dugu."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Esteka bat duen mezu elektroniko bat bidali dugu <0>{0}0> helbidera. Egin klik gainean helbide elektronikoaren egiaztapen prozesua osatzeko."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Ezin izan dugu zehaztu bideoak kargatzeko baimena duzun ala ez. Mesedez, saiatu berriro."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "Zure lagunak aurkitzen ditugunean jakinaraziko dizugu."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Esteka bat duen mezu elektroniko bat bidaliko dugu <0>{0}0> helbidera. Egin klik gainean helbide elektronikoaren egiaztapen prozesua osatzeko."
@@ -12779,12 +13089,12 @@ msgstr "Arazoak ditugu zure kontuaren adinaren berme prozesua abiarazteko. Mesed
msgid "We're having network issues, try again"
msgstr "Sare arazoak ditugu, saiatu berriro"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "Sare arazoak ditugu, saiatu berriro"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Bluesky-n egiaztapen-geruza berri bat sartzen ari gara — erraz ikusteko egiaztapen-marka bat."
@@ -12814,12 +13124,12 @@ msgstr "Sentitzen dugu, baina ezin izan da bilaketa osatu. Mesedez, saiatu berri
msgid "We're sorry, you cannot access this screen at this time."
msgstr "Sentitzen dugu, momentu honetan ezin zara pantaila honetara sartu."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Sentitzen dugu! Erantzuten ari zaren posta ezabatu da."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Sentitzen dugu! Ezin dugu aurkitu bilatzen ari zaren orria."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Nola deitu nahi diozu zure abio multzoari?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Zer da?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Egiaztapen-marka bat sakatzen duzunean, egiaztapena zein erakundek eman duten ikusiko duzu."
@@ -12878,7 +13188,7 @@ msgstr "Egiaztapen-marka bat sakatzen duzunean, egiaztapena zein erakundek eman
msgid "Who can interact with this post?"
msgstr "Nork elkarreragin dezake post honekin?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "Nork eta nola batu daitekeen txat talde honetara"
@@ -12887,13 +13197,13 @@ msgstr "Nork eta nola batu daitekeen txat talde honetara"
msgid "Who can reply"
msgstr "Nork erantzun dezake"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Nork egiaztatu dezake?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Aiba!"
@@ -12939,19 +13249,19 @@ msgstr "Zergatik berrikusi behar da abio multzo hau?"
msgid "Why should this user be reviewed?"
msgstr "Zergatik berrikusi behar da erabiltzaile hau?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
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/components/dms/AfterReportConversationDialog.tsx:47
msgid "Would you like to block this user and/or leave this conversation?"
-msgstr ""
+msgstr "Erabiltzaile hau blokeatu eta/edo elkarrizketa hau utzi nahi duzu?"
#: src/view/com/composer/drafts/DraftsButton.tsx:110
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:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr "Zirriborro gisa gorde nahi duzu geroago editatzeko?"
@@ -12960,12 +13270,12 @@ msgstr "Zirriborro gisa gorde nahi duzu geroago editatzeko?"
msgid "Write a post"
msgstr "Idatzi post bat"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Idatzi posta"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Idatzi zure erantzuna"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Zerbitzariak DID ez zuzena erantzun du. Jasotakoa: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "Elkarrizketa mota okerra"
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "Aplikazioan sartzen utzi aurretik zure adina egiaztatzea eskatzen digun eskualde batetik sartzen ari zara Bluesky-ra."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr "{0} blokeatzen ari zara"
@@ -13068,7 +13379,7 @@ msgstr "Zuzenean zaude"
msgid "You are no longer live"
msgstr "Jada ez zaude zuzenean"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Ezin dituzu bideoak kargatu."
@@ -13117,12 +13428,12 @@ msgstr "Beti aukera dezakezu baimena kendu eta zure datuak ezabatzea"
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Txat-jakinarazpenek soinua izan dezaketen ala ez aukera dezakezu aplikazioaren txat-ezarpenetan"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Etengabeko elkarrizketekin jarrai dezakezu aukeratzen duzun ezarpena edozein dela ere."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Orain pertsona zehatzek posteatzen dutenean jakinarazpenak jasotzea aukera dezakezu. Norbaitengandik puntualki eguneratzeak jaso nahi badituzu, joan haren profilera eta bilatu kanpai ikono berria jarraitu botoiaren ondoan."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr "Gehienez {MAX_GALLERY_IMAGES, plural, other {# irudi}} gehi ditzakezu post bakoitzeko"
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "1000 karaktere arteko zirriborroak soilik gorde ditzakezu."
@@ -13139,11 +13455,11 @@ msgstr "1000 karaktere arteko zirriborroak soilik gorde ditzakezu."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "1000 karaktere arteko zirriborroak soilik gorde ditzakezu. Post hau baztertu nahi duzu zirriborroak ikusi aurretik?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr "GIF bakarra hauta dezakezu aldi berean."
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Bideo bakarra hauta dezakezu aldi berean."
@@ -13155,10 +13471,10 @@ msgstr "Zure kontua berriro aktiba dezakezu saioa hasten jarraitzeko. Zure profi
msgid "You can read chat history but can’t send new messages."
msgstr "Txat-historia irakurri dezakezu, baina ezin duzu mezu berririk bidali."
-#. 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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
-msgstr "Guztira gehienez {MAX_IMAGES, plural, other {# irudi}} hauta ditzakezu."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr "Guztira gehienez {MAX_GALLERY_IMAGES, plural, other {# irudi}} hauta ditzakezu."
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,9 +13482,9 @@ msgstr "Guztira gehienez {MAX_IMAGES, plural, other {# irudi}} hauta ditzakezu."
msgid "You can update this later from your settings."
msgstr "Geroago eguneratu dezakezu hau zure ezarpenetan."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
-msgstr ""
+msgstr "Ezin duzu txat talde bat sortu oraindik."
#: src/lib/hooks/useCleanError.ts:54
#: src/lib/strings/errors.ts:28
@@ -13197,6 +13513,10 @@ msgstr "Ez duzu gordetako feedik."
msgid "You got here first"
msgstr "Zu lehenengo iritsi zinen hona"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr "Aurretik kendu zaituzte talde honetatik eta ezin zara sartu esteka hau erabiliz."
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr "Zirriborro honetan gorde gabeko aldaketak dituzu, gorde nahi dituzu?"
@@ -13336,7 +13656,7 @@ msgstr "Gutxienez beste zazpi pertsona jarraitu behar dituzu abio multzo bat sor
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "Zure multimedia liburutegirako sarbidea baimendu behar duzu."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Aplikazioa orain berrabiaraztea komeni da."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Erreakzionatu duzu {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "Duela gutxi aldatu duzu jaiotze data"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Zure kontu guztietatik aterako zara."
@@ -13390,7 +13710,7 @@ msgstr "Hari honen jakinarazpenak jasoko dituzu orain"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "\"Berrezarpen kodea\" duen mezu elektroniko bat jasoko duzu. Sartu kode hori hemen, eta ondoren sartu pasahitz berria."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "Ezin izango zara berriro sartu gonbidatuta ez bazaude."
@@ -13463,7 +13783,7 @@ msgstr "Eduki aktiboaren amaierara iritsi zara."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Zure feedaren amaierara iritsi zara! Bilatu jarraitzeko kontu gehiago."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "Gehienezko zirriborro kopurura iritsi zara"
@@ -13475,11 +13795,11 @@ msgstr "Eskaera kopuru maximoa gainditu duzu. Mesedez, saiatu berriro geroago."
msgid "You've reached the start of the active content."
msgstr "Eduki aktiboaren hasierara iritsi zara."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (byte gehiegi)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (bideo gehiegi)"
@@ -13499,10 +13819,18 @@ msgstr "Zure kontua ezabatu da, ikusi arte! ✌️"
msgid "Your account has been suspended"
msgstr "Zure kontua bertan behera utzi da"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Zure kontuak ez du oraindik bideoak kargatzeko adina. Mesedez, saiatu berriro geroago."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr "Zure kontua berriegia da"
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr "Zure kontuak gutxienez 7 egun izan behar ditu txat talde berri bat sortzeko."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Zure kontuaren biltegia, datu publikoen erregistro guztiak dituena, \"CAR\" fitxategi gisa deskargatu daiteke. Fitxategi honek ez du barne multimediarik, hala nola irudiak, edo zure datu pribatuak, bereizita eskuratu behar direnak."
@@ -13519,7 +13847,7 @@ msgstr "Zure apelazioa bidali da. Zure apelazioa onartzen bada, mezu elektroniko
msgid "Your birth date"
msgstr "Zure jaiotze-data"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Zure txatak desaktibatu dira"
@@ -13561,7 +13889,7 @@ msgstr "Zure helbide elektronikoa"
msgid "Your email appears to be invalid."
msgstr "Zure helbide elektronikoa ez dirudi zuzena denik."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Zure helbide elektronikoa ez da oraindik egiaztatu. Mesedez, egiaztatu zure helbide elektronikoa Bluesky-ren funtzio guztiez gozatzeko."
@@ -13582,7 +13910,7 @@ msgstr "Zure jarraitzen feeda hutsik dago! Jarraitu erabiltzaile gehiago zer ger
msgid "Your full handle will be <0>@{0}0>"
msgstr "Zure handle osoa <0>@{0}0> da"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "Zure kokapena eguneratu da."
msgid "Your muted words"
msgstr "Zure mutututako hitzak"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "Zure izena, abatarra eta txat taldearen izena guztientzat ikusgai egongo dira."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr "Zure izena, abatarra, txat taldearen izena eta kide kopurua denek ikusgai izango dute."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "Zure posta bidali da"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "Zure postak bidali dira"
@@ -13635,7 +13963,7 @@ msgstr "Zure postak bidali dira"
msgid "Your preferred language"
msgstr "Zure hizkuntza hobetsia"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "Zure profileko argazkia"
@@ -13648,12 +13976,12 @@ msgstr "Zure profileko argazkia beste erabiltzaileen profileko argazkien zirkulu
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Zure erantzuna bidali da"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Zure salaketa <0>{0}0>-ra bidaliko da."
@@ -13661,7 +13989,7 @@ msgstr "Zure salaketa <0>{0}0>-ra bidaliko da."
msgid "Your selected interests help us serve you content you care about."
msgstr "Aukeratutako interesek gogoko duzun edukia zerbitzatzen laguntzen digute."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "Zure hariak saltatuko diren post hutsak ditu. Gainerako postak hari gisa argitaratuko dira."
diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po
index 9ac1df16f3..80a10c2068 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minuutti} other {# minuuttia}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# kuukausi} other {# kuukautta}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# sekunti} other {# sekuntia}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Käyttäjän {0} profiilikuva"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0} min"
msgid "{0}s"
msgstr "{0} s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr "{following} seurattua"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "Käyttäjälle {handle} ei voi viestiä"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -860,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Saavutettavuus"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Saavutettavuusasetukset"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Tilin mykistys poistettu"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Lisää"
@@ -999,8 +1079,8 @@ msgstr "Lisää tili"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Lisää tekstivastine (valinnainen)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Lisää toinen tili"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Lisää toinen julkaisu"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr "Lisää sovellussalasana"
msgid "Add App Password"
msgstr "Lisää sovellussalasana"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr ""
@@ -1080,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "Lisää mykistettyjä sanoja ja tunnisteita"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Kaikki"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Salli pääsy yksityisviesteihisi"
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Kirjautuneena jo sisään käyttäjänä @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Tekstivastine"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Tekstivastine kuvailee kuvia sokeille ja heikkonäköisille käyttäjille sekä lisää kontekstia kaikille."
@@ -1387,7 +1467,7 @@ msgstr "On tapahtunut virhe"
msgid "An error occurred"
msgstr "Tapahtui virhe"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Videota pakattaessa tapahtui virhe."
@@ -1432,11 +1512,11 @@ msgstr "QR-koodia tallennettaessa tapahtui virhe!"
msgid "An error occurred while trying to follow all"
msgstr "Yritettäessä seurata kaikkia tapahtui virhe"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Ongelma, joka ei sisälly näihin vaihtoehtoihin"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Yritettäessä avata chattia ilmenei ongelma"
msgid "An issue occurred, please try again."
msgstr "Ilmeni ongelma. Yritä uudelleen."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Sovellussalasanojen nimien on oltava vähintään 4 merkkiä pitkiä"
msgid "App passwords"
msgstr "Sovellussalasanat"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Sovellussalasanat"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Valitus lähetetty"
@@ -1632,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Valita tästä päätöksestä"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Haluatko varmasti poistaa sovellussalasanan ”{0}”?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Haluatko varmasti hylätä tämän julkaisun?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Toista videot ja GIF-animaatiot automaattisesti"
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr "Takaisin"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1840,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1877,7 +1963,7 @@ msgstr "Syntymäpäivä"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Estä tili"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "Estetäänkö tili?"
msgid "Block accounts"
msgstr "Estä tilit"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Estetäänkö nämä tilit?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr ""
@@ -1948,7 +2034,7 @@ msgctxt "button"
msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Estetty"
@@ -1964,13 +2050,13 @@ msgstr "Estetty"
msgid "Blocked accounts"
msgstr "Estetyt tilit"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Estetyt tilit"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Estetyt tilit eivät voi vastata ketjuihisi, mainita sinua tai olla muuten vuorovaikutuksessa kanssasi."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky on parempi kavereiden kanssa!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky valitsee joukon suositeltuja tilejä verkostosi käyttäjistä."
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 "Bluesky ei näytä profiiliasi eikä julkaisujasi kirjautumattomille käyttäjille. Muut sovellukset eivät välttämättä noudata tätä pyyntöä. Tämä ei tee tilistäsi yksityistä."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2137,23 +2223,30 @@ msgstr "Yritys"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Käyttäjältä {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Käyttäjältä <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Luomalla tilin hyväksyt <0>käyttöehdot0>."
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Kamera"
@@ -2192,8 +2285,8 @@ msgstr "Kamera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Kamera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Peruuta"
@@ -2248,9 +2341,9 @@ msgstr "Peruuta tilin käyttöönpalautus ja kirjaudu ulos"
msgid "Cancel search"
msgstr "Peruuta haku"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Estetyn käyttäjän kanssa ei voi olla vuorovaikutuksessa"
@@ -2264,7 +2357,7 @@ msgstr "Tekstitykset (.vtt)"
msgid "Captions & alt text"
msgstr "Tekstitykset ja tekstivastine"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr "Vaihda käyttäjätunnus"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Chatti"
@@ -2361,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Chatti mykistetty"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Chatin asetukset"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Chatin asetukset"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Chatti mykistetty"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "Valitse tämä väri profiilikuvaksesi"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr "napsauta tästä"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2567,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Napsauta tästä yrittääksesi uudelleen epäonnistunutta viestin lähetystä"
@@ -2594,28 +2694,30 @@ msgstr "Napsauta tästä yrittääksesi uudelleen epäonnistunutta viestin lähe
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Napsauta tästä yrittääksesi uudelleen epäonnistunutta viestin lähe
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Sulje aktiivinen valintaikkuna"
msgid "Close alert"
msgstr "Sulje hälytys"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Sulje alavalikko"
@@ -2657,8 +2763,9 @@ msgstr "Sulje alavalikko"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Sulje valintaikkuna"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Sulje kuva"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Sulje tämä valintaikkuna"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Sulkee salasanan päivityshälytyksen"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Sarjakuvat"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Yhteisöohjeet"
@@ -2740,12 +2855,12 @@ msgstr "Suorita haaste loppuun"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Laadi uusi julkaisu"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2753,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr "Laadi vastaus"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Pakataan videota…"
@@ -2780,7 +2895,7 @@ msgstr "Määritetään <0>moderointiasetuksissa0>."
msgid "Confirm"
msgstr "Vahvista"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Sisältö ja media"
msgid "Content and media"
msgstr "Sisältö ja media"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Sisältö ja media"
@@ -2889,7 +3004,7 @@ msgstr "Kontekstivalikon tausta-alue. Napsauta sulkeaksesi valikon."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "Jatka ketjua…"
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Jatka seuraavaan vaiheeseen"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Keskustelu poistettu"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Keskustelu poistettu"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Ohjelmiston versio kopioitu leikepöydälle"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Kopioi DID"
msgid "Copy host"
msgstr "Kopioi hosti"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Kopioi viestin teksti"
@@ -3052,7 +3175,7 @@ msgstr "Kopioi TXT-tietueen arvo"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Tekijänoikeuskäytäntö"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Chatista ei voitu poistua"
@@ -3094,6 +3217,10 @@ msgstr "Chatista ei voitu poistua"
msgid "Could not load feed"
msgstr "Syötettä ei voitu ladata"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Luo"
@@ -3159,7 +3286,7 @@ msgstr "Luo QR-koodi aloituspaketille"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Luo aloituspaketti"
@@ -3174,13 +3301,14 @@ msgstr "Luo aloituspaketti minulle"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Luo tili"
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Luo sen sijaan profiilikuva"
@@ -3206,7 +3334,7 @@ msgstr "Luo sen sijaan profiilikuva"
msgid "Create another"
msgstr "Luo toinen"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Luo uusi tili"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Luo raportti: {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Luotu {0}"
@@ -3341,7 +3470,7 @@ msgstr "Oletus"
msgid "Default icons"
msgstr "Oletuskuvakkeet"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Poista chatin deklaraatiotietue"
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Poista itseltäni"
@@ -3399,11 +3528,11 @@ msgstr "Poista itseltäni"
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Poista viesti"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Poista viesti itseltäni"
@@ -3413,7 +3542,7 @@ msgstr "Poista tilini"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Poista julkaisu"
@@ -3434,12 +3563,12 @@ msgstr "Poistetaanko tämä lista?"
msgid "Delete this post?"
msgstr "Poistetaanko tämä julkaisu?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Poistettu"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Poistettu tili"
@@ -3507,13 +3636,13 @@ msgstr "Valintaikkuna: säädä, kuka voi olla vuorovaikutuksessa tämän julkai
msgid "Dim"
msgstr "Himmeä"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3521,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3534,8 +3663,8 @@ msgstr "Poista sähköpostiin perustuva kaksivaiheinen tunnistautuminen käytös
msgid "Disable haptic feedback"
msgstr "Poista haptinen palaute käytöstä"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Poissa käytöstä"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Hylkää"
msgid "Discard changes?"
msgstr "Hylätäänkö muutokset?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Hylätäänkö luonnos?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Hylätäänkö julkaisu?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Löydä uusia syötteitä"
msgid "Dismiss"
msgstr "Hylkää"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Hylkää virhe"
@@ -3673,7 +3802,7 @@ msgstr "Ei sisällä alastomuutta."
msgid "Domain verified!"
msgstr "Verkkotunnus vahvistettu!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3681,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Valmis"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3741,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr "Lataa Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Lataa CAR-tiedosto"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Lataa CAR-tiedosto"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "esim. Käyttäjät, jotka vastaavat toistuvasti mainoksilla."
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Muokkaa"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Muokkaa profiilikuvaa"
@@ -3847,14 +3978,14 @@ msgstr "Muokkaa profiilikuvaa"
msgid "Edit Feeds"
msgstr "Muokkaa syötteitä"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Muokkaa kuvaa"
@@ -3868,7 +3999,16 @@ msgstr "Muokkaa vuorovaikutusasetuksia"
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Muokkaa syötteitäni"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Muokkaa käyttäjiä"
@@ -3925,7 +4060,7 @@ msgstr "Muokkaa profiilia"
msgid "Edit starter pack"
msgstr "Muokkaa aloituspakettia"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "Muokkaa, kuka voi vastata"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Muokkaa aloituspakettiasi"
@@ -3971,7 +4106,7 @@ msgstr "Sähköpostiosoite"
msgid "Email Resent"
msgstr "Sähköpostiviesti lähetetty uudelleen"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -4006,8 +4141,8 @@ msgstr "Upota tämä julkaisu verkkosivustollesi. Kopioi vain seuraava koodinpä
msgid "Embedded video player"
msgstr "Upotettu videosoitin"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Ota käyttöön"
@@ -4025,7 +4160,7 @@ msgstr "Ota aikuissisältö käyttöön"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4038,13 +4173,12 @@ msgstr "Ota ulkoinen media käyttöön"
msgid "Enable media players for"
msgstr "Ota mediatoistimet käyttöön palveluille"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr "Syötä salasana"
msgid "Enter a word or tag"
msgstr "Syötä sana tai tunniste"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4143,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Virhe"
@@ -4185,23 +4319,23 @@ msgstr "Kaikki voivat vastata"
msgid "Everybody can reply to this post."
msgstr "Kaikki voivat vastata tähän julkaisuun."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Kaikilta"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Kaikilta"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Kaikilta"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "Sulkee pois seuraamasi käyttäjät"
msgid "Exit fullscreen"
msgstr "Poistu koko näytön tilasta"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Laajenna tekstivastine"
@@ -4226,7 +4360,7 @@ msgstr "Laajenna tekstivastine"
msgid "Expand list of users"
msgstr "Laajenna käyttäjäluettelo"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Laajenna tai pienennä julkaisu, johon olit vastaamassa"
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Odotettiin URIn resolvoituvan tietueeseen"
@@ -4277,9 +4411,9 @@ msgstr "Siveetön tai mahdollisesti häiritsevä media."
msgid "Explicit sexual images."
msgstr "Siveettömän seksuaaliset kuvat."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4289,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,7 @@ msgstr "Ulkoinen media"
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 "Ulkoinen media voi mahdollistaa verkkosivustoille tietojenkeruun sinusta ja laitteestasi. Tietoja ei lähetetä eikä pyydetä, ellet paina ”toista”-painiketta."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Ulkoisten median asetukset"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "Käyttäjätunnuksen vaihtaminen epäonnistui. Yritä uudelleen."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "Sovellussalasanan luominen epäonnistui. Yritä uudelleen."
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Viestin poistaminen epäonnistui"
@@ -4394,24 +4529,24 @@ msgstr "Julkaisun poistaminen epäonnistui, yritä uudelleen"
msgid "Failed to delete starter pack"
msgstr "Aloituspaketin poistaminen epäonnistui"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "Syötteiden asetusten lataaminen epäonnistui"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "Ehdotettujen syötteiden lataaminen epäonnistui"
msgid "Failed to load suggested follows"
msgstr "Ehdotettujen seurattavien lataaminen epäonnistui"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Julkaisun kiinnittäminen epäonnistui"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Valituksen lähettäminen epäonnistui. Yritä uudelleen."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Ketjun mykistäminen tai mykistyksen poistaminen epäonnistui, yritä uudelleen"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4614,7 +4751,7 @@ msgstr "Syötteiden päivittäminen epäonnistui"
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Asetusten päivittäminen epäonnistui"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Syöte"
@@ -4649,7 +4786,7 @@ msgstr "Syöte"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Syöte käyttäjältä {0}"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Syötteen valikko"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Syötteet"
@@ -4739,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "Viimeistely"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Etsi tilejä seurattavaksi"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr "Etsi käyttäjiä seurattavaksi"
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "Seuraajina <0>{0}0> ja <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Seuraajina <0>{0}0>, <1>{1}1> ja {2, plural, one {# muu} other {# muuta}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Tuntemasi käyttäjän @{0} seuraajat"
@@ -4995,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr "Seuratut-syötteen asetukset"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Seuratut-syötteen asetukset"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Seuraa sinua"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Seuraa sinua"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Fontti"
@@ -5069,7 +5207,7 @@ msgstr "Unohditko?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr "Syötteestä <0/>"
msgid "Generate a starter pack"
msgstr "Generoi aloituspaketti"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "Näytä ohje"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Anna profiilillesi kasvot"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Palaa takaisin"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Palaa takaisin"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Palaa edelliseen vaiheeseen"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Palaa kotinäkymään"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Palaa kotinäkymään"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Palaa kotinäkymään"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Siirry keskusteluun käyttäjän {0} kanssa"
@@ -5299,12 +5440,12 @@ msgstr "Siirry seuraavaan"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Siirry profiiliin"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Käyttäjätunnus liian pitkä. Kokeile lyhyempää."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Aihetunniste"
@@ -5458,8 +5615,8 @@ msgstr "Aihetunniste {tag}"
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Ohje"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Auta ihmisiä tietämään, ettet ole botti, lataamalla palveluun kuva tai luomalla profiilikuva."
@@ -5652,18 +5809,18 @@ msgstr "Hmm, näiden tietojen lataamisessa vaikuttaa olevan vaikauksia. Katso li
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmm, emme pystyneet lataamaan tätä moderointipalvelua."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Odottakaa! Annamme vähitellen pääsyn videoon, ja olet yhä odotusjonossa. Tarkista tilanne pian uudelleen!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Koti"
@@ -5721,7 +5878,7 @@ msgstr "Ymmärrän"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Jos tekstivastine on pitkä, laajentaa tai pienentää sen"
@@ -5757,7 +5914,7 @@ msgstr "Jos poistat tämän listan, et voi palauttaa sitä."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Jos sinulla on oma verkkotunnus, voit käyttää sitä käyttäjätunnuksenasi. Näin voit itse vahvistaa henkilöllisyytesi. <0>Lue lisää täältä.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5765,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr "Jos poistat tämän julkaisun, et voi palauttaa sitä."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5773,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Jos haluat vaihtaa salasanasi, lähetämme sinulle koodin vahvistaaksemme, että tämä on tilisi."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr ""
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ä."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Kuva"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Virheellinen kaksivaiheisen tunnistautumisen vahvistuskoodi."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Virheellinen käyttäjätunnus. Kokeile toista."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Virheellinen vahvistuskoodi"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Vain sinä olet nyt tässä! Lisää muita käyttäjiä aloituspakettiisi yllä olevalla haulla."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "Työpaikan tunnus: {0}"
@@ -6083,6 +6257,11 @@ msgstr "Työpaikan tunnus: {0}"
msgid "Jobs"
msgstr "Työpaikat"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Työpaikat"
msgid "Join Bluesky"
msgstr "Liity Blueskyhin"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Liity keskusteluun"
msgid "Journalism"
msgstr "Journalismi"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "Tilisi merkinnät"
msgid "Labels on your content"
msgstr "Sisältösi merkinnät"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Kieliasetukset"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Uusimmat"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Lue lisää tästä varoituksesta"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Lue lisää siitä, mikä on julkista Blueskyssa."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "Lue lisää."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Poistu"
@@ -6276,7 +6464,7 @@ msgstr "Poistu chatista"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Poistu keskustelusta"
@@ -6284,13 +6472,13 @@ msgstr "Poistu keskustelusta"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Poistu keskustelusta"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Vaalea"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Tykkää ({0, plural, one {# tykkäys} other {# tykkäystä}})"
@@ -6346,11 +6534,7 @@ msgstr "Tykkää 10 julkaisusta"
msgid "Like 10 posts to train the Discover feed"
msgstr "Tykkää 10 julkaisusta kouluttaaksesi Discover-syötettä"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Tykkää tästä syötteestä"
@@ -6358,8 +6542,8 @@ msgstr "Tykkää tästä syötteestä"
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Tykänneet"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Tykännyt {0, plural, one {# käyttäjä} other {# käyttäjää}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Tykännyt {likeCount, plural, one {# käyttäjä} other {# käyttäjää}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Tykkäykset"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Tämän julkaisun tykkäykset"
@@ -6409,11 +6589,11 @@ msgstr "Tämän julkaisun tykkäykset"
msgid "Linear"
msgstr "Lineaarisesti"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Lista"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Listan mykistys poistettu"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listat"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Ladataan…"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Loki"
@@ -6662,7 +6842,7 @@ msgstr "Nähtävästi sinulta puuttuu seurattujen syöte. <0>Napsauta tästä li
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr "Hallinnoi mykistettyjä sanoja ja tunnisteita"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
@@ -6698,13 +6877,12 @@ msgstr ""
msgid "Mark as read"
msgstr "Merkitse luetuksi"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Media, joka voi olla häiritsevää tai sopimatonta joillekin yleisöille."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "mainitut käyttäjät"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Maininnat"
@@ -6775,22 +6949,22 @@ msgstr "Lähetä viesti käyttäjälle {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Viesti poistettu"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Viesti poistettu"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6813,19 +6987,19 @@ msgstr "Viesti on liian pitkä"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Viestit"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderointi"
@@ -6894,7 +7064,7 @@ msgstr "Moderointilista päivitetty"
msgid "Moderation lists"
msgstr "Moderointilistat"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Moderointilistat"
@@ -6903,7 +7073,7 @@ msgstr "Moderointilistat"
msgid "moderation settings"
msgstr "moderointiasetukset"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Moderointitilat"
@@ -6949,7 +7119,7 @@ msgstr "Elokuvat"
msgid "Music"
msgstr "Musiikki"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Mykistä"
@@ -6994,7 +7164,7 @@ msgstr "Mykistä lista"
msgid "Mute these accounts?"
msgstr "Mykistetäänkö nämä tilit?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Mykistä ketju"
msgid "Mute words & tags"
msgstr "Mykistä sanoja ja tunnisteita"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Mykistetyt tilit"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Mykistetyt tilit"
@@ -7108,8 +7278,8 @@ msgstr "Siirtyy seuraavalle näytölle"
msgid "Navigates to your profile"
msgstr "Siirtyy profiiliisi"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Uusi chatti"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7174,29 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Uusi julkaisu"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Uusi julkaisu"
@@ -7262,8 +7428,8 @@ msgstr "Uutiset"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "Et enää seuraa käyttäjää {0}"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Ei vielä viestejä"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "Ei vielä ilmoituksia!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Ei tulosta"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Ei tuloksia"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Ei-seksuaalinen alastomuus"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Ei löydy"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Ilmoitusasetukset"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Ilmoitusasäänet"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Ilmoitukset"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "nyt"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Pois"
@@ -7623,7 +7772,8 @@ msgstr ""
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "palvelussa<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Käyttöönoton nollaus"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "Ainakin yhdeltä GIF-animaatiolta puuttuu tekstivastine."
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "Ainakin yhdeltä kuvalta puuttuu tekstivastine."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Ainakin yhdeltä videolta puuttuu tekstivastine."
@@ -7685,6 +7835,26 @@ msgstr "Ainakin yhdeltä videolta puuttuu tekstivastine."
msgid "Only {0} can reply."
msgstr "Vain {0} voi vastata."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr "Vain kuvatiedostoja tuetaan"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Vain WebVTT (.vtt) -tiedostoja tuetaan"
@@ -7712,7 +7892,7 @@ msgstr "Hups, jokin meni vikaan!"
msgid "Oops!"
msgstr "Hups!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Avaa profiilikuvan luontityökalu"
@@ -7720,12 +7900,17 @@ msgstr "Avaa profiilikuvan luontityökalu"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Avaa keskustelun valinnat"
@@ -7739,16 +7924,16 @@ msgstr "Avaa alavalikko"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Avaa emojinvalitsin"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Avaa syötteen tietonäkymä"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Avaa syötteen valinnat"
@@ -7760,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Avaa linkki {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr "Avaa julkaisun valinnat"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr "Avaa storybook-sivu"
msgid "Open system log"
msgstr "Avaa järjestelmäloki"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Avaa vienetsintäkirjauksen lisätiedot"
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Avaa laitteen kameran"
@@ -7858,22 +8051,24 @@ msgstr "Avaa editorin"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Avaa vaiheet uuden Bluesky-tilin luomiseksi"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Avaa vaiheet olemassa olevaan Bluesky-tiliisi kirjautumiseksi"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Avaa tämän profiilin"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Moderaattorimme ovat arvioineet raportteja ja päättäneet estää pääsysi Blueskyn chatteihin."
@@ -8010,16 +8205,17 @@ msgstr "Moderaattorimme ovat arvioineet raportteja ja päättäneet estää pä
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Sivua ei löydy"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Sivua ei löydy"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Pysäytä video"
msgid "People"
msgstr "Käyttäjät"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Käyttäjät, joita @{0} seuraa"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Käyttäjät, jotka seuraavat tiliä @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Aikuisille tarkoitetut kuvat."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Kiinnitä syöte"
@@ -8152,7 +8348,7 @@ msgstr "Kiinnitä syöte"
msgid "Pin to home"
msgstr "Kiinnitä kotinäkymään"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Kiinnitä kotinäkymään"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Kiinnitetty"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "Kiinnitetty {0} kotinäkymään"
@@ -8236,7 +8432,7 @@ msgstr "Valitse käyttäjätunnuksesi."
msgid "Please choose your password."
msgstr "Valitse salasanasi."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "Täydennä vahvistus-captcha, ole hyvä."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Anna tälle sovellussalasanalle uniikki nimi tai käytä satunnaisesti luotua."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "Syötä sähköpostiosoitteesi."
msgid "Please enter your invite code."
msgstr "Syötä kutsukoodisi."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Selitä, miksi {0} on mielestäsi virheellisesti asettanut tämän merkinnän"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Selitä, miksi chattisi on mielestäsi virheellisesti poistettu käytöstä"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "Politiikka"
msgid "Porn"
msgstr "Porno"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Julkaise"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Julkaise kaikki"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Julkaissut @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Julkaisu poistettu"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Julkaisun lataaminen palveluun epäonnistui. Tarkista internetyhteytesi ja yritä uudelleen."
@@ -8454,7 +8650,7 @@ msgstr "Piilottamasi julkaisu"
msgid "Post interaction settings"
msgstr "Julkaisun vuorovaikutusasetukset"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8464,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Julkaisu irrotettu"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Julkaisuja voi mykistää tekstin, tunnisteiden tai kummankin perusteell
msgid "Posts hidden"
msgstr "Julkaisut piilotettu"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "Paina yrittääksesi muodostaa yhteyden uudelleen"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Paina yrittääksesi uudelleen"
@@ -8536,7 +8728,7 @@ msgstr "Paina yrittääksesi uudelleen"
msgid "Press to view followers of this account that you also follow"
msgstr "Paina näyttääksesi tämän tilin seuraajat, joita seuraat myös itse"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "Yksityisyys"
msgid "Privacy and security"
msgstr "Yksityisyys ja turvallisuus"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Yksityisyys ja turvallisuus"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Tietosuojakäytäntö"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Käsitellään videota…"
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Käsitellään…"
@@ -8602,8 +8793,8 @@ msgstr "Käsitellään…"
msgid "profile"
msgstr "profiili"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "QR-koodi ladattu!"
msgid "QR code saved to your camera roll!"
msgstr "QR-koodi tallennettu kuvagalleriaasi!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Lainausjulkaisut poissa käytöstä"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Lainaukset"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Liitä lainaus uudelleen"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr "Suositellut"
msgid "Reconnect"
msgstr "Yhdistä uudelleen"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Lataa keskustelut uudelleen"
@@ -8896,17 +9087,17 @@ msgstr "Poista tili"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Poista liite"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Poista profiilikuva"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Poista banneri"
@@ -8914,8 +9105,9 @@ msgstr "Poista banneri"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Poista upotus"
@@ -8933,8 +9125,8 @@ msgstr "Poistetaanko syöte?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Poista kuva"
@@ -9009,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Tekijän poistama"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Poistamasi"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Vastaukset"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Vastaa"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Vastaa ({0, plural, one {# vastaus} other {# vastausta}})"
@@ -9125,10 +9316,6 @@ msgstr "Ketjun aloittajan piilottama vastaus"
msgid "Reply Hidden by You"
msgstr "Piilottamasi vastaus"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Vastausasetukset ovat ketjun aloittajan valitsemat"
@@ -9146,9 +9333,9 @@ msgstr "Vastauksen näkyvyys päivitetty"
msgid "Reply was successfully hidden"
msgstr "Vastaus piilotettiin onnistuneesti"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Ilmianna"
@@ -9164,13 +9351,13 @@ msgstr "Ilmianna tili"
msgid "Report conversation"
msgstr "Ilmianna keskustelu"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Ilmiannon valintaikkuna"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Ilmianna syöte"
@@ -9179,7 +9366,7 @@ msgstr "Ilmianna syöte"
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Ilmianna viesti"
@@ -9199,8 +9386,8 @@ msgstr "Ilmianna aloituspaketti"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Ilmianna tämä syöte"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Ilmianna tämä lista"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Uudelleenjulkaise"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Uudelleenjulkaise ({0, plural, one {# uudelleenjulkaisu} other {# uudelleenjulkaisua}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Uudelleenjulkaisit"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "Tämän julkaisun uudelleenjulkaisut"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Edellytä tekstivastinetta ennen julkaisua"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Edellytä sähköpostikoodia tilillesi kirjautumiseen."
@@ -9328,7 +9534,11 @@ msgstr "Vaaditaan tälle palveluntarjoajalle"
msgid "Required in your region"
msgstr "Pakollinen alueellasi"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9393,15 +9603,16 @@ msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui"
msgid "Retry"
msgstr "Yritä uudelleen"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9426,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr "Palaa edelliselle sivulle"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Palaa kotinäkymään"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Palaa edelliselle sivulle"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Tallenna muutokset"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Tallenna QR-koodi"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Tallenna syötteisiini"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "Tallennetut syötteet"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Tallennettu syötteisiisi"
@@ -9551,8 +9764,8 @@ msgstr "Tallennettu syötteisiisi"
msgid "Say hello!"
msgstr "Tervehdi!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "Vieritä alkuun"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Haku"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9667,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Hae profiileja"
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "Valitse väri"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "Valitse GIF"
msgid "Select GIF \"{0}\""
msgstr "Valitse GIF ”{0}”"
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Valitse kieli…"
msgid "Select languages"
msgstr "Valitse kielet"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9904,11 +10117,11 @@ msgstr "Valitse kiinnostuksen kohteesi alla olevista vaihtoehdoista"
msgid "Select your preferred language for translations in your feed."
msgstr "Valitse käännösten kieli syötteessäsi."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Lähetä sähköpostiviesti"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Lähetä palautetta"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Lähetä viesti"
@@ -9952,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr "Lähetä julkaisu käyttäjälle…"
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9960,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Lähetä yksityisviestillä"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Asettaa sähköpostiosoitteen salasanan palautusta varten"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Asetukset"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "Erotiikka tai muu aikuisviihde."
msgid "Sexually Suggestive"
msgstr "Seksuaalisesti vihjaileva"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr "Jaa QR-koodi"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Jaa tämä syöte"
@@ -10151,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Jaettujen asetusten testeri"
@@ -10167,16 +10382,16 @@ msgstr "Näytä tekstivastine"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Näytä silti"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Näytä varoitus ja suodata syötteistä"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr "Kirjaudu sisään tai luo tili osallistuaksesi keskusteluun!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Kirjaudu tiliin, joka ei ole luettelossa"
@@ -10337,6 +10558,10 @@ msgstr "Kirjaudu tiliin, joka ei ole luettelossa"
msgid "Sign in to Bluesky or create a new account"
msgstr "Kirjaudu Blueskyhin tai luo uusi tili"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Kirjaudu ulos"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Kirjaudu ulos"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Kirjaudutaanko ulos?"
@@ -10391,7 +10616,7 @@ msgstr "Ohita"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Pienempi"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Jokin meni vikaan"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Jokin meni vikaan!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Jokin meni vikaan. Yritä uudelleen."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Onko jokin vialla? Kerro meille."
@@ -10568,7 +10798,7 @@ msgstr "Urheilu"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Aloita uusi chatti"
@@ -10582,17 +10812,17 @@ msgstr "Ala lisätä käyttäjiä"
msgid "Start adding people!"
msgstr "Ala lisätä käyttäjiä!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Aloita chatti käyttäjän {displayName} kanssa"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Aloituspaketti"
@@ -10654,12 +10884,12 @@ msgstr "Tallennustila tyhjennetty. Sinun on nyt käynnistettävä sovellus uudel
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Lähetä"
@@ -10684,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Tilaa"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Onnistui!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Tuki"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Vaihda tiliä"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10828,7 +11062,7 @@ msgstr "Vain tunnisteissa"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Hylkää napauttamalla"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Ehdot"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Tekstissä ja tunnisteissa"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Tekstikenttä"
@@ -11049,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Tietosuojakäytäntö on siirretty kohtaan <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "Yhteydenotossa palvelimeen ilmeni ongelma"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Yhteydenotossa palvelimeen ilmeni ongelma. Tarkista internetyhteytesi ja yritä uudelleen."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Ilmoitusten hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudelleen."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Julkaisujen hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudelleen."
@@ -11161,7 +11420,7 @@ msgstr "Palvelutietojesi hakemisessa ilmeni ongelma"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Tämän syötteen poistamisessa ilmeni ongelma. Tarkista internetyhteytesi ja yritä uudelleen."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Tämä valitus lähetetään kohteeseen <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Tämä valitus lähetetään Blueskyn moderointipalveluun."
@@ -11263,7 +11522,7 @@ msgstr "Tämä valitus lähetetään Blueskyn moderointipalveluun."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Tämä sisältö ei ole saatavilla, koska toinen käyttäjistä on estä
msgid "This content is not viewable without a Bluesky account."
msgstr "Tämä sisältö ei ole nähtävissä ilman Bluesky-tiliä."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11318,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr "Tämä syöte ei ole enää linjoilla. Näytämme sen sijaan syötteen <
msgid "This handle is reserved. Please try a different one."
msgstr "Tämä käyttäjätunnus on varattu. Kokeile toista."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr "Tämä lista on tyhjä."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Tämän julkaisun tekijä on poistanut lainausjulkaisut käytöstä."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Tämä vastaus sijoitetaan piilotettuun osaan ketjusi loppuun, ja ilmoitukset myöhemmistä vastauksista – niin omista kuin muidenkin – mykistetään."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr "Tällä käyttäjällä ei ole yhtään seuraajaa."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Tämä käyttäjä on estänyt sinut. Et voi nähdä hänen sisältöään."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Ketjun asetukset"
msgid "Threaded"
msgstr "Ketjuna"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Ketjujen asetukset"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Jotta voit poistaa sähköpostiin perustuvan kaksivaiheisen tunnistautumisen käytöstä, vahvista pääsysi sähköpostiosoitteeseen."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11646,12 +11927,12 @@ msgstr "Suosituimmat"
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Aihe"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11763,11 +12044,15 @@ msgstr "Yhteyden muodostaminen palveluusi ei onnistu. Tarkista internetyhteytesi
msgid "Unable to delete"
msgstr "Poistaminen ei onnistu"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr "Lopeta tilin seuraaminen"
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Älä tykkää ({0, plural, one {# tykkäys} other {# tykkäystä}})"
@@ -11918,7 +12203,7 @@ msgstr "Älä tykkää ({0, plural, one {# tykkäys} other {# tykkäystä}})"
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Poista keskustelun mykistys"
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Irrota"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Irrota syöte"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Irrota kotinäkymästä"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Irrota moderointilista"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "Irrotettu {0} kotinäkymästä"
@@ -12030,11 +12315,11 @@ msgstr "Peruuta merkitsijän tilaus"
msgid "Unsubscribed from list"
msgstr "Listan tilaus peruutettu"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "Päivitä <0>{displayName}0> listoissa"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "Päivitä verkkotunnukseen {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Vastauksen näkyvyyden päivittäminen epäonnistui"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Lataa palveluun sen sijaan kuva"
@@ -12098,39 +12395,40 @@ msgstr "Lataa palveluun sen sijaan kuva"
msgid "Upload a text file to:"
msgstr "Lataa tekstitiedosto osoitteeseen"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Lataa kamerasta"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Lataa tiedostoista"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Lataa kirjastosta"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Ladataan kuvia palveluun…"
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Ladataan linkin pikkukuvaa palveluun…"
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Ladataan videota palveluun…"
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Käyttäjälista käyttäjältä {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "käyttäjät, joita <0>@{0}0> seuraa"
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Vahvista DNS-tietue"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12349,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr ""
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Videon käsitteleminen epäonnistui"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12419,7 +12717,7 @@ msgstr "Videota ei löydy."
msgid "Video settings"
msgstr "Videon asetukset"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Video ladattu palveluun"
@@ -12432,18 +12730,18 @@ msgstr ""
msgid "Videos"
msgstr "Videot"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Näytä käyttäjän {0} profiilikuva"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Näytä käyttäjän {0} profiili"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Näytä lisätietoja"
msgid "View full thread"
msgstr "Näytä koko ketju"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Näytä tietoja näistä merkinnöistä"
@@ -12522,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "Näytä profiili"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Näytä profiilikuva"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "Näytä käyttäjän @{0} tarjoama merkintäpalvelu"
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Näytä tästä syötteestä tykänneet käyttäjät"
@@ -12596,8 +12902,8 @@ msgstr "Näytä mykistämäsi tilit"
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12640,8 +12946,8 @@ msgstr "Varoita sisällöstä"
msgid "Warn content and filter from feeds"
msgstr "Varoita sisällöstä ja suodata syötteistä"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr "Emme löytäneet tuloksia tästä aiheesta."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Emme voineet ladata tätä keskustelua"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Emme onnistuneet määrittämään, saatko ladata palveluun videoita. Yritä uudelleen."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "Meillä on verkko-ongelmia, yritä uudelleen"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Pahoittelut! Julkaisu, johon olet vastaamassa, on poistettu."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Pahoittelut! Emme löydä etsimääsi sivua."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Millä nimellä haluat kutsua aloituspakettiasi?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Mitä kuuluu?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12878,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr "Kuka voi olla vuorovaikutuksessa tämän julkaisun kanssa?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Kuka voi vastata"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Hupsista!"
@@ -12939,7 +13249,7 @@ msgstr "Miksi tämä aloituspaketti tulisi arvioida?"
msgid "Why should this user be reviewed?"
msgstr "Miksi tämä käyttäjä tulisi arvioida?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Kirjoita julkaisu"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Kirjoita vastauksesi"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Palvelin palautti väärän DID:n. Vastaanotettiin {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr ""
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Sinun ei ole mahdollista ladata videoita palveluun."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Voit jatkaa meneillään olevia keskusteluja riippumatta valitsemastasi asetuksesta."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Voit nyt kirjautua sisään uudella salasanallasi."
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "Voit palauttaa tilisi käyttöön jatkaaksesi sisäänkirjautumista. Pro
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr "Voit päivittää tämän myöhemmin asetuksistasi."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "Sinulla ei ole tallennettuja syötteitä."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "Sinun on seurattava ainakin seitsemää muuta käyttäjää, jotta voit
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Sinut kirjataan ulos kaikista tileistäsi."
@@ -13390,7 +13710,7 @@ msgstr "Saat nyt ilmoituksia tästä ketjusta"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Saat sähköpostiisi ”palautuskoodin”. Syötä koodi tähän, ja syötä sitten uusi salasanasi."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Olet päässyt syötteesi loppuun! Etsi lisää tilejä seurattavaksi."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Olet saavuttanut päiväkohtaisen videolatausten rajoituksen (liian monta tavua)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Olet saavuttanut päiväkohtaisen videolatausten rajoituksen (liian monta videota)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Tilisi ei ole riittävän vanha videoiden lataamiseksi palveluun. Yritä myöhemmin uudelleen."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Tilisi arkiston, joka sisältää kaikki julkiset tietueet, voi ladata ”CAR”-tiedostona. Tämä tiedosto ei sisällä mediaupotuksia, kuten kuvia, eikä yksityisiä tietojasi, jotka on haettava erikseen."
@@ -13519,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr "Syntymäaikasi"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Chattisi on poistettu käytöstä"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "Sähköpostiosoitteesi on nähtävästi virheellinen."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13582,7 +13910,7 @@ msgstr "Seuraamiesi syöte on tyhjä! Seuraa lisää käyttäjiä nähdäksesi,
msgid "Your full handle will be <0>@{0}0>"
msgstr "Koko tuleva käyttäjätunnuksesi on <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "Mykistämäsi sanat"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13661,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po
index 8677891460..8eac453082 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minute} other {# minutes}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# mois} other {# mois}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr "{0, plural, one {# nouvelle demande d’ajout} other {# nouvelles demandes d’ajout}}"
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, one {# personne a} other {# personnes ont}} réagi – {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# seconde} other {# secondes}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# élément non lu} other {# éléments non lus}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr "{0, plural, one {# min} other {# min}}"
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} abonnements"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr "{0} vous a bloqué·e"
@@ -264,7 +269,7 @@ msgstr "{0} sur 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} a réagi avec {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, une liste de {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "Avatar de {0}"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr "{0}/{1}"
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr "{0}/{1} {2, plural, one {membre} other {membres}}"
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr "{0}/{1} membres"
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0} min"
msgid "{0}s"
msgstr "{0} s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr "{count, plural, =0 {Aucune demande} one {# demande} other {# demandes}} à rejoindre"
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr "{count, plural, one {# évènement} other {# évènements}} de discussion"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr "{count, plural, one {# nouvelle demande} other {# nouvelles demandes}} à rejoindre"
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, one {# demande} other {# demandes}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# élément non lu} other {# éléments non lus}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr "{count, plural, one {Rafraîchissez la page pour la voir.} other {Rafraîchissez la page pour toutes les voir.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr "{count, plural, one {Ce post contient une photo.} other {Ce post contient # photos.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr "{count, plural, one {Mettez-à-jour votre appli. pour la voir.} other {Mettez-à-jour votre appli. pour les voir.}}"
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr "{count, plural, other {Plus de # demandes à rejoindre}}"
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "+ de {count}"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "+ de {count} demandes"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} a vérifié votre compte"
msgid "{following} following"
msgstr "{following} abonnements"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "{handle} ne peut être ajouté·e"
@@ -547,7 +599,7 @@ msgstr "{handle} ne peut être ajouté·e"
msgid "{handle} can't be messaged"
msgstr "{handle} ne peut être contacté par message"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "{handle} ne peut être contacté·e par message"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# heure {minutesString}} other {# heures {minutesSt
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# heure} other {# heures}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "Plus de {JOIN_REQUESTS_THRESHOLD} nouvelles demandes à rejoindre"
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "Plus de {JOIN_REQUESTS_THRESHOLD} nouvelles demandes à rejoindre"
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,9 +643,9 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, other {Vous ne pouvez masquer que # réponses maximum.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
-msgstr ""
+msgstr "{memberCount}/{memberLimit}"
#: src/features/liveNow/utils.ts:10
msgid "{minutes, plural, one {# minute} other {# minutes}}"
@@ -607,7 +669,7 @@ msgstr "Les fils d’actu et les personnes préférées de {name} – faites com
msgid "{name}'s starter pack"
msgstr "Kit de démarrage de {name}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# élément non lu} other {# éléments non lus}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, one {# demande} other {# demandes}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "+ de {requestCount} demandes"
@@ -795,8 +857,11 @@ msgstr "Une erreur réseau est survenue. Veuillez vérifier votre connexion Inte
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Une erreur réseau est survenue. Veuillez vérifier votre connexion Internet."
@@ -804,7 +869,7 @@ msgstr "Une erreur réseau est survenue. Veuillez vérifier votre connexion Inte
msgid "A new code has been sent"
msgstr "Un nouveau code a été envoyé"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Une nouvelle forme de vérification"
@@ -827,11 +892,11 @@ msgstr "Une capture d’écran d’une page de profil avec une icône de cloche
msgid "A screenshot of 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 "Une capture d’écran d’une fenêtre de rédaction avec un nouveau bouton aux côtés du bouton de publication appelé « Brouillons », avec un effet d’arc-en-ciel. En dessous, on y lit le texte dans la fenêtre de rédaction (traduit depuis l’anglais) « Hey, t’as entendu la nouvelle ? Bluesky a des brouillons désormais !!! »"
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
-msgstr ""
+msgstr "Un des comptes destinataires n’est pas suivi par le compte expéditeur."
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Comportement abusif ou discriminatoire"
msgid "Accept"
msgstr "Accepter"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Accepter"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Accepter la demande de discussion"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr "Accepter la demande à rejoindre"
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Accepter la demande"
@@ -860,17 +935,26 @@ msgstr "Accepter la demande"
msgid "Accept this language suggestion"
msgstr "Accepter cette suggestion de langue"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr "Conversations acceptées"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr "Accès demandé ! Le compte propriétaire du groupe examinera votre demande."
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Accessibilité"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Paramètres d’accessibilité"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Compte réaffiché"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Les comptes avec une coche bleue émaillée <0><1/>0> peuvent en vérifier d’autres. Ces vérificateurs de confiance sont sélectionnés par Bluesky."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Activité des autres"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Notifications d’activité"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Ajouter"
@@ -999,8 +1079,8 @@ msgstr "Ajouter un compte"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Ajouter un texte alt (facultatif)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Ajouter un autre compte"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Ajouter un autre post"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Ajouter un autre post au fil de discussion"
@@ -1035,7 +1115,7 @@ msgstr "Ajouter un mot de passe d’application"
msgid "Add App Password"
msgstr "Ajouter un mot de passe d’application"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "Ajouter une étiquette d’automatisation au compte"
@@ -1043,7 +1123,7 @@ msgstr "Ajouter une étiquette d’automatisation au compte"
msgid "Add emoji reaction"
msgstr "Ajouter une réaction émoji"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Ajouter des membres à la discussion de groupe"
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Ajouter un média au post"
@@ -1062,8 +1142,8 @@ msgstr "Ajouter un média au post"
msgid "Add members"
msgstr "Ajouter des membres"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Ajouter plus de détails (facultatif)"
@@ -1080,8 +1160,8 @@ msgstr "Ajouter un mot à cacher avec les paramètres choisis"
msgid "Add muted words and tags"
msgstr "Ajouter des mots et des mots-clés masqués"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "Ajout en cours des membres à la liste…"
msgid "Additional details (limit 1000 characters)"
msgstr "Détails supplémentaires (1000 caractères maximum)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Détails supplémentaires (300 caractères maximum)"
@@ -1228,12 +1308,12 @@ msgstr "La demande de vérification d’âge a été envoyée"
msgid "Age assurance only takes a few minutes"
msgstr "La vérification d’âge ne prend que quelques minutes"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Toutes"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "Tous les {0}"
@@ -1278,13 +1358,13 @@ msgstr "Autoriser l’accès à vos messages privés"
msgid "Allow anyone to reply"
msgstr "Autoriser n’importe qui à répondre"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "Autoriser les messages privés de"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr "Autoriser les invitations de groupe de"
@@ -1338,12 +1418,12 @@ msgstr "Vous avez déjà un compte ?"
msgid "Already signed in as @{0}"
msgstr "Déjà connecté·e en tant que @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Texte alt"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Le texte alt décrit les images pour les personnes aveugles et malvoyantes, et aide à donner un contexte à tout le monde."
@@ -1387,7 +1467,7 @@ msgstr "Une erreur s’est produite"
msgid "An error occurred"
msgstr "Une erreur s’est produite"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Une erreur s’est produite lors de la compression de la vidéo."
@@ -1432,11 +1512,11 @@ msgstr "Une erreur s’est produite lors de l’enregistrement du code QR !"
msgid "An error occurred while trying to follow all"
msgstr "Une erreur s’est produite en essayant de suivre tous les comptes"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "Il y a eu un problème lors de l’envoi de la vidéo. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "Il y a eu un problème lors de l’envoi de la vidéo. Vérifiez votre connexion internet et réessayez."
@@ -1461,21 +1541,21 @@ msgstr "Une illustration de plusieurs posts de Bluesky à côté des icônes de
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Une illustration montrant que Bluesky sélectionne des vérificateurs de confiance, qui à leur tour vérifient des comptes d’utilisateur·ices individuels."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "Un lien d’invitation permet à des gens de rejoindre cette discussion de groupe directement. Vous pourrez contrôler qui peut utiliser le lien et si votre approbation préalable est nécessaire. Vous pourrez désactiver ce lien à tout moment."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr "Un lien d’invitation permet à des personnes de rejoindre cette discussion sans y être ajoutés directement. Vous pourrez contrôler qui peut rejoindre la discussion. Vous pourrez désactiver ce lien à tout moment."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Un problème qui ne fait pas partie de ces options"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
-msgstr ""
+msgstr "Un problème est survenu lors de la création de la discussion de groupe, veuillez réessayer."
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
-msgstr ""
+msgstr "Un problème est survenu lors du démarrage de la discussion, veuillez réessayer."
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
msgid "An issue occurred while trying to open the chat"
@@ -1490,7 +1570,7 @@ msgstr "Un problème est survenu lors de l’ouverture de la discussion"
msgid "An issue occurred, please try again."
msgstr "Un problème est survenu, veuillez réessayer."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Une maquette d’un iPhone qui montre l’app de Bluesky ouverte sur un profil d’un compte vérifié avec une coche bleue après leur nom d’affichage."
@@ -1539,13 +1619,17 @@ msgstr "N’importe qui"
msgid "Anyone can interact"
msgstr "N’importe qui peut interagir"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr "Accessible à n’importe qui"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "N’importe qui peut rejoindre directement"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "N’importe qui peut demander à rejoindre"
@@ -1555,11 +1639,11 @@ msgstr "N’importe qui peut demander à rejoindre"
msgid "Anyone who follows me"
msgstr "Quiconque qui me suit"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr "Quiconque l’avait ne pourra plus rejoindre la discussion ou demander à la rejoindre. Vous pourrez toujours en créer un nouveau."
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Les noms de mots de passe d’application doivent comporter au moins 4 c
msgid "App passwords"
msgstr "Mots de passe d’application"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Mots de passe d’application"
@@ -1618,7 +1702,7 @@ msgstr "Faire appel de la suspension de la diffusion en direct"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Appel soumis"
@@ -1632,14 +1716,14 @@ msgstr "Faire appel de la suspension"
msgid "Appeal Suspension"
msgstr "Faire appel de la suspension"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Faire appel de cette décision"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "Êtes-vous vraiment, vraiment sûr·e ?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Êtes-vous sûr de vouloir supprimer le mot de passe d’application « {0} » ?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Êtes-vous sûr de vouloir supprimer ce message ? Ce message sera supprimé pour vous, mais pas pour les autres personnes."
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "Êtes-vous sûr·e de vouloir quitter {groupName} ?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr "Êtes-vous sûr de vouloir vous retirer de cette conversation ?"
-#: 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 vous retirer de cette conversation ? Vos messages seront supprimés pour vous, mais pas pour l’autre personne."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr "Êtes-vous sûr de vouloir vous retirer de cette conversation ? Vos messages seront supprimés pour vous, mais pas pour les autres participants."
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Êtes-vous sûr de vouloir abandonner ce post ?"
@@ -1752,7 +1836,7 @@ msgstr "Compte automatisé"
msgid "Automation label"
msgstr "Étiquette d’automatisation"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "Étiquette d’automatisation"
@@ -1767,12 +1851,12 @@ msgstr "Lire automatiquement les vidéos et les GIFs"
msgid "Available"
msgstr "Disponible"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Disponible"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Disponible"
msgid "Back"
msgstr "Retour"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Retour aux discussions"
@@ -1840,12 +1926,12 @@ msgstr "Veuillez vérifier votre e-mail avant d’accepter cette demande de disc
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Avant de pouvoir recevoir des notifications pour les posts de {name}, vous devez d’abord vérifier votre e-mail."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Veuillez vérifier votre e-mail avant d’envoyer des messages à d’autres personnes."
@@ -1877,7 +1963,7 @@ msgstr "Date de naissance"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "Bloquer {displayName}"
msgid "Block account"
msgstr "Bloquer le compte"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Bloquer ce compte ?"
@@ -1912,15 +1998,15 @@ msgstr "Bloquer ce compte ?"
msgid "Block accounts"
msgstr "Bloquer ces comptes"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
-msgstr ""
+msgstr "Bloquer et supprimer"
#. After-report action for a conversation
#: src/components/dms/AfterReportConversationDialog.tsx:167
msgctxt "button"
msgid "Block and leave"
-msgstr ""
+msgstr "Bloquer et partir"
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
msgid "Block list"
@@ -1936,9 +2022,9 @@ msgstr "Bloquer ces comptes ?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Bloquer le compte"
@@ -1946,17 +2032,17 @@ msgstr "Bloquer le compte"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Bloquer le compte"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Bloquer ce compte ou supprimer cette conversation"
#: src/components/dms/AfterReportConversationDialog.tsx:217
msgid "Block user and/or leave this conversation"
-msgstr ""
+msgstr "Bloquer ce compte ou partir de cette conversation"
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Bloqué"
@@ -1964,13 +2050,13 @@ msgstr "Bloqué"
msgid "Blocked accounts"
msgstr "Comptes bloqués"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Comptes bloqués"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Les comptes bloqués ne peuvent pas répondre à vos discussions, vous mentionner ou interagir avec vous."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky est meilleur entre ami·e·s !"
msgid "Bluesky is more fun with friends"
msgstr "Bluesky, c’est plus sympa avec des amis"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Bluesky, c’est plus sympa avec des amis ! Importez vos contacts pour découvrir qui est déjà là."
@@ -2053,7 +2139,7 @@ msgstr "Bluesky choisira un ensemble de comptes recommandés parmi les personnes
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 "Bluesky n’affichera pas votre profil et vos posts à des personnes non connectées. Il est possible que d’autres applications n’honorent pas cette demande. Cela ne privatise pas votre compte."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky va vérifier de manière proactive les comptes connus et authentiques."
@@ -2137,23 +2223,30 @@ msgstr "Affaires"
msgid "Button to go back to the home timeline"
msgstr "Bouton pour revenir à la page d’accueil"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Par {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Par <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr "Par <0>{ownerDisplayName}0>"
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr "par <0>@{0}0>"
@@ -2181,7 +2274,7 @@ msgstr "En créant un compte, vous acceptez les <0>Conditions générales0>."
msgid "By you"
msgstr "Par vous"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Caméra"
@@ -2192,8 +2285,8 @@ msgstr "Caméra"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Caméra"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Caméra"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Annuler"
@@ -2248,9 +2341,9 @@ msgstr "Annuler la réactivation et se déconnecter"
msgid "Cancel search"
msgstr "Annuler la recherche"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Impossible d’interagir avec un compte bloqué"
@@ -2264,7 +2357,7 @@ msgstr "Sous-titres (.vtt)"
msgid "Captions & alt text"
msgstr "Sous-titres et texte alt"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "carrousel"
@@ -2297,7 +2390,7 @@ msgstr "Changer la langue de l’appli."
msgid "Change Handle"
msgstr "Modifier le pseudo"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Changer de service de modération"
@@ -2310,11 +2403,11 @@ msgstr "Modifier le mot de passe"
msgid "Change password dialog"
msgstr "Fenêtre de modification de mot de passe"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Changer de catégorie de rapport"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Changer la raison du signalement"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Les changements ultérieurs dans ce kit de démarrage ne seront pas répercutés sur la liste après sa création. La liste sera une copie indépendante."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Discussions"
@@ -2361,6 +2454,13 @@ msgstr "Conversation supprimée"
msgid "Chat ended"
msgstr "Fin de la discussion"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr "Le lien d’invitation à la discussion n’est plus disponible"
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "Discussion verrouillée"
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Discussion en sourdine"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
-msgstr ""
+msgstr "Le compte destinataire de la discussion n’est pas suivi par le compte expéditeur."
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Demandes de discussion en attente"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Demandes de discussion"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Paramètres de discussion"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Paramètres de discussion"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Discussion sans sourdine"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Discussions"
@@ -2479,7 +2579,7 @@ msgstr "Choisir les langues du post"
msgid "Choose this color as your avatar"
msgstr "Choisir cette couleur comme avatar"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "Choisissez qui peut rejoindre cette discussion de groupe et comment."
@@ -2533,7 +2633,7 @@ msgstr "Cliquez pour plus d’infos"
msgid "click here"
msgstr "cliquez ici"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "Cliquez ici pour ajouter des personnes à cette discussion de groupe"
@@ -2541,7 +2641,7 @@ msgstr "Cliquez ici pour ajouter des personnes à cette discussion de groupe"
msgid "Click here to contact our support team"
msgstr "Cliquez ici pour contacter notre service client"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "Cliquez ici pour créer ou gérer un lien d’invitation pour cette discussion de groupe"
@@ -2558,7 +2658,7 @@ msgstr "Cliquez ici pour vous déconnecter"
msgid "Click here to resend the email"
msgstr "Cliquez ici pour renvoyer l’e-mail"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Cliquez ici pour redémarrer le processus de vérification."
@@ -2567,11 +2667,11 @@ msgstr "Cliquez ici pour redémarrer le processus de vérification."
msgid "Click here to update your birthdate"
msgstr "Cliquez ici pour mettre à jour votre date de naissance"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Cliquez ici pour mettre à jour votre adresse e-mail"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "Cliquez ici pour voir le lien d’invitation pour cette discussion de groupe"
@@ -2580,7 +2680,7 @@ msgstr "Cliquez ici pour voir le lien d’invitation pour cette discussion de gr
msgid "Click to open tag menu for {0}"
msgstr "Cliquez pour ouvrir le menu de mot-clé pour {0}"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Cliquer pour réessayer l’envoi échoué du message"
@@ -2594,28 +2694,30 @@ msgstr "Cliquer pour réessayer l’envoi échoué du message"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Cliquer pour réessayer l’envoi échoué du message"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Fermer le dialogue actif"
msgid "Close alert"
msgstr "Fermer l’alerte"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr "Fermer la bannière"
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Fermer le tiroir du bas"
@@ -2657,8 +2763,9 @@ msgstr "Fermer le tiroir du bas"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Fermer le dialogue"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Fermer l’image"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Ferme l’aperçu d’image"
@@ -2683,6 +2790,14 @@ msgstr "Ferme l’aperçu d’image"
msgid "Close menu"
msgstr "Fermer le menu"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr "Ferme la bannière des demandes entrantes"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Fermer ce dialogue"
@@ -2695,7 +2810,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:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Ferme la fenêtre de rédaction et abandonne le brouillon de post"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Bandes dessinées"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Règles de bonne conduite"
@@ -2740,12 +2855,12 @@ msgstr "Compléter le défi"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Écrire un nouveau post"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Permet d’écrire des posts de {0, plural, other {# caractères}} maximum"
@@ -2753,11 +2868,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:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "Compression du GIF en cours…"
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Compression de la vidéo en cours…"
@@ -2780,7 +2895,7 @@ msgstr "Configuré dans <0>les paramètres de modération0>."
msgid "Confirm"
msgstr "Confirmer"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Contenu et médias"
msgid "Content and media"
msgstr "Contenu et médias"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Contenu et médias"
@@ -2889,7 +3004,7 @@ msgstr "Menu contextuel en arrière-plan, cliquez pour fermer le menu."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Poursuivre le fil de discussion"
msgid "Continue thread..."
msgstr "Poursuivre le fil de discussion…"
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Continuer vers le nom du groupe"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Passer à l’étape suivante"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Discussion"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Conversation supprimée"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversation supprimée"
@@ -2939,13 +3054,20 @@ msgstr "Conversation supprimée"
#: src/components/dms/AfterReportConversationDialog.tsx:179
msgctxt "toast"
msgid "Conversation left"
-msgstr ""
+msgstr "Conversation quittée"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr "Discussion introuvable."
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Version de build copiée dans le presse-papier"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Copier le DID"
msgid "Copy host"
msgstr "Copier l’hébergeur"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Copier le lien vers le profil"
msgid "Copy link to starter pack"
msgstr "Copier le lien vers le kit de démarrage"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Copier le texte du message"
@@ -3052,7 +3175,7 @@ msgstr "Copier la valeur du registre TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Politique sur les droits d’auteur"
@@ -3065,7 +3188,7 @@ msgstr "Impossible de se connecter au fil d’actu personnalisé"
msgid "Could not connect to feed service"
msgstr "Impossible de se connecter au service de fil d’actu"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr "Impossible de récupérer le post"
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Échec du suivi de tous les contacts trouvés. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Impossible de se retirer de la discussion"
@@ -3094,6 +3217,10 @@ msgstr "Impossible de se retirer de la discussion"
msgid "Could not load feed"
msgstr "Impossible de charger le fil d’actu"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr "Impossible de charger l’invitation"
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Code du pays"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Créer"
@@ -3159,7 +3286,7 @@ msgstr "Créer un code QR pour un kit de démarrage"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Créer un kit de démarrage"
@@ -3174,13 +3301,14 @@ msgstr "Créer un kit de démarrage pour moi"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Créer un compte"
msgid "Create an account without using this starter pack"
msgstr "Créer un compte sans utiliser ce kit de démarrage"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Créer plutôt un avatar"
@@ -3206,7 +3334,7 @@ msgstr "Créer plutôt un avatar"
msgid "Create another"
msgstr "Créer un autre"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Créer une discussion de groupe"
@@ -3228,19 +3356,20 @@ msgstr "Créer une liste à partir d’un kit de démarrage"
msgid "Create moderation list"
msgstr "Créer une liste de modération"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Créer un nouveau compte"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr "Créer ou modifier un lien d’invitation pour cette discussion de groupe"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Créer un signalement pour {0}"
@@ -3256,8 +3385,8 @@ msgstr "Créer une liste de comptes"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "{0} créé"
@@ -3341,7 +3470,7 @@ msgstr "Par défaut"
msgid "Default icons"
msgstr "Icônes par défaut"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Supprimer la déclaration d’ouverture aux discussions"
msgid "Delete contacts"
msgstr "Retirer les contacts"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Supprimer la conversation"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Supprimer pour moi"
@@ -3399,11 +3528,11 @@ msgstr "Supprimer pour moi"
msgid "Delete list"
msgstr "Supprimer la liste"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Supprimer le message"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Supprimer le message pour moi"
@@ -3413,7 +3542,7 @@ msgstr "Supprimer mon compte"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Supprimer le post"
@@ -3434,12 +3563,12 @@ msgstr "Supprimer cette liste ?"
msgid "Delete this post?"
msgstr "Supprimer ce post ?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Supprimé"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Compte supprimé"
@@ -3507,13 +3636,13 @@ msgstr "Une boîte de dialogue : réglez qui peut interagir avec ce post"
msgid "Dim"
msgstr "Atténué"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Désactiver"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Désactiver le 2FA"
@@ -3521,7 +3650,7 @@ msgstr "Désactiver le 2FA"
msgid "Disable captions"
msgstr "Désactiver les sous-titres"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Désactiver le 2FA par e-mail"
@@ -3534,8 +3663,8 @@ msgstr "Désactiver le 2FA par e-mail"
msgid "Disable haptic feedback"
msgstr "Désactiver le retour haptique"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr "Désactiver le lien"
@@ -3547,7 +3676,7 @@ msgstr "Empêcher les citations pour ce post"
msgid "Disable replies entirely"
msgstr "Désactiver complètement les réponses"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "Désactiver ce lien d’invitation ?"
@@ -3560,9 +3689,9 @@ msgstr "Désactivé"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Abandonner"
msgid "Discard changes?"
msgstr "Abandonner les changements ?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Abandonner le brouillon ?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Abandonner ce post ?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Déconnecter de Germ DM"
@@ -3613,11 +3742,11 @@ msgstr "Découvrir de nouveaux fils d’actu"
msgid "Dismiss"
msgstr "Ignorer"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Ignorer la bannière"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Ignorer l’erreur"
@@ -3673,7 +3802,7 @@ msgstr "Ne comprend pas de nudité."
msgid "Domain verified!"
msgstr "Domaine vérifié !"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Vous n’avez pas de code ou en voulez un nouveau ? <0>Cliquez ici.0>"
@@ -3681,7 +3810,7 @@ msgstr "Vous n’avez pas de code ou en voulez un nouveau ? <0>Cliquez ici.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Pas de code à l’horizon ? <0>Cliquez ici pour le renvoyer.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Pas d’e-mail à l’horizon ? <0>Cliquez ici pour le renvoyer.0>"
@@ -3700,16 +3829,19 @@ msgstr "Pas d’inquiétude ! Tous les messages existants et vos paramètres so
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Terminer"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Tapez deux fois ou appuyez longtemps sur le message pour ajouter une réaction"
@@ -3741,15 +3873,6 @@ msgstr "Tapez deux fois pour aimer"
msgid "Download Bluesky"
msgstr "Télécharger Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Télécharger le fichier CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Télécharger le fichier CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Télécharger les données de discussions"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Télécharger les données de discussions"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Télécharger l’image"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr "Télécharger les données de profil"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr "Télécharger les données de profil"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Divulgation de données personnelles (doxxing)"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "ex. Les comptes qui répondent toujours avec des pubs."
msgid "Eating disorders"
msgstr "Troubles alimentaires"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Modifier"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Modifier l’avatar"
@@ -3847,14 +3978,14 @@ msgstr "Modifier l’avatar"
msgid "Edit Feeds"
msgstr "Modifier les fils d’actu"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Modifier le nom du groupe"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Modifier l’image"
@@ -3868,7 +3999,16 @@ msgstr "Modifier les paramètres d’interaction"
msgid "Edit interests"
msgstr "Modifier les centres d’intérêt"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr "Modifier le lien d’invitation"
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr "Modifier le lien d’invitation"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "Modifier les paramètres du lien"
@@ -3886,20 +4026,15 @@ msgstr "Modifier le statut « En direct »"
msgid "Edit moderation list"
msgstr "Modifier la liste de modération"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Modifier mes fils d’actu"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "Modifier le nom"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Modifier les notifications de {0}"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Modifier les personnes"
@@ -3925,7 +4060,7 @@ msgstr "Modifier le profil"
msgid "Edit starter pack"
msgstr "Modifier le kit de démarrage"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "Modifier le nom de cette discussion de groupe"
@@ -3937,7 +4072,7 @@ msgstr "Modifier la liste de comptes"
msgid "Edit who can reply"
msgstr "Modifier qui peut répondre"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Modifier votre kit de démarrage"
@@ -3971,7 +4106,7 @@ msgstr "Adresse e-mail"
msgid "Email Resent"
msgstr "E-mail renvoyé"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "E-mail envoyé !"
@@ -4006,8 +4141,8 @@ msgstr "Intégrez ce post à votre site web. Il suffit de copier l’extrait sui
msgid "Embedded video player"
msgstr "Lecteur vidéo intégré"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Activer"
@@ -4025,7 +4160,7 @@ msgstr "Activer le contenu pour adultes"
msgid "Enable captions"
msgstr "Activer les sous-titres"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Activer le 2FA par e-mail"
@@ -4038,13 +4173,12 @@ msgstr "Activer les médias externes"
msgid "Enable media players for"
msgstr "Activer les lecteurs médias pour"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Activez les notifications pour un compte en visitant leur profil puis en appuyant sur l’<0>icône de cloche0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Activer les alertes (notifs push)"
@@ -4091,8 +4225,8 @@ msgstr "Saisir un mot de passe"
msgid "Enter a word or tag"
msgstr "Saisir un mot ou un mot-clé"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Entrer le code"
@@ -4143,7 +4277,7 @@ msgstr "Passe en mode plein écran"
msgid "Entertainment"
msgstr "Divertissement"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Erreur"
@@ -4185,23 +4319,23 @@ msgstr "Tout le monde peut répondre"
msgid "Everybody can reply to this post."
msgstr "Tout le monde peut répondre à ce post."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Tout le monde"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Tout le monde"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Tout le monde"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Divers"
@@ -4217,8 +4351,8 @@ msgstr "Exclut les comptes que vous suivez"
msgid "Exit fullscreen"
msgstr "Quitter le plein écran"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Développer le texte alt"
@@ -4226,7 +4360,7 @@ msgstr "Développer le texte alt"
msgid "Expand list of users"
msgstr "Développer la liste des comptes"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Développe ou réduit le post complet auquel vous répondez"
@@ -4238,7 +4372,7 @@ msgstr "Développer le post"
msgid "Expands or collapses post text"
msgstr "Développe ou réduit le texte du post"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "URI attendue pour résoudre un enregistrement"
@@ -4277,9 +4411,9 @@ msgstr "Médias explicites ou potentiellement dérangeants."
msgid "Explicit sexual images."
msgstr "Images sexuelles explicites."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Explorer"
@@ -4289,11 +4423,8 @@ msgstr "Explorer"
msgid "Explore the app"
msgstr "Explorer l’app"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr "Exporter les données de discussions"
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "Exporter mes données de discussions"
@@ -4322,7 +4453,7 @@ msgstr "Média externe"
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 "Les médias externes peuvent permettre à des sites web de collecter des informations sur vous et votre appareil. Aucune information n’est envoyée ou demandée tant que vous n’appuyez pas sur le bouton de lecture."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Préférences sur les médias externes"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Échec de l’acceptation de la conversation"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr "Échec de l’acceptation de la demande à rejoindre"
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Échec de l’ajout de la réaction émoji"
@@ -4354,7 +4489,7 @@ msgstr "Échec de l’ajout au kit de démarrage"
msgid "Failed to change handle. Please try again."
msgstr "Le changement de pseudo a échoué. Veuillez réessayer."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "Échec de la copie du lien"
@@ -4367,7 +4502,7 @@ msgstr "La création du mot de passe d’application a échoué. Veuillez réess
msgid "Failed to create conversation"
msgstr "Échec de la création de la conversation"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "Échec de la création du lien d’invitation"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Échec de la suppression de la conversation"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Échec de la suppression du message"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "Échec de la désactivation du lien d’invitation"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Échec de la déconnexion de Germ DM. Erreur : {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "Échec de l’édition du nom de la discussion de groupe"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "Échec de la modification du lien d’invitation"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "Échec de l’activation du lien d’invitation"
@@ -4427,19 +4562,27 @@ msgstr "Échec du suivi de tous vos amis, veuillez réessayer"
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "Échec du masquage de la suggestion, veuillez vérifier votre connexion au réseau"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr "Échec de l’action d’ignorer la demande à rejoindre"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr "Échec de l’action de rejoindre le groupe de discussion. Veuillez réessayer."
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "Échec du lancement de l’app des SMS"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "Échec du retrait de la discussion de groupe"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Échec du chargement des conversations"
@@ -4456,17 +4599,8 @@ msgstr "Échec du chargement des fils d’actu"
msgid "Failed to load feeds preferences"
msgstr "Échec du chargement des fils d’actu"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Échec du chargement des paramètres de notification."
@@ -4493,16 +4627,15 @@ msgstr "Échec du chargement des fils d’actu suggerés"
msgid "Failed to load suggested follows"
msgstr "Échec du chargement des suivis suggérés"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "Échec du verrouillage de la discussion de groupe"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Échec du marquage de toutes les demandes comme lues"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "Échec de la mise en sourdine de la discussion de groupe"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Échec de l’épinglage du post"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Échec de la reconnection avec Germ DM. Erreur : {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Échec de la suppression des données. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Échec du retrait de la réaction émoji"
@@ -4542,15 +4675,19 @@ msgstr "Échec du retrait d’un membre de la discussion de groupe"
msgid "Failed to remove verification"
msgstr "Échec du retrait de la vérification"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr "Échec de l’annulation de votre demande. Veuillez réessayer."
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr "Échec de la géolocalisation. Veuillez réessayer."
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Échec de l’enregistrement du brouillon"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "Échec de l’enregistrement de l’image"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Échec de l’enregistrement de vos centres d’intérêt."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Échec de l’envoi de l’e-mail, veuillez réessayer."
@@ -4580,7 +4717,7 @@ msgstr "Échec de l’envoi du rapport"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Échec de l’envoi de l’appel, veuillez réessayer."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Échec de l’activation ou désactivation du masquage du fil de discussion, veuillez réessayer"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr "Échec du déverrouillage de la discussion de groupe"
@@ -4597,12 +4734,12 @@ msgstr "Échec du déverrouillage de la discussion de groupe"
msgid "Failed to unpin list"
msgstr "Échec du désépinglage de la liste"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Échec de la mise à jour des paramètres du 2FA par e-mail"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Échec de la mise à jour de l’e-mail, veuillez réessayer."
@@ -4614,7 +4751,7 @@ msgstr "Échec de la mise à jour des fils d’actu"
msgid "Failed to update notification declaration"
msgstr "Échec de la mise à jour de la déclaration de notification"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Échec de la mise à jour des paramètres"
@@ -4641,7 +4778,7 @@ msgstr "Faux compte ou bot"
msgid "False information about elections"
msgstr "Fausses infos concernant des élections"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Fil d’actu"
@@ -4649,7 +4786,7 @@ msgstr "Fil d’actu"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Fil d’actu par {0}"
@@ -4662,7 +4799,7 @@ msgstr "Fil d’actu créé par"
msgid "Feed identifier"
msgstr "Identifiant du fil d’actu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Menu du fil d’actu"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Commentaires envoyés au fournisseur du fil d’actu"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Fils d’actu"
@@ -4739,7 +4876,7 @@ msgstr "Filtrer les résultats par langue (actuellement : {currentLanguageLabel
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Filtrer qui peut décider de recevoir des notifications pour votre activité"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Filtrer de qui vous recevrez des notifications"
@@ -4747,11 +4884,11 @@ msgstr "Filtrer de qui vous recevrez des notifications"
msgid "Finalizing"
msgstr "Finalisation"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Enfin !"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Finance"
msgid "Find accounts to follow"
msgstr "Trouver des comptes à suivre"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Rechercher des contacts"
@@ -4799,7 +4936,7 @@ msgstr "Trouver des comptes à suivre"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Trouver des posts, des comptes et des fils d’actu sur Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Retrouver vos amis"
@@ -4944,8 +5081,12 @@ msgstr "Suivi par <0>{0}0> et <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Suivi par <0>{0}0>, <1>{1}1> et {2, plural, one {# autre} other {# autres}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr "Accessible aux comptes abonnés"
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Abonné·e·s de @{0} que vous connaissez"
@@ -4995,19 +5136,16 @@ msgstr "Suit {handle}"
msgid "Following feed preferences"
msgstr "Préférences du fil des abonnements"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Préférences du fil des abonnements"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Vous suit"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Vous suit"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Police de caractères"
@@ -5069,7 +5207,7 @@ msgstr "Oublié ?"
msgid "Free your feed"
msgstr "Libérez votre fil d’actu"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "Provenant de"
@@ -5086,35 +5224,35 @@ msgstr "Tiré de <0/>"
msgid "Generate a starter pack"
msgstr "Générer un kit de démarrage"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Générer le lien d’invitation"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Générer un nouveau lien d’invitation"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Générer un nouveau lien"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germ DM déconnecté"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Lien avec Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germ DM reconnecté"
@@ -5122,46 +5260,50 @@ msgstr "Germ DM reconnecté"
msgid "Get help"
msgstr "Obtenir de l’aide"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr "Notifier quand quelqu’un s’inscrit avec un de vos kits de démarrage, quand votre compte est vérifié, etc."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Notifier quand des comptes vous suivent."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Notifier quand des comptes aiment des posts que vous avez republiés."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Notifier quand des comptes aiment vos posts."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr "Notifier quand des comptes aiment vos reposts."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Notifier quand des comptes vous mentionnent."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Notifier quand des comptes vous citent."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Notifier quand des comptes répondent à vos posts."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Notifier quand des comptes republient à leur tour un de vos reposts."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Notifier quand des comptes republient vos posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr "Notifier quand des comptes repostent vos reposts."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr "Notifier quand il y a de l’activité sur des posts auxquels vous vous êtes abonné·e."
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Recevoir une notification à chaque nouveau post"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Recevez des notifications à chaque nouveau post ou nouvelle réponse des comptes que vous choisissez."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Recevoir des notifications pour les nouveaux posts de {name}"
@@ -5174,27 +5316,27 @@ msgstr "Recevoir des notifications pour l’activité de ce compte"
msgid "Get notified when {name} posts"
msgstr "Recevoir des notifications quand {name} poste"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Recevez des notifications quand quelqu’un poste"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "C’est parti"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIF envoyé"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Donner à votre profil un visage"
@@ -5213,20 +5355,21 @@ msgstr "Glorification de la violence"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Retour"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Retour"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Retour à l’étape précédente"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Accéder à l’accueil"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Accéder à l’accueil"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Accéder à l’accueil"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Aller aux paramètres du compte"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Aller à la conversation avec {0}"
@@ -5299,12 +5440,12 @@ msgstr "Aller à la suite"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Voir le profil"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "Ouvrir la discussion de groupe nommée « {chatName} »"
@@ -5320,8 +5461,8 @@ msgstr "Voir le profil du compte"
msgid "Going live is currently disabled for your account"
msgstr "Votre compte ne peut plus passer en direct actuellement"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Bien compris"
@@ -5340,59 +5481,75 @@ msgstr "Contenu graphique violent"
msgid "Grooming or predatory behavior"
msgstr "Comportement de grooming ou de prédation"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr "Discussion de groupe"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "Boîte de dialogue du lien d’invitation à la discussion de groupe"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "Discussion de groupe verrouillée"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "Discussion de groupe en sourdine"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr "Nom de la discussion de groupe modifié"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "Paramètres de la discussion de groupe"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "Discussion de groupe déverrouillée"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "Discussion de groupe rétablie"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr "Les discussions de groupe ne sont pas encore disponibles"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr "Les discussions de groupe sont désormais disponibles"
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr "Les discussions de groupe ne peuvent avoir qu’un maximum de {0, plural, other {# personnes}}."
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "Le groupe est verrouillé"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Nom du groupe"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr "Le nom du groupe est trop long. La longueur maximale est de {MAX_GROUP_NAME_GRAPHEME_LENGTH} caractères."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Piratage du site ou attaques du système"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Ce pseudo est trop long. Veuillez utiliser un pseudo plus court."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "Actuellement"
@@ -5446,7 +5603,7 @@ msgstr "Activités néfastes ou à haut risque"
msgid "Harming or endangering minors"
msgstr "Contenu néfaste ou dangereux pour des mineurs"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Mot-clé"
@@ -5458,8 +5615,8 @@ msgstr "Mot-clé : {tag}"
msgid "Hate speech"
msgstr "Discours de haine"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Vous avez un code ? <0>Cliquez ici.0>"
@@ -5483,7 +5640,7 @@ msgstr "Conservé par Bluesky pendant 7 jours pour éviter les abus, puis suppri
msgid "Help"
msgstr "Aide"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Aidez les gens à savoir que vous n’êtes pas un bot en envoyant une image ou en créant un avatar."
@@ -5652,18 +5809,18 @@ msgstr "Hmm, il semble que nous ayons des difficultés à charger ces données.
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmm, nous n’avons pas pu charger ce service de modération."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Attendez ! Nous donnons progressivement accès à la vidéo et vous faites toujours la queue. Revenez bientôt !"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Minute, papillon ! Cette fonctionnalité n’est pas encore disponible pour vous. Veuillez revenir plus tard."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Accueil"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Si le texte alt est trop long, change son mode d’affichage"
@@ -5757,7 +5914,7 @@ msgstr "Si vous supprimez cette liste, vous ne pourrez pas la récupérer."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Si vous possédez votre propre domaine, vous pouvez l’utiliser comme pseudo. Cela vous permet d’auto-vérifier votre identité. <0>En savoir plus (en anglais)0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Si vous avez besoin de mettre à jour votre adresse e-mail, <0>cliquez ici0>."
@@ -5765,7 +5922,7 @@ msgstr "Si vous avez besoin de mettre à jour votre adresse e-mail, <0>cliquez i
msgid "If you remove this post, you won't be able to recover it."
msgstr "Si vous supprimez ce post, vous ne pourrez pas le récupérer."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Si vous mettez à jour votre adresse e-mail, la 2FA par e-mail sera désactivée."
@@ -5773,7 +5930,6 @@ msgstr "Si vous mettez à jour votre adresse e-mail, la 2FA par e-mail sera dés
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Si vous souhaitez modifier votre mot de passe, nous vous enverrons un code pour vérifier qu’il s’agit bien de votre compte."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Si vous voulez restreindre qui peut recevoir des notifications concernant votre propre activité, vous pouvez le faire depuis <0>Paramètres → Confidentialité et sécurité0>."
@@ -5786,23 +5942,33 @@ msgstr "Si vous êtes développeur, vous pouvez héberger votre propre serveur."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr "Ignorer"
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr "Ignorer la demande à rejoindre"
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Image"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "Image {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Image {0} sur {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "Image {0} sur {imageCount}"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Cache des images purgé, {0} libérés"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "Galerie d’images, {0} images"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "L’image est cachée pour respecter vos paramètres de modération."
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "L’image n’est pas disponible."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Options d’image"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Usurpation d’identité"
msgid "Import contacts"
msgstr "Importer des contacts"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Importer des contacts"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Importer des contacts pour retrouver vos amis"
@@ -5881,40 +6047,40 @@ msgstr "Importé le {0}"
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 "Pour vous offrir une expérience adaptée à votre âge, nous devons connaître votre date de naissance. On ne vous le demandera qu’une fois, et cette donnée restera privée."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "Dans l’app."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Notifications dans l’app."
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr "Dans l’app., de tout le monde"
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr "Dans l’app., des comptes suivis"
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr "Dans l’app., alertes"
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr "Dans l’app., alertes, de tout le monde"
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr "Dans l’app., alertes, des comptes suivis"
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "Boîte de réception vide"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "C’est vide !"
@@ -5963,6 +6129,10 @@ msgstr "Et voici les posts conservés (les signets)"
msgid "Invalid 2FA confirmation code."
msgstr "Code de confirmation 2FA invalide."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr "Code de discussion de groupe incorrect."
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Votre pseudo est invalide. Veuillez utiliser un pseudo différent."
@@ -5977,10 +6147,14 @@ msgstr "Paramètres d’interaction invalides."
msgid "Invalid phone number"
msgstr "Numéro de téléphone incorrect"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Sujet de signalement invalide"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr "Demande d’annulation invalide."
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Code de vérification invalide"
@@ -6010,12 +6184,12 @@ msgstr "Inviter des amis"
msgid "Invite friends <0/>"
msgstr "Inviter des amis <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Lien d’invitation"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "Lien d’invitation créé"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "Lien d’invitation désactivé"
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
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."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID de job : {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID de job : {0}"
msgid "Jobs"
msgstr "Emplois"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr "Rejoindre"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Emplois"
msgid "Join Bluesky"
msgstr "Rejoignez Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr "Rejoindre la discussion de groupe"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr "Demande à rejoindre annulée."
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Participez à la conversation"
msgid "Journalism"
msgstr "Journalisme"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Revenir à l’édition"
@@ -6143,7 +6331,7 @@ msgstr "Étiquettes sur votre compte"
msgid "Labels on your content"
msgstr "Étiquettes sur votre contenu"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Paramètres linguistiques"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Dernier"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "En savoir plus sur cet avertissement"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "En savoir plus sur la vérification sur Bluesky (en anglais)"
@@ -6239,7 +6427,7 @@ msgstr "En savoir plus sur la vérification sur Bluesky (en anglais)"
msgid "Learn more about what is public on Bluesky."
msgstr "En savoir plus sur ce qui est public sur Bluesky (en anglais)."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "En savoir plus sur votre lien Germ DM"
@@ -6252,8 +6440,8 @@ msgstr "En savoir plus dans vos <0>paramètres de compte.0>"
msgid "Learn more."
msgstr "En savoir plus."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Se retirer"
@@ -6276,7 +6464,7 @@ msgstr "Se retirer de la discussion"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Se retirer de la conversation"
@@ -6284,13 +6472,13 @@ msgstr "Se retirer de la conversation"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Se retirer de la conversation"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "Quitter la discussion de groupe"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr "Se retirer de cette discussion de groupe"
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Clair"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Aimer ({0, plural, one {# ont aimé} other {# ont aimé}})"
@@ -6346,11 +6534,7 @@ msgstr "Aimer 10 posts"
msgid "Like 10 posts to train the Discover feed"
msgstr "Aimez 10 posts afin de former le fil d’actu « Discover »"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Notifications « J’aime »"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Aimer ce fil d’actu"
@@ -6358,8 +6542,8 @@ msgstr "Aimer ce fil d’actu"
msgid "Like this labeler"
msgstr "Aimer cet étiqueteur"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Aimé par"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Aimé par {0, plural, one {# compte} other {# comptes}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Aimé par {likeCount, plural, one {# compte} other {# comptes}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Posts aimés"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "« J’aime » de vos reposts"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Notifications « J’aime » de vos reposts"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Mentions « J’aime » sur ce post"
@@ -6409,11 +6589,11 @@ msgstr "Mentions « J’aime » sur ce post"
msgid "Linear"
msgstr "Linéaire"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "Lien copié dans le presse-papiers"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Liste"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Liste réaffichée"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listes"
@@ -6545,7 +6725,7 @@ msgstr "Direct réaffiché"
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."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "La fonction « En direct » est en bêta"
@@ -6595,27 +6775,27 @@ msgstr "Chargement des paramètres d’interaction du post…"
msgid "Loading..."
msgstr "Chargement…"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "Verrouiller"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "Verrouiller la discussion de groupe"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "Verrouiller la discussion de groupe ?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "Verrouiller cette discussion de groupe"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "Verrouillée"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Journaux"
@@ -6662,7 +6842,7 @@ msgstr "On dirait que vous n’avez plus de fil des abonnements. <0>Cliquez ici
msgid "Love GIFs"
msgstr "GIFs d’amour"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Ajuster les paramètres d’e-mail pour votre compte"
@@ -6687,9 +6867,8 @@ msgstr "Gérer les paramètres de vérification"
msgid "Manage your muted words and tags"
msgstr "Gérer les mots et les mots-clés masqués"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Tout marquer comme lus"
@@ -6698,13 +6877,12 @@ msgstr "Tout marquer comme lus"
msgid "Mark as read"
msgstr "Marqué comme lu"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Tout marqué comme lus"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Peut-être plus tard"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Médias qui peuvent être perturbants ou inappropriés pour certains publics."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Membres"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "Les membres pourront continuer à lire l’historique de la discussion mais ne pourront plus envoyer de nouveaux messages."
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Notifications des mentions"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "comptes mentionnés"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Mentions"
@@ -6775,22 +6949,22 @@ msgstr "Envoyer un message à {0}"
msgid "Message {displayName}"
msgstr "Envoyer un message à {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Message supprimé"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Message supprimé"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Échec de l’envoi du message."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Message de @{0} : {1}"
@@ -6813,19 +6987,19 @@ msgstr "Le message est trop long"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "Le message est trop long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Options de message"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Messages"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr "Les messages de ce compte resteront masqués tant que vous resterez bloqué·e par celui-ci."
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr "Les messages de ce compte resteront masqués tant qu’il restera bloqué."
@@ -6838,10 +7012,6 @@ msgstr "Minuit"
msgid "Minor harassment or bullying"
msgstr "Harcèlement (ou intimidation) d’un mineur"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Notifications diverses"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Trompeur"
@@ -6850,7 +7020,7 @@ msgstr "Trompeur"
msgid "Missing media"
msgstr "Média manquant"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Modération"
@@ -6894,7 +7064,7 @@ msgstr "Liste de modération mise à jour"
msgid "Moderation lists"
msgstr "Listes de modération"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Listes de modération"
@@ -6903,7 +7073,7 @@ msgstr "Listes de modération"
msgid "moderation settings"
msgstr "paramètres de modération"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "États de modération"
@@ -6949,7 +7119,7 @@ msgstr "Cinéma"
msgid "Music"
msgstr "Musique"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Mettre en sourdine"
@@ -6994,7 +7164,7 @@ msgstr "Masquer la liste"
msgid "Mute these accounts?"
msgstr "Masquer ces comptes ?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "Mettre cette discussion de groupe en sourdine"
@@ -7032,7 +7202,7 @@ msgstr "Masquer ce fil de discussion"
msgid "Mute words & tags"
msgstr "Masquer les mots et les mots-clés"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "En sourdine"
@@ -7040,7 +7210,7 @@ msgstr "En sourdine"
msgid "Muted accounts"
msgstr "Comptes masqués"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Comptes masqués"
@@ -7108,8 +7278,8 @@ msgstr "Navigue vers le prochain écran"
msgid "Navigates to your profile"
msgstr "Navigue vers votre profil"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Besoin de signaler une violation de droit d’auteur, un problème de conformité réglementaire, ou faire une requête légale ?"
@@ -7136,34 +7306,34 @@ msgstr "{postsCount, plural, one {Nouveau post} other {Nouveaux posts}} de {firs
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{postsCount, plural, one {Nouveau post} other {Nouveaux posts}} de {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Nouvelle discussion"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "Nouvelle discussion avec {0}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "Nouvelle discussion avec {0} et {1}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "Nouvelle discussion avec {0}, {1} et {memberCount, plural, one {{memberCount} autre} other {{memberCount} autres}}."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Nouvelle adresse e-mail"
@@ -7174,29 +7344,25 @@ msgstr "Nouvelle adresse e-mail"
msgid "New Feature"
msgstr "Nouvelle fonctionnalité"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Notifications de nouveaux comptes abonnés"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Nouveaux comptes abonnés"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "Nouvelle discussion de groupe"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "Nouvelle discussion de groupe"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "Nouvelle discussion de groupe avec :"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Nouveau post"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Nouveau post"
@@ -7262,8 +7428,8 @@ msgstr "Actualités"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "Pas de GIFs trouvés pour « {query} »."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "Pas de GIFs à afficher actuellement. Veuillez réessayer plus tard."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Pas d’image"
@@ -7362,7 +7528,7 @@ msgstr "Ne suit plus {0}"
msgid "No media yet"
msgstr "Aucun média pour l’instant"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Pas encore de messages"
@@ -7378,12 +7544,12 @@ msgstr "Sans nom"
msgid "No notifications yet!"
msgstr "Pas encore de notifications !"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Personne"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Personne"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Aucun résultat"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Aucun résultat"
@@ -7509,10 +7675,6 @@ msgstr "Imagerie intime sans consentement"
msgid "Non-sexual Nudity"
msgstr "Nudité non sexuelle"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Aucune"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "Indisponible sur cette plateforme."
msgid "Not followed by anyone you’re following"
msgstr "Pas suivi par quiconque que vous suivez"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Introuvable"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Pas encore prêt·e à appuyer sur Poster ? Gardez vos meilleures idées dans les Brouillons jusqu’au moment parfait."
@@ -7548,44 +7710,31 @@ msgstr "Note : Ce post n’est visible qu’aux personnes connectées."
msgid "Nothing saved yet"
msgstr "Rien n’a encore été conservé"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Paramètres de notification"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Sons de notification"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Notifications"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Notifications pour tout le reste, comme quand quelqu’un s’inscrit via l’un de vos kits de démarrage."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "maintenant"
@@ -7601,7 +7750,7 @@ msgstr "Le numéro doit être un numéro de mobile"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Éteint"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "sur<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Réinitialiser le didacticiel"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
-msgstr ""
+msgstr "Un des comptes destinataires sélectionnés n’autorise pas les discussions de groupe."
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Un des comptes destinataires sélectionnés vous a bloqué et ne pourra pas être contacté."
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr "Un ou plusieurs des fichiers sélectionnés sont trop gros. La taille maximale est de {VIDEO_MAX_SIZE_MB} Mo."
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Un ou plusieurs posts sont trop longs pour être enregistrés comme brouillons. La limite est {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {d’un caractère} other {de # caractères}} maximum."
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Une ou plusieurs vidéos n’ont pas de texte alt."
@@ -7685,6 +7835,26 @@ msgstr "Une ou plusieurs vidéos n’ont pas de texte alt."
msgid "Only {0} can reply."
msgstr "Seul {0} peut répondre."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr "Seulement {0} des {1} {2, plural, one {image} other {images}} ont été ajoutées ; la limite est de {MAX_GALLERY_IMAGES} images"
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr "Seuls les comptes administrateurs peuvent accepter les demandes à rejoindre."
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr "Seuls les comptes administrateurs peuvent ignorer les demandes à rejoindre."
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr "Seuls les comptes abonnés peuvent rejoindre cette discussion."
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Seulement des abonné·e·s que je suis"
msgid "Only image files are supported"
msgstr "Seuls les fichiers d’images sont pris en charge"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr "Seules les personnes auxquelles {0} est abonné·e peuvent rejoindre la discussion."
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr "Seuls les personnes abonnées au compte propriétaire de la discussion peuvent la rejoindre"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Seuls les fichiers WebVTT (.vtt) sont pris en charge"
@@ -7712,7 +7892,7 @@ msgstr "Oups, quelque chose n’a pas marché !"
msgid "Oops!"
msgstr "Oups !"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Ouvre le créateur d’avatar"
@@ -7720,12 +7900,17 @@ msgstr "Ouvre le créateur d’avatar"
msgid "Open camera"
msgstr "Ouvrir l’appareil photo"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr "Ouvrir la discussion"
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "Ouvrir les options de membres concernant {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Ouvrir les options de conversation"
@@ -7739,16 +7924,16 @@ msgstr "Ouvre le menu latéral"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Ouvrir le sélecteur d’emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Ouvrir l’écran des infos sur le fil d’actu"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Ouvrir le menu des options de fil d’actu"
@@ -7760,13 +7945,17 @@ msgstr "Ouvrir la liste complète des emojis"
msgid "Open Germ DM"
msgstr "Ouvrir Germ DM"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr "Ouvrir la discussion de groupe"
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "Ouvrir les paramètres de discussion de groupe"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Ouvrir le lien vers {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Ouvrir le kit"
msgid "Open post options menu"
msgstr "Ouvrir le menu d’options du post"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Ouvrir le profil"
@@ -7817,6 +8006,10 @@ msgstr "Ouvrir la page Storybook"
msgid "Open system log"
msgstr "Ouvrir le journal du système"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr "Ouvrir cette discussion de groupe"
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Ouvre des détails supplémentaires pour une entrée de débug"
msgid "Opens alt text dialog"
msgstr "Ouvre la boîte de dialogue sur le texte alt"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Ouvre l’appareil photo de l’appareil"
@@ -7858,22 +8051,24 @@ msgstr "Ouvre la fenêtre de rédaction"
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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr "Ouvre la galerie de l’appareil pour sélectionner jusqu’à {MAX_GALLERY_IMAGES, plural, one {# image} other {# images}}, ou une seule vidéo ou GIF."
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Ouvre le flux de création d’un nouveau compte Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Ouvre le parcours pour vous connecter à votre compte Bluesky existant"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Ouvre l’image complète"
@@ -7890,7 +8085,7 @@ msgstr "Ouvre le sélecteur d’images"
msgid "Opens link {0}"
msgstr "Ouvre le lien vers {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Ouvre la fenêtre de statut « En direct »"
@@ -7919,9 +8114,9 @@ msgstr "Ouvre la fenêtre de rédaction"
msgid "Opens this draft in the composer"
msgstr "Ouvre le brouillon dans la fenêtre de rédaction"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Ouvre ce profil"
@@ -7997,12 +8192,12 @@ msgstr "Notre article de blog (en anglais)"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Notre équipe de modération a reçu votre signalement."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Notre modération a examiné les signalements qu’elle a reçu et a décidé de désactiver votre accès aux discussions sur Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Notre modération a examiné les signalements qu’elle a reçu et a dé
msgid "Owner"
msgstr "Propriétaire"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr "Le propriétaire doit verrouiller le groupe avant d’en partir."
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Page introuvable"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Page introuvable"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Mettre en pause la vidéo"
msgid "People"
msgstr "Personnes"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "Les personnes que {ownerName} suit peuvent rejoindre directement"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "Les personnes que {ownerName} peuvent demander à rejoindre"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Personnes suivies par @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Personnes qui suivent @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Comptes suivis"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "Les personnes que je suis peuvent rejoindre directement"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "Les personnes que je suis peuvent demander à rejoindre"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Images destinées aux adultes."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Épingler le fil d’actu"
@@ -8152,7 +8348,7 @@ msgstr "Épingler le fil d’actu"
msgid "Pin to home"
msgstr "Ajouter à l’accueil"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Ajouter à l’accueil"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Épinglé"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} ajouté à l’accueil"
@@ -8236,7 +8432,7 @@ msgstr "Veuillez choisir votre pseudo."
msgid "Please choose your password."
msgstr "Veuillez choisir votre mot de passe."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Veuillez cliquer sur le lien dans l’e-mail que nous venons de vous envoyer pour vérifier votre nouvelle adresse. C’est une étape importante permettant de continuer à profiter de toutes les fonctionnalités de Bluesky."
@@ -8244,7 +8440,7 @@ msgstr "Veuillez cliquer sur le lien dans l’e-mail que nous venons de vous env
msgid "Please complete the verification captcha."
msgstr "Veuillez compléter le captcha de vérification."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Veuillez confirmer votre adresse e-mail pour envoyer des vidéos."
@@ -8265,14 +8461,14 @@ msgstr "Veuillez saisir un mot de passe. Il doit comporter au moins 8 caractère
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Veuillez saisir un nom unique pour ce mot de passe d’application ou utiliser un nom généré de manière aléatoire."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Veuillez saisir un code valide."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Veuillez saisir une adresse e-mail valide."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Veuillez entrer une adresse e-mail valide et non temporaire. Vous pourriez avoir besoin d’accéder à cette adresse dans le futur."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Veuillez saisir le code que nous avons envoyé à <0>{0}0> ci-dessous."
@@ -8293,7 +8489,7 @@ msgstr "Veuillez saisir le code que nous avons envoyé à <0>{0}0> ci-dessous.
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Entrez le code que vous avez reçu et le nouveau mot de passe que vous souhaitez utiliser."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Veuillez saisir le code de sécurité que nous avons envoyé à votre précédente adresse e-mail."
@@ -8306,7 +8502,7 @@ msgstr "Veuillez entrer votre e-mail."
msgid "Please enter your invite code."
msgstr "Veuillez saisir votre code d’invitation."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Veuillez saisir votre nouvelle adresse e-mail."
@@ -8323,7 +8519,7 @@ msgstr "Veuillez entrer votre pseudo"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Expliquez-nous pourquoi vous pensez que cette étiquette a été appliquée à tort par {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Expliquez-nous pourquoi vous pensez que vos discussions ont été désactivées de manière indue"
@@ -8366,7 +8562,7 @@ msgstr "Veuillez utiliser l’app native pour importer vos contacts."
msgid "Please use the native app to sync your contacts."
msgstr "Veuillez utiliser l’app native pour synchroniser vos contacts."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Veuillez vérifier votre e-mail"
@@ -8383,7 +8579,7 @@ msgstr "Politique"
msgid "Porn"
msgstr "Porno"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Poster"
@@ -8403,12 +8599,12 @@ msgstr "Publier une photo"
msgid "Post a video"
msgstr "Publier une vidéo"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Tout poster"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Poster quand même"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Post bloqué"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Post de @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Post supprimé"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Échec de l’envoi du post. Vérifiez votre connexion Internet et réessayez."
@@ -8454,7 +8650,7 @@ msgstr "Post caché par vous"
msgid "Post interaction settings"
msgstr "Paramètres d’interaction du post"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Paramètres d’interaction du post"
@@ -8464,8 +8660,8 @@ msgstr "Paramètres d’interaction du post"
msgid "Post language selection"
msgstr "Sélection des langues du post"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Poster le lien"
@@ -8491,7 +8687,6 @@ msgstr "Post désépinglé"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Les posts peuvent être masqués en fonction de leur texte, de leurs mot
msgid "Posts hidden"
msgstr "Posts cachés"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Posts, réponses"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Lien potentiellement trompeur"
@@ -8528,6 +8719,7 @@ msgstr "Appuyer pour tenter une reconnection"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Appuyer pour réessayer"
@@ -8536,7 +8728,7 @@ msgstr "Appuyer pour réessayer"
msgid "Press to view followers of this account that you also follow"
msgstr "Appuyer pour voir les personnes qui suivent ce compte et que vous suivez également"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Aperçu"
@@ -8559,21 +8751,20 @@ msgstr "Vie privée"
msgid "Privacy and security"
msgstr "Confidentialité et sécurité"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Confidentialité et sécurité"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Paramètres de confidentialité et sécurité"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ 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:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "Traitement du GIF en cours…"
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Traitement de la vidéo en cours…"
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Traitement…"
@@ -8602,8 +8793,8 @@ msgstr "Traitement…"
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Publier le post"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Publier les posts"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Publier les réponses"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Publier la réponse"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Alertes"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Alertes (notifs push)"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr "Alertes, de tout le monde"
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr "Alertes, des comptes suivis"
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "Code QR a été téléchargé !"
msgid "QR code saved to your camera roll!"
msgstr "Code QR enregistré dans votre photothèque !"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Notifications de citation"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Citations désactivées"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Citations"
@@ -8733,11 +8920,11 @@ msgstr "Limite dépassée. Veuillez réessayer plus tard."
msgid "Re-attach quote"
msgstr "Réattacher la citation"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Réactiver le lien d’invitation"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Réactiver le lien"
@@ -8745,8 +8932,8 @@ msgstr "Réactiver le lien"
msgid "React with {emoji}"
msgstr "Réagir avec {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Réactions"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "découvrez-en plus sur les filtres de recherche (en anglais)"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Lire l’article de blog (en anglais)"
@@ -8812,11 +8999,11 @@ msgstr "Des vrais humains."
msgid "Reason for appeal"
msgstr "Raison de l’appel"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Recevoir des notifications dans l’app."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Recevoir des alertes (notifs push)"
@@ -8841,6 +9028,10 @@ msgstr "Recommandé"
msgid "Reconnect"
msgstr "Se reconnecter"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr "Rafraîchissez la page pour le voir."
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Décliner"
msgid "Reject chat request"
msgstr "Décliner la demande de discussion"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Rafraîchir les conversations"
@@ -8896,17 +9087,17 @@ msgstr "Supprimer compte"
msgid "Remove all contacts"
msgstr "Retirer tous les contacts"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Supprimer la pièce jointe"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Supprimer l’avatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Supprimer l’image d’en-tête"
@@ -8914,8 +9105,9 @@ msgstr "Supprimer l’image d’en-tête"
msgid "Remove caption file"
msgstr "Supprimer le fichier de sous-titres"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Supprimer l’intégration"
@@ -8933,8 +9125,8 @@ msgstr "Supprimer le fil d’actu ?"
msgid "Remove from chat"
msgstr "Supprimer de la discussion"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Retirer des posts conservés"
msgid "Remove from your feeds?"
msgstr "Supprimer de vos fils d’actu ?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Supprimer l’image"
@@ -9009,11 +9201,11 @@ msgstr "Retirer la vérification"
msgid "Remove your verification for this account?"
msgstr "Retirer votre vérification de ce compte ?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Supprimé par l’auteur·ice"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Supprimé par vous"
@@ -9035,7 +9227,7 @@ msgstr "Retiré des posts conservés"
msgid "Removed from starter pack"
msgstr "Compte retiré du kit de démarrage"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "en réponse à vous"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Réponses"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Répondre"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Répondre ({0, plural, one {# réponse} other {# réponses}})"
@@ -9125,10 +9316,6 @@ msgstr "Réponse cachée par l’auteur·ice du fil de discussion"
msgid "Reply Hidden by You"
msgstr "Réponse cachée par vous"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Notifications de réponses"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Les paramètres de réponse sont choisis par l’auteur·ice du fil de discussion"
@@ -9146,9 +9333,9 @@ msgstr "Visibilité de la réponse mise à jour"
msgid "Reply was successfully hidden"
msgstr "La réponse a été cachée avec succès"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Signaler"
@@ -9164,13 +9351,13 @@ msgstr "Signaler le compte"
msgid "Report conversation"
msgstr "Signaler la conversation"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Fenêtre de dialogue de signalement"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Signaler le fil d’actu"
@@ -9179,7 +9366,7 @@ msgstr "Signaler le fil d’actu"
msgid "Report list"
msgstr "Signaler la liste"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Signaler le message"
@@ -9199,8 +9386,8 @@ msgstr "Signaler le kit de démarrage"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Signalement envoyé"
@@ -9213,7 +9400,7 @@ msgstr "Signaler cette conversation"
msgid "Report this feed"
msgstr "Signaler ce fil d’actu"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "Signaler cette discussion de groupe"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Signaler cette liste"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Signaler ce direct"
@@ -9256,10 +9443,6 @@ msgstr "Republier"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Republier ({0, plural, one {# repost} other {# reposts}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Notifications de reposts"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Republié par vous"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Reposts"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Reposts de ce post"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Reposts de vos reposts"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Notifications des reposts de vos reposts"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr "Demander à rejoindre cette discussion de groupe"
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr "Demande acceptée."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Demander le code"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr "Demande ignorée."
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr "Demander à rejoindre"
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr "Demandée"
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "Demandes"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr "Demandes à rejoindre"
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Nécessiter un texte alt avant de publier"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Nécessiter un code par e-mail pour se connecter au compte."
@@ -9328,7 +9534,11 @@ msgstr "Obligatoire pour cet hébergeur"
msgid "Required in your region"
msgstr "Nécessaire dans votre région"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr "Annuler la demande"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Renvoyer"
@@ -9393,15 +9603,16 @@ msgstr "Réessaye la dernière action, qui a échoué"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Réessaye la dernière action, qui a échoué"
msgid "Retry"
msgstr "Réessayer"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Réessayer le chargement des options de signalement"
@@ -9426,14 +9637,14 @@ msgstr "Réessayer le chargement des options de signalement"
msgid "Return to previous page"
msgstr "Retourne à la page précédente"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Retour à la page d’accueil"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Retour à la page précédente"
@@ -9454,7 +9665,7 @@ msgstr "GIFs tristes"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Enregistrer la date de naissance"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Enregistrer les modifications"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Enregistrer les modifications ?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Enregistrer le brouillon"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Enregistrer le brouillon ?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Enregistrer le code QR"
msgid "Save these options for next time"
msgstr "Enregistrer ces choix pour la prochaine fois"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Enregistrer dans mes fils d’actu"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Conservés"
msgid "Saved Feeds"
msgstr "Fils d’actu enregistrés"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Posts conservés"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Enregistré à mes fils d’actu"
@@ -9551,8 +9764,8 @@ msgstr "Enregistré à mes fils d’actu"
msgid "Say hello!"
msgstr "Dites bonjour !"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "Dites bonjour à quelqu’un"
@@ -9576,18 +9789,18 @@ msgstr "Défiler à droite"
msgid "Scroll to top"
msgstr "Remonter en haut"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Recherche"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Rechercher dans les posts de @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Rechercher dans mes posts"
msgid "Search posts"
msgstr "Rechercher dans ses posts"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Rechercher dans les profils"
msgid "Search..."
msgstr "Rechercher…"
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Recherche parmi les profils"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Étape de sécurité requise"
@@ -9759,7 +9972,7 @@ msgstr "Sélectionner {langName}"
msgid "Select a color"
msgstr "Sélectionner une couleur"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Sélectionner une raison"
@@ -9828,7 +10041,7 @@ msgstr "Sélectionner le GIF"
msgid "Select GIF \"{0}\""
msgstr "Sélectionner le GIF « {0} »"
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "Sélectionner les membres du groupe"
@@ -9850,7 +10063,7 @@ msgstr "Sélectionner la langue…"
msgid "Select languages"
msgstr "Sélectionner les langues"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Sélectionner un service de modération"
@@ -9904,11 +10117,11 @@ msgstr "Sélectionnez vos centres d’intérêt parmi les options ci-dessous"
msgid "Select your preferred language for translations in your feed."
msgstr "Sélectionnez votre langue préférée pour traduire votre fils d’actu."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Sélectionner vos canaux de notification préférés"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "La sélection de plusieurs types de médias n’est pas prise en charge."
@@ -9921,9 +10134,9 @@ msgstr "Automutiliation ou comportement dangereux"
msgid "Send code"
msgstr "Envoyer le code"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Envoyer e-mail"
@@ -9939,7 +10152,7 @@ msgstr "Envoyer le rapport d’erreur"
msgid "Send feedback"
msgstr "Envoyer des commentaires"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Envoyer le message"
@@ -9952,7 +10165,7 @@ msgstr "Envoyer le post à {name}"
msgid "Send post to..."
msgstr "Envoyer le post à…"
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Envoyer le signalement à {title}"
@@ -9960,7 +10173,7 @@ msgstr "Envoyer le signalement à {title}"
msgid "Send the message from your phone"
msgstr "Envoyer le message depuis votre téléphone"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Envoyer par message privé"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "Envoyé à {0}"
@@ -10015,14 +10228,14 @@ msgstr "Indiquez votre date de naissance ci-dessous et vous serez de retour à p
msgid "Sets email for password reset"
msgstr "Définit l’e-mail pour la réinitialisation du mot de passe"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Paramètres"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Paramètres des notifications d’activité d’autres comptes"
@@ -10030,39 +10243,39 @@ msgstr "Paramètres des notifications d’activité d’autres comptes"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Paramètres autorisant les autres à être notifié de vos posts"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Paramètres des notifications « J’aime »"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Paramètres des notifications de mentions"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Paramètres des notifications de nouveaux comptes abonnés"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Paramètres des notifications diverses"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Paramètres des notifications « J’aime » de vos reposts"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Paramètres des notifications des reposts de vos reposts"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Paramètres des notifications de citations"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Paramètres des notifications de réponses"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Paramètres des notifications de reposts"
@@ -10079,10 +10292,12 @@ msgstr "Activité sexuelle ou nudité érotique."
msgid "Sexually Suggestive"
msgstr "Sexuellement suggestif"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Partager le DID de l’auteur"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Partager l’image"
@@ -10124,7 +10339,7 @@ msgstr "Partager l’URI at:// du post"
msgid "Share QR code"
msgstr "Partager le code QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Partager ce fil d’actu"
@@ -10151,7 +10366,7 @@ msgstr "Partager via…"
msgid "Share your contacts to find friends"
msgstr "Partager vos contacts pour retrouver des amis"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Testeur de préférences partagées"
@@ -10167,16 +10382,16 @@ msgstr "Voir le texte alt"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Afficher quand même"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "Afficher l’étiquette d’automatisation"
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Afficher l’avertissement et filtrer des fils d’actu"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Rendez visibles vos streams"
@@ -10297,15 +10512,17 @@ msgstr "Affiche le contenu"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Se connecter ou créer un compte"
msgid "Sign in or create your account to join the conversation!"
msgstr "Connectez-vous ou créez votre compte pour participer à la conversation !"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr "Connectez-vous pour accepter l’invitation."
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Se connecter à un compte qui n’est pas listé"
@@ -10337,6 +10558,10 @@ msgstr "Se connecter à un compte qui n’est pas listé"
msgid "Sign in to Bluesky or create a new account"
msgstr "Connectez-vous à Bluesky ou créez un nouveau compte"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr "Connectez-vous pour demander à rejoindre cette discussion de groupe."
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Se connecter pour voir le post"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Déconnexion"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Se déconnecter"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Se déconnecter ?"
@@ -10391,7 +10616,7 @@ msgstr "Ignorer"
msgid "Skip contact sharing and continue to the app"
msgstr "Sauter le partage de contacts et continuer vers l’app"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Ignorer les posts vides ?"
@@ -10405,7 +10630,7 @@ msgstr "Passer l’introduction et commencer à utiliser votre compte"
msgid "Skip to next step"
msgstr "Sauter à l’étape d’après"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "diapo"
@@ -10413,7 +10638,7 @@ msgstr "diapo"
msgid "Smaller"
msgstr "Plus petite"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Repousse le rappel"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "Quelqu’un a quitté le groupe"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Quelqu’un a réagi avec {0}"
@@ -10487,17 +10712,22 @@ msgstr "Quelqu’un a été retiré"
msgid "Someone was removed from the group"
msgstr "Quelqu’un a été retiré du groupe"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr "Il y a du nouveau par ici"
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Il y a un souci avec les données que vous essayez de signaler. Veuillez contacter le support."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Quelque chose n’a pas marché"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Quelque chose n’a pas marché !"
msgid "Something went wrong. Please try again in a moment."
msgstr "Quelque chose n’a pas marché. Veuillez réessayer plus tard."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Quelque chose n’a pas marché. Veuillez réessayer."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Un problème ? Dites-nous tout."
@@ -10568,7 +10798,7 @@ msgstr "Sports"
msgid "Start a conversation, and it will appear here."
msgstr "Démarrez une conversation, et elle apparaîtra ici."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Démarrer une nouvelle discussion"
@@ -10582,17 +10812,17 @@ msgstr "Commencer à ajouter des personnes"
msgid "Start adding people!"
msgstr "Commencez à ajouter des personnes !"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Démarrer la discussion"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Démarrer une discussion avec {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Kit de démarrage"
@@ -10654,12 +10884,12 @@ msgstr "Stockage effacé, vous devez redémarrer l’application maintenant."
msgid "Stored as part of a secure code for matching with others"
msgstr "Stocké sous forme de code sécurisé (hashé) pour retrouver d’autres comptes"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Historique"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 "Vous streamez sur Twitch ? Affichez le fait que vous êtes en direct sur Bluesky : cela ajoutera un badge à votre avatar qui mènera directement les gens sur votre stream."
@@ -10671,8 +10901,8 @@ msgstr "Vous streamez sur Twitch ? Affichez le fait que vous êtes en direct su
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Envoyer"
@@ -10684,9 +10914,9 @@ msgstr "Faire appel"
msgid "Submit Appeal"
msgstr "Faire appel"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Envoyer le signalement"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "S’abonner"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr "S’abonner sur {0}"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr "S’abonner à {publicationTitle} sur {0}"
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Succès"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Succès !"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr "Vous avez rejoint la discussion de groupe avec succès !"
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Vérification réussie"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Suggestion"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Coucher du soleil"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,20 +11014,20 @@ msgstr "Soutien"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Cette fonctionnalité n’a pas encore été activée dans votre pays ! Veuillez revenir plus tard."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
-msgstr ""
+msgstr "Les comptes suspendus ne peuvent pas participer à une discussion de groupe."
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
-msgstr ""
+msgstr "Les comptes suspendus ne peuvent pas participer à une discussion."
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Changer de compte"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Changer de compte"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Basculer vers {0}"
@@ -10828,7 +11062,7 @@ msgstr "Mots-clés seulement"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Appuyez ci-dessous pour autoriser Bluesky à accéder à votre position GPS. Nous l’utiliserons pour déterminer plus précisément quels contenus et quelles fonctionnalités sont disponibles dans votre région."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr "Tapez ici pour plus de détails"
@@ -10854,33 +11088,51 @@ msgstr "Appuyez pour reconnaître que vous comprenez et acceptez ces mises à jo
msgid "Tap to close context menu"
msgstr "Taper pour fermer le menu contextuel"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr "Appuyez pour copier ce lien d’invitation"
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Appuyer pour annuler"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr "Appuyez pour rejoindre cette discussion de groupe immédiatement"
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr "Appuyez pour ouvrir cette discussion de groupe"
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Appuyer pour supprimer"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "Appuyer pour supprimer votre réaction {0}"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr "Appuyez pour demander l'accès à cette discussion de groupe"
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Appuyer pour réessayer"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "Appuyer sur afficher {0} réactions"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Appuyer pour afficher toutes les réactions"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Appuyer pour voir les réactions"
@@ -10924,7 +11176,7 @@ msgstr "Conditions générales"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Texte et mots-clés"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Champ de saisie de texte"
@@ -11049,6 +11301,11 @@ msgstr "Les paramètres qui suivent seront utilisées comme vos paramètres par
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "Les lois locales nécessitent de vérifier que vous êtes adulte pour accéder à certaines fonctionnalités. Appuyez pour en savoir plus."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr "La limite du nombre de membres a été atteinte."
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "Le post auquel vous répondez est marqué comme étant écrit en {suggestedLanguageName} par son auteur·ice. Voudriez-vous plutôt répondre en <0>{suggestedLanguageName}0> ?"
@@ -11057,10 +11314,10 @@ msgstr "Le post auquel vous répondez est marqué comme étant écrit en {sugges
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Notre politique de confidentialité a été déplacée vers <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
-msgstr "La vidéo sélectionnée dépasse les {videoSize} Mo. Veuillez réessayer avec un fichier plus petit."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
+msgstr "La vidéo sélectionnée dépasse les {VIDEO_MAX_SIZE_MB} Mo. Veuillez réessayer avec un fichier plus petit."
#: src/lib/hooks/useCleanError.ts:41
#: src/lib/strings/errors.ts:19
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "Il n’y a pas de lien d’invitation pour cette discussion de groupe."
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "Un problème est survenu lors du chargement des GIFs. Vérifiez votre connexion et réessayez."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "Il y a un problème avec votre connexion Internet, veuillez réessayer"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "Il y a un problème avec votre connexion Internet, veuillez réessayer"
msgid "There was an issue contacting the server"
msgstr "Il y a eu un problème de connexion au serveur"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Il y a eu un problème de connexion au serveur, vérifiez votre connexion Internet et réessayez."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Il y a eu un problème lors de la récupération des notifications. Appuyez ici pour réessayer."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Il y a eu un problème lors de la récupération des posts. Appuyez ici pour réessayer."
@@ -11161,7 +11420,7 @@ msgstr "Il y a eu un problème lors de la récupération de vos informations de
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Il y a eu un problème lors de la suppression de ce fil d’actu. Vérifiez votre connexion internet et réessayez."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Cet appel sera envoyé à <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Cet appel sera envoyé au service de modération de Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Cet appel sera envoyé au service de modération de Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "Ce compte a choisi de ne rendre visible ses posts qu’aux personnes connectées."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "Ce bouton permet à d’autres d’ouvrir l’app Germ DM pour vous envoyer un message. Vous pouvez gérer sa visibilité depuis l’app Germ DM, ou vous pouvez déconnecter votre compte Bluesky de Germ DM complètement en cliquant sur le bouton ci-dessous."
@@ -11271,7 +11530,12 @@ msgstr "Ce bouton permet à d’autres d’ouvrir l’app Germ DM pour vous env
msgid "This chat has ended"
msgstr "Cette discussion est terminée"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr "Cette discussion est pleine"
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "Cette discussion est verrouillée"
@@ -11310,7 +11574,11 @@ msgstr "Ce contenu n’est pas disponible car l’un des comptes impliqués a bl
msgid "This content is not viewable without a Bluesky account."
msgstr "Ce contenu n’est pas visible sans un compte Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr "Cette discussion est verrouillée."
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Cette conversation se fait avec un compte supprimé ou désactivé. Appu
msgid "This draft will be permanently deleted."
msgstr "Ce brouillon sera supprimé définitivement."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Cette adresse e-mail est déjà associée à votre compte."
@@ -11360,7 +11628,7 @@ msgstr "Ce fil d’actu n’est plus disponible. Nous vous montrons <0>Discover<
msgid "This handle is reserved. Please try a different one."
msgstr "Ce pseudo est réservé. Veuillez utiliser un pseudo différent."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "Impossible d’utiliser cette image. Essayez avec un autre format, comme .jpg ou .png."
@@ -11368,6 +11636,18 @@ msgstr "Impossible d’utiliser cette image. Essayez avec un autre format, comme
msgid "This information is private and not shared with other users."
msgstr "Ces informations sont privées et ne sont pas partagées avec d’autres utilisateurs."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr "Ce lien d’invitation a été désactivé."
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr "Ce lien d’invitation a expiré"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr "Ce lien d’invitation est incorrect"
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "Rien à afficher ici"
@@ -11377,7 +11657,7 @@ msgstr "Rien à afficher ici"
msgid "This is not a valid link"
msgstr "Ce n’est pas un lien valide"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "Cette étiquette permet à tout le monde de savoir que ce compte est automatisé. Si elle est apposée, cette étiquette apparaît au côté du nom du compte sur son profil et ses posts. Elle peut être apposée ou retirée à tout moment."
@@ -11410,13 +11690,13 @@ msgstr "Cette liste – que vous avez créée – contient des violations possib
msgid "This list is empty."
msgstr "Cette liste est vide."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr "Ce message est caché car vous êtes bloqué·e par ce compte."
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr "Ce message est caché car vous avez bloqué ce compte."
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "L’auteur·ice de ce post a désactivé les citations."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Cette réponse sera classée dans une section cachée au bas de votre fil de discussion et masquera les notifications pour les réponses suivantes – à la fois pour vous-même et pour les autres."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "Cet écran n’est disponible que pour les discussions de groupe."
@@ -11494,18 +11775,18 @@ msgstr "Ce compte n’a pas de nom d’affichage, et ne peut donc pas être vér
msgid "This user doesn't have any followers."
msgstr "Ce compte n’a pas d’abonné·e·s."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Ce compte vous a bloqué et ne peut pas être contacté."
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr "Ce compte vous a bloqué. Vous ne pouvez pas voir son contenu."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
-msgstr ""
+msgstr "Ce compte a désactivé les discussions et ne peut pas être contacté."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
@@ -11574,7 +11855,7 @@ msgstr "Préférences des fils de discussion"
msgid "Threaded"
msgstr "Sous forme de fils"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Préférences des fils de discussion"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Pour désactiver le 2FA par e-mail, vérifiez votre accès à votre adresse e-mail."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Pour désactiver le 2FA par e-mail, veuillez prouver que vous avez accès à <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Meilleur"
msgid "Top replies first"
msgstr "Meilleures réponses en premier"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Sujet"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Vidéos tendances"
msgid "Trolling"
msgstr "Trolling"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "La confiance émerge de relations, de communautés et d’un contexte partagé, donc nous désignons également des <0>vérificateurs de confiance0> : des organisations qui peuvent vérifier des comptes directement."
@@ -11763,13 +12044,17 @@ msgstr "Impossible de contacter votre service. Vérifiez votre connexion Interne
msgid "Unable to delete"
msgstr "Impossible de supprimer"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
-msgid "Unable to find a selected recipient."
-msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr "Impossible de récupérer les demandes à rejoindre."
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr "Impossible de trouver un des comptes destinataires sélectionnés."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
-msgstr ""
+msgstr "Impossible de trouver le compte destinataire sélectionné."
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
@@ -11791,7 +12076,7 @@ msgstr "Indisponible"
msgid "Unavailable feed information"
msgstr "Informations sur le fil d’actu indisponible"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Débloquer la liste"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Annuler"
@@ -11872,7 +12157,7 @@ msgstr "Se désabonner du compte"
msgid "Unfollows the user"
msgstr "Se désabonne du compte"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Malheureusement, aucun des étiqueteurs auxquels vous êtes abonnés ne supporte ce type de signalement."
@@ -11904,13 +12189,13 @@ msgstr "Contenu pour adultes non-étiqueté"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Non-étiqueté, abusif ou sans consentement"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Retirer la mention « J’aime » ({0, plural, one {# ont aimé} other {# ont aimé}})"
@@ -11918,7 +12203,7 @@ msgstr "Retirer la mention « J’aime » ({0, plural, one {# ont aimé} other
msgid "Unlock chat"
msgstr "Déverrouiller la discussion"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr "Déverrouiller cette discussion de groupe"
@@ -11955,7 +12240,7 @@ msgstr "Réafficher la conversation"
msgid "Unmute list"
msgstr "Réafficher la liste"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "Enlever la sourdine de cette discussion de groupe"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Désépingler"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Désépingler le fil d’actu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Désépingler de l’accueil"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Supprimer la liste de modération"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} retiré de la page d’accueil"
@@ -12030,11 +12315,11 @@ msgstr "Se désabonner de cet étiqueteur"
msgid "Unsubscribed from list"
msgstr "Désabonné de la liste"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "Contenu à coller non supporté"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Type de vidéo non pris en charge : {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "Mettre à jour"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Mise à jour de <0>{displayName}0> dans les listes"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr "Mettre-à-jour l’appli."
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Mettre à jour l’e-mail"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Mettre à jour le lien d’invitation"
@@ -12065,11 +12354,19 @@ msgstr "Mettre à jour le lien d’invitation"
msgid "Update to {domain}"
msgstr "Mettre à jour pour {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr "Mettez-à-jour votre appli."
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr "Mettez-à-jour votre appli. pour le voir."
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "Mettez à jour votre app à la dernière version pour participer aux discussions !"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Mettre à jour votre e-mail"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "La mise à jour de la visibilité de la réponse a échoué"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Envoyer plutôt une photo"
@@ -12098,39 +12395,40 @@ msgstr "Envoyer plutôt une photo"
msgid "Upload a text file to:"
msgstr "Envoyer un fichier texte vers :"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Envoyer à partir de l’appareil photo"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Envoyer à partir de fichiers"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Envoyer à partir de la photothèque"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "Envoi du GIF en cours…"
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Envoi des images en cours…"
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Envoi de la miniature du lien en cours…"
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Envoi de la vidéo en cours…"
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "compte"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Compte bloqué"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Liste de compte de {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "Liste de comptes par {0}"
@@ -12255,12 +12553,12 @@ msgstr "comptes suivis par <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "comptes abonnés à <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "Comptes que je suis"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Comptes que je suis"
@@ -12277,7 +12575,7 @@ msgstr "La vérification a échoué, veuillez réessayer."
msgid "Verification settings"
msgstr "Paramètres de vérification"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Paramètres de vérification"
@@ -12304,8 +12602,8 @@ msgstr "Vérifier à nouveau"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Vérifier le code"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Vérifier l’enregistrement DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Vérifier le code d’e-mail"
@@ -12349,7 +12647,7 @@ msgstr "Vérifier le compte ?"
msgid "Verify your age"
msgstr "Vérifier votre âge"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Version {0}"
msgid "Video"
msgstr "Vidéo"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Le traitement de la vidéo a échoué"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Fil de vidéos"
@@ -12419,7 +12717,7 @@ msgstr "Vidéo non trouvée."
msgid "Video settings"
msgstr "Paramètres vidéo"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Vidéo envoyée"
@@ -12432,18 +12730,18 @@ msgstr "Vidéo : {0}"
msgid "Videos"
msgstr "Vidéos"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
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:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Voir"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr "Afficher {0}"
@@ -12455,7 +12753,7 @@ msgstr "Voir l’avatar de {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Voir le profil de {0}"
msgid "View {0}’s profile"
msgstr "Voir le profil de {0}"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "Voir le profil de {displayName}"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr "Afficher {publicationTitle}"
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr "Voir le profil de @{0}"
@@ -12503,10 +12801,18 @@ msgstr "Voir les détails"
msgid "View full thread"
msgstr "Voir le fil de discussion entier"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr "Voir les demandes de discussions de groupe"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr "Voir les demandes entrantes"
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr "Voir les demandes entrantes pour rejoindre cette discussion de groupe"
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Voir les informations sur ces étiquettes"
@@ -12522,7 +12828,7 @@ msgstr "Voir plus"
msgid "View more trending videos"
msgstr "Voir plus de vidéos tendances"
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Voir le post"
@@ -12539,10 +12845,10 @@ msgstr "Voir le profil"
msgid "View profile banner"
msgstr "Voir la bannière du profil"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr "Voir la publication"
@@ -12550,7 +12856,7 @@ msgstr "Voir la publication"
msgid "View the avatar"
msgstr "Afficher l’avatar"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "Voir le lien d’invitation pour cette discussion de groupe"
@@ -12563,7 +12869,7 @@ msgstr "Voir le service d’étiquetage fourni par @{0}"
msgid "View this user's verifications"
msgstr "Voir les vérifications de ce compte"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Voir les comptes qui ont aimé ce fil d’actu"
@@ -12596,8 +12902,8 @@ msgstr "Consulter vos comptes masqués"
msgid "View your verifications"
msgstr "Voir vos vérifications"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Affiche l’image complète"
@@ -12640,8 +12946,8 @@ msgstr "Avertir du contenu"
msgid "Warn content and filter from feeds"
msgstr "Avertir du contenu et filtrer des fils d’actu"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Regarder maintenant"
@@ -12665,10 +12971,14 @@ msgstr "Nous n’avons trouvé aucun résultat pour ce mot-clé."
msgid "We couldn't find any results for that topic."
msgstr "Nous n’avons trouvé aucun résultat pour ce sujet."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Nous ne pouvons pas charger cette conversation"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr "Nous n’avons pas pu charger les demandes à rejoindre cette discussion"
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "Nous n’avons pas pu charger cette discussion"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Nous vous recommandons de sélectionner au moins deux centres d’intérêt."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Nous avons envoyé un e-mail à <0>{0}0> contenant un lien. Veuillez cliquer dessus pour terminer le processus de vérification par e-mail."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Nous n’avons pas pu déterminer si vous étiez autorisé à envoyer des vidéos. Veuillez réessayer."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "Nous vous préviendrons dès que nous aurons retrouvé vos amis."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Nous enverrons un e-mail à <0>{0}0> contenant un lien. Vous devrez cliquer dessus pour terminer le processus de vérification par e-mail."
@@ -12779,12 +13089,12 @@ msgstr "Nous rencontrons des problèmes pour initialiser le processus de vérifi
msgid "We're having network issues, try again"
msgstr "Nous avons des soucis de réseau, réessayez"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "Nous avons des soucis de réseau, réessayez"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Nous introduisons un nouveau niveau de vérification sur Bluesky — une coche facile à voir."
@@ -12814,12 +13124,12 @@ msgstr "Nous sommes désolés, mais votre recherche n’a pu aboutir. Veuillez r
msgid "We're sorry, you cannot access this screen at this time."
msgstr "Nous sommes désolés, vous ne pouvez pas accéder à cet écran actuellement."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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é."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ 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.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Quoi de neuf ?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Quand vous tapez sur une coche, vous verrez quelles organisations ont accordé la vérification."
@@ -12878,7 +13188,7 @@ msgstr "Quand vous tapez sur une coche, vous verrez quelles organisations ont ac
msgid "Who can interact with this post?"
msgstr "Qui peut interagir avec ce post ?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "Qui peut rejoindre cette discussion de groupe et comment"
@@ -12887,13 +13197,13 @@ msgstr "Qui peut rejoindre cette discussion de groupe et comment"
msgid "Who can reply"
msgstr "Qui peut répondre ?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Qui peut vérifier ?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Oups !"
@@ -12939,19 +13249,19 @@ msgstr "Pourquoi ce kit de démarrage devrait-il être examiné ?"
msgid "Why should this user be reviewed?"
msgstr "Pourquoi ce compte doit-il être examiné ?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Souhaitez-vous bloquer ce compte ou supprimer cette conversation ?"
#: src/components/dms/AfterReportConversationDialog.tsx:47
msgid "Would you like to block this user and/or leave this conversation?"
-msgstr ""
+msgstr "Souhaitez-vous bloquer ce compte ou partir de cette conversation ?"
#: src/view/com/composer/drafts/DraftsButton.tsx:110
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:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr "Voulez-vous enregistrer ça comme brouillon à modifier plus tard ?"
@@ -12960,12 +13270,12 @@ msgstr "Voulez-vous enregistrer ça comme brouillon à modifier plus tard ?"
msgid "Write a post"
msgstr "Écrire un post"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Rédiger un post"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Rédigez votre réponse"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "L’identifiant DID retourné du serveur est incorrect. Réponse : {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "Mauvais type de discussion"
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "Vous vous connectez à Bluesky depuis une région qui nous oblige légalement à vérifier votre âge avant de vous laisser accéder à l’application."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr "Vous avez bloqué {0}"
@@ -13068,7 +13379,7 @@ msgstr "Vous êtes en direct"
msgid "You are no longer live"
msgstr "Vous n’êtes plus en direct"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Vous n’êtes pas autorisé à envoyer des vidéos."
@@ -13117,12 +13428,12 @@ msgstr "Vous pouvez changer d’avis à tout moment et supprimer vos données"
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Vous pouvez choisir si les discussions sont en sourdine ou non depuis les paramètres de chaque discussion depuis l’app"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Vous pouvez poursuivre les conversations en cours quel que soit le paramètre que vous choisissez."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Vous pouvez désormais choisir de recevoir une notification quand certains comptes spécifiques postent. S’il y a quelqu’un dont vous souhaitez avoir des nouvelles au plus vite, rendez-vous sur son profil et cherchez la nouvelle icône de cloche à côté du bouton de suivi."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr "Vous ne pouvez ajouter que {MAX_GALLERY_IMAGES, plural, other {# images}} par post au maximum"
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "Les brouillons enregistrés ne peuvent contenir que 1000 caractères maximum."
@@ -13139,11 +13455,11 @@ msgstr "Les brouillons enregistrés ne peuvent contenir que 1000 caractères max
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "Les brouillons enregistrés ne peuvent contenir que 1000 caractères maximum. Voulez-vous abandonner ce post avant d’ouvrir vos brouillons ?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
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:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Vous ne pouvez sélectionner qu’une vidéo à la fois."
@@ -13155,10 +13471,10 @@ msgstr "Vous pouvez réactiver votre compte pour continuer à vous connecter. Vo
msgid "You can read chat history but can’t send new messages."
msgstr "Vous pouvez lire l’historique de la discussion mais pas envoyer de nouveaux messages."
-#. 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: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."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr "Vous pouvez sélectionner jusqu'à {MAX_GALLERY_IMAGES, plural, other {# images}} au total."
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,9 +13482,9 @@ msgstr "Vous pouvez sélectionner {MAX_IMAGES, plural, one {une seule image} oth
msgid "You can update this later from your settings."
msgstr "Vous pourrez changer ça plus tard depuis vos paramètres."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
-msgstr ""
+msgstr "Vous ne pouvez pas encore créer de discussions de groupe."
#: src/lib/hooks/useCleanError.ts:54
#: src/lib/strings/errors.ts:28
@@ -13197,6 +13513,10 @@ msgstr "Vous n’avez encore aucun fil d’actu enregistré."
msgid "You got here first"
msgstr "Vous êtes en avance"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr "Vous avez été retiré·e de ce groupe par le passé et ne pouvez pas le rejoindre en utilisant ce lien."
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
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 ?"
@@ -13336,7 +13656,7 @@ msgstr "Vous devez suivre au moins sept autres personnes pour générer un kit d
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "Vous devez autoriser l’accès à votre médiathèque."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Vous voulez sans doute redémarrer l’appli. maintenant."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Vous avez réagi avec {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "Vous avez changé récemment de date de naissance"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Vous serez déconnecté·e de tous vos comptes."
@@ -13390,7 +13710,7 @@ msgstr "Vous recevrez désormais des notifications pour ce fil de discussion"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Vous recevrez un e-mail contenant un « code de réinitialisation ». Saisissez ce code ici, puis votre nouveau mot de passe."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "Vous ne pourrez plus la rejoindre à moins d’y être invité·e."
@@ -13463,7 +13783,7 @@ msgstr "Vous êtes arrivé à la fin du contenu actuel."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Vous avez atteint la fin de votre fil d’actu ! Trouvez d’autres comptes à suivre."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "Vous avez atteint le nombre maximum de brouillons"
@@ -13475,11 +13795,11 @@ msgstr "Vous avez atteint le nombre maximum de requêtes autorisées. Veuillez r
msgid "You've reached the start of the active content."
msgstr "Vous êtes arrivé au début du contenu actuel."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Vous avez atteint votre limite quotidienne d’envoi de vidéos (trop d’octets)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr "Votre compte a été supprimé, à plus ! ✌️"
msgid "Your account has been suspended"
msgstr "Votre compte a été suspendu"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Votre compte n’est pas encore assez ancien pour envoyer des vidéos. Veuillez réessayer plus tard."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr "Votre compte est trop récent"
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr "Votre compte doit avoir été créé il y a au moins 7 jours pour pouvoir créer une discussion de groupe."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Le dépôt de votre compte, qui contient toutes les données publiques, peut être téléchargé sous la forme d’un fichier « CAR ». Ce fichier n’inclut pas les éléments multimédias, tels que les images, ni vos données privées, qui doivent être récupérées séparément."
@@ -13519,7 +13847,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Vos discussions ont été désactivées"
@@ -13561,7 +13889,7 @@ msgstr "Votre e-mail"
msgid "Your email appears to be invalid."
msgstr "Votre e-mail semble être invalide."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Votre adresse e-mail n’a pas encore été vérifiée. Veuillez vérifier votre adresse e-mail pour profiter de toutes les fonctionnalités de Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "Votre fil d’actu des comptes suivis est vide ! Suivez plus de comptes
msgid "Your full handle will be <0>@{0}0>"
msgstr "Votre pseudo complet sera <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "Votre position a été mise à jour."
msgid "Your muted words"
msgstr "Vos mots masqués"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "Votre nom, avatar et le nom de la discussion de groupe sera visible pour tous."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr "Votre nom, avatar, le nom de cette discussion de groupe et le nombre de membres seront visibles de tous."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "Votre post a été envoyé"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "Vos posts ont été envoyés"
@@ -13635,7 +13963,7 @@ msgstr "Vos posts ont été envoyés"
msgid "Your preferred language"
msgstr "Votre langue préférée"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "Votre photo de profil"
@@ -13648,12 +13976,12 @@ msgstr "Votre photo de profil entourée de cercles concentriques d’autres phot
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Votre réponse a été envoyée"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Votre signalement sera envoyé à <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "Votre signalement sera envoyé à <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Votre sélection de centres d’intérêt nous aide à vous proposer des contenus qui vous tiennent à cœur."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "Votre fil de discussion contient des posts vides qui seront ignorés. Les posts restants seront publiés sous forme de fil de discussion."
diff --git a/src/locale/locales/fy/messages.po b/src/locale/locales/fy/messages.po
index 4e77953ae7..651739344e 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Frisian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minút} other {# minuten}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# moanne} other {# moannen}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# sekonde} other {# sekonden}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# net-lêzen item} other {# net-lêzen items}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} folgjend"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr "{0} fan 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} reagearre {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, in list fan {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Avatar fan {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# net-lêzen item} other {# net-lêzen items}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} hat dy ferifiearre"
msgid "{following} following"
msgstr "{following} folgjend"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "{handle} kin gjin priveeberjocht ûntfange"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# oere {minutesString}} other {# oeren {minutesStri
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# oere} other {# oeren}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# net-lêzen item} other {# net-lêzen items}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "In nij ferifikaasjeformulier"
@@ -827,11 +892,11 @@ msgstr "In skermôfdruk fan in profylside mei in belpiktogram njonken de folch-k
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr "Akseptearje"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Akseptearje"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Chatfersyk akseptearje"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Fersyk akseptearje"
@@ -860,17 +935,26 @@ msgstr "Fersyk akseptearje"
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Tagonklikheid"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Tagonklikheidsynstellingen"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Account negearre opheven"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Accounts mei in skulpe blau finkje <0><1/>0> kinne oaren ferifiearje. Dizze fertroude ferifiearders binne troch Bluesky selektearre."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Aktiviteiten fan oaren"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Aktiviteitsmeldingen"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Tafoegje"
@@ -999,8 +1079,8 @@ msgstr "Account tafoegje"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Alt-tekst tafoegje (opsjoneel)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Noch in account tafoegje"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Noch in berjocht tafoegje"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr "App-wachtwurd tafoegje"
msgid "Add App Password"
msgstr "App-wachtwurd tafoegje"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr "Emoji-reaksje tafoegje"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Mear details tafoegje (opsjoneel)"
@@ -1080,8 +1160,8 @@ msgstr "Dôvwurd tafoegje mei keazen ynstellingen"
msgid "Add muted words and tags"
msgstr "Negearre wurden en tags tafoegje"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr "Oanfoljende details (maksimaal 1000 tekens)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Oanfoljende details (maksimaal 300 tekens)"
@@ -1228,12 +1308,12 @@ msgstr "Leeftiidsferifikaasjefersyk is yntsjinne"
msgid "Age assurance only takes a few minutes"
msgstr "Leeftiidsferifikaasjefersyk duorret mar in pear minuten"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Alles"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Jou tagong ta dyn priveeberjochten"
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Al oanmeld as @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Alt-tekst"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alt-tekst beskriuwt ôfbyldingen foar bline en fisueel beheinde brûkers en biedt elkenien kontekst."
@@ -1387,7 +1467,7 @@ msgstr "Der is in flater bard"
msgid "An error occurred"
msgstr "Der is in flater bard"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Der is in flater bard wylst it komprimearjen fan de fideo."
@@ -1432,11 +1512,11 @@ msgstr "Der is in flater bard by it bewarjen fan de QR-koade!"
msgid "An error occurred while trying to follow all"
msgstr "Der is in flater bard wylst it besykjen om elkenien te folgjen"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "In yllustraasje, dy’t toant dat Bluesky fertroude ferifiearders selektearret en dizze wer inkelde brûkersaccounts ferifiearje."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "In probleem net fermeld yn dizze opsjes"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Der is in flater bard by it iepenjen fan de chat"
msgid "An issue occurred, please try again."
msgstr "Der is in flater bard. Probearje it opnij."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "In mock-up fan in iPhone dy’t de Bluesky-app iepenet nei it profyl fan in ferifiearre brûker mei in blau finkje njonken harren werjeftenamme."
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr "Elkenien kin reagearje"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr "Elkenien dy’t my folget"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "App-wachtwurdnammen moatte minimaal 4 tekens lang wêze"
msgid "App passwords"
msgstr "App-wachtwurden"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "App-wachtwurden"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Beswier yntsjinne"
@@ -1632,14 +1716,14 @@ msgstr "Beswier tsjin skorsing meitsje"
msgid "Appeal Suspension"
msgstr "Beswier tsjin skorsing meitsje"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Beswier tsjin dizze beslissing meitsje"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Bisto wis datsto it app-wachtwurd ‘{0}’ fuorsmite wolst?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr "Bisto wis datsto dit petear ferlitte wolst?"
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Bisto wis datsto dit berjocht fuortsmite wolst?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Fideo’s en GIF’s automatysk ôfspylje"
msgid "Available"
msgstr "Beskikber"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Beskikber"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Beskikber"
msgid "Back"
msgstr "Tebek"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Werom nei chats"
@@ -1840,12 +1926,12 @@ msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in petearfersyk ak
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Eardatsto meldingen ûntfange kinst foar berjochten fan {name}, moatsto earst dyn e-mailadres ferifiearje."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in oare brûker in priveeberjocht stjoere kinst."
@@ -1877,7 +1963,7 @@ msgstr "Jierdei"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Account blokkearje"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "Account blokkearje?"
msgid "Block accounts"
msgstr "Accounts blokkearje"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Dizze accounts blokkearje?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Brûker blokkearje"
@@ -1946,9 +2032,9 @@ msgstr "Brûker blokkearje"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Brûker blokkearje"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Blokkearre"
@@ -1964,13 +2050,13 @@ msgstr "Blokkearre"
msgid "Blocked accounts"
msgstr "Blokkearre accounts"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Blokkearre accounts"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Blokkearre accounts kinne net reagearje op dyn petearen, dy net fermelde en net op in oare manier mei dy kommunisearje."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky is noch nofliker mei freonen!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky sil in oantal oanrekommandearre brûkers kieze út de minsken yn
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 "Bluesky sil dyn profyl en berjochten net toane oan ôfmelde brûkers. Oare apps sille harren hjir miskien net oan hâlde. It makket dyn account net privee."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky sil pro-aktyf bekende en autentike accounts ferifiearje."
@@ -2137,23 +2223,30 @@ msgstr "Saaklik"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Troch {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Troch <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Mei it oanmeitsjen fan in account giesto akkoard mei de <0>Tsjinstbeting
msgid "By you"
msgstr "Troch dy"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Kamera"
@@ -2192,8 +2285,8 @@ msgstr "Kamera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Kamera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Annulearje"
@@ -2248,9 +2341,9 @@ msgstr "Weraktivearring annulearje en ôfmelde"
msgid "Cancel search"
msgstr "Sykopdracht annulearje"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Do kinst net yn kontakt komme mei in blokkearre brûker"
@@ -2264,7 +2357,7 @@ msgstr "Undertitels (.vtt)"
msgid "Captions & alt text"
msgstr "Undertitels & alt-tekst"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr "App-taal wijzigen"
msgid "Change Handle"
msgstr "Handle wizigje"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Moderaasjetsjinst wizigje"
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Rapportearreden wizigje"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Chat"
@@ -2361,6 +2454,13 @@ msgstr "Chat fuortsmiten"
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Chat negearre"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Chatfersyk Postfek YN"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Chatfersiken"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Chatynstellingen"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Chatynstellingen"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Chat net mear negearre"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Chats"
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "Dizze kleur as dyn avatar kieze"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr "Klik foar ynformaasje"
msgid "click here"
msgstr "klik hjir"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Klik hjir om it ferifikaasjeproses opnij te starten."
@@ -2567,11 +2667,11 @@ msgstr "Klik hjir om it ferifikaasjeproses opnij te starten."
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Klik hjir om dyn e-mailadres by te wurkjen"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Klik om mislearre priveeberjocht opnij te probearjen"
@@ -2594,28 +2694,30 @@ msgstr "Klik om mislearre priveeberjocht opnij te probearjen"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Klik om mislearre priveeberjocht opnij te probearjen"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Aktive dialoochfinster slute"
msgid "Close alert"
msgstr "Warskôging slute"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Paniel ûnderoan slute"
@@ -2657,8 +2763,9 @@ msgstr "Paniel ûnderoan slute"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Dialoochfinster slute"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Ofbylding slute"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr "Menu slute"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Dit dialoochfinster slute"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Slút warskôging foar bywurkjen wachtwurd"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Slút opstellen berjocht en negearret konsept"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Strips"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Mienskipsrjochtlinen"
@@ -2740,12 +2855,12 @@ msgstr "Foltôgje de útdaging"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Nij berjocht opstelle"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
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}}"
@@ -2753,11 +2868,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:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Fideo komprimearje…"
@@ -2780,7 +2895,7 @@ msgstr "Konfigurearre yn <0>moderaasje-ynstellingen0>."
msgid "Confirm"
msgstr "Befêstigje"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Ynhâld & media"
msgid "Content and media"
msgstr "Ynhâld en media"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Ynhâld en media"
@@ -2889,7 +3004,7 @@ msgstr "Kontekstmenu-eftergrûn, klik om it menu te sluten."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Petear trochsette"
msgid "Continue thread..."
msgstr "Fierder lêze…"
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Trochgean nei folgjende stap"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Petear"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Petear fuortsmiten"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Petear fuortsmiten"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Buildferzje nei klamboerd kopiearre"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "DID kopiearje"
msgid "Copy host"
msgstr "Host kopiearje"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Keppeling nei profyl kopiearje"
msgid "Copy link to starter pack"
msgstr "Keppeling nei startpakket kopiearje"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Berjochttekst kopiearje"
@@ -3052,7 +3175,7 @@ msgstr "TXT-recordwearde kopiearje"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Auteursrjochtbelied"
@@ -3065,7 +3188,7 @@ msgstr "Ferbine mei oanpaste feed mislearre"
msgid "Could not connect to feed service"
msgstr "Ferbine mei feedtsjinst mislearre"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Kin chat net ferlitte"
@@ -3094,6 +3217,10 @@ msgstr "Kin chat net ferlitte"
msgid "Could not load feed"
msgstr "Kin feed net lade"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Oanmeitsje"
@@ -3159,7 +3286,7 @@ msgstr "Meitsje in QR-koade foar in startpakket"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Meitsje in startpakket"
@@ -3174,13 +3301,14 @@ msgstr "Meitsje in startpakket foar my"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "In account oanmeitsje"
msgid "Create an account without using this starter pack"
msgstr "In account oanmeitsje sûnder gebrûk fan dit startpakket"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Yn stee dêrfan in avatar meitsje"
@@ -3206,7 +3334,7 @@ msgstr "Yn stee dêrfan in avatar meitsje"
msgid "Create another"
msgstr "Noch ien oanmeitsje"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Nij account oanmeitsje"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Melding meitsje foar {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Makke {0}"
@@ -3341,7 +3470,7 @@ msgstr "Standert"
msgid "Default icons"
msgstr "Standert piktogrammen"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Chatdeklaraasjerecord fuortsmite"
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Petear fuortsmite"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Foar my fuortsmite"
@@ -3399,11 +3528,11 @@ msgstr "Foar my fuortsmite"
msgid "Delete list"
msgstr "List fuortsmite"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Berjocht fuortsmite"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Berjocht foar my fuortsmite"
@@ -3413,7 +3542,7 @@ msgstr "Myn account fuortsmite"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Berjocht fuortsmite"
@@ -3434,12 +3563,12 @@ msgstr "Dizze list fuortsmite?"
msgid "Delete this post?"
msgstr "Dit berjocht fuortsmite?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Fuortsmiten"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Fuortsmiten account"
@@ -3507,13 +3636,13 @@ msgstr "Dialooch: oanpasse wa’t op dit berjocht reagearje mei"
msgid "Dim"
msgstr "Dôvje"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "2FA útskeakelje"
@@ -3521,7 +3650,7 @@ msgstr "2FA útskeakelje"
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "E-mail-2FA útskeakelje"
@@ -3534,8 +3663,8 @@ msgstr "E-mail-2FA útskeakelje"
msgid "Disable haptic feedback"
msgstr "Fielbere feedback útskeakelje"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Utskeakele"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Fuortsmite"
msgid "Discard changes?"
msgstr "Wizigingen fuortsmite?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Konsept fuortsmite?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Berjocht fuortsmite?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Nije feeds ûntdekke"
msgid "Dismiss"
msgstr "Slute"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Flater negearje"
@@ -3673,7 +3802,7 @@ msgstr "Befettet gjin neakens."
msgid "Domain verified!"
msgstr "Domein ferifiearre!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Hasto gjin koade of in nije nedicht? <0>Klik hjir.0>"
@@ -3681,7 +3810,7 @@ msgstr "Hasto gjin koade of in nije nedicht? <0>Klik hjir.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Gjin e-mailberjocht ûntfongen? <0>Klik hjir om opnij te ferstjoeren.0>"
@@ -3700,16 +3829,19 @@ msgstr "Meitsje dy gjin soargen! Alle besteande berjochten en ynstellingen wurde
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Dien"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Tik dûbeld of druk lang op in berjocht, om in reaksje ta te foegjen"
@@ -3741,15 +3873,6 @@ msgstr "Tik dûbeld om der wol oer te meien"
msgid "Download Bluesky"
msgstr "Bluesky downloade"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "CAR-bestân downloade"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "CAR-bestân downloade"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "Bygelyks brûkers dy’t faker mei advertinsjes reagearje."
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Bewurkje"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Avatar bewurkje"
@@ -3847,14 +3978,14 @@ msgstr "Avatar bewurkje"
msgid "Edit Feeds"
msgstr "Feeds bewurkje"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Ofbylding bewurkje"
@@ -3868,7 +3999,16 @@ msgstr "Ynteraksje-ynstellingen bewurkje"
msgid "Edit interests"
msgstr "Ynteressen bewurkje"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr "Live-status bewurkje"
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Myn feeds bewurkje"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Meldingen fan {0} bewurkje"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Persoanen bewurkje"
@@ -3925,7 +4060,7 @@ msgstr "Profyl bewurkje"
msgid "Edit starter pack"
msgstr "Startpakket bewurkje"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "Wa’t reagearje kin bewurkje"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Dyn startpakket bewurkje"
@@ -3971,7 +4106,7 @@ msgstr "E-mailadres"
msgid "Email Resent"
msgstr "E-mailberjocht opnij ferstjoerd"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "E-mailberjocht ferstjoerd!"
@@ -4006,8 +4141,8 @@ msgstr "Nim dit bericht op yn dyn website. Kopiearje ienfâldichwei it folgjende
msgid "Embedded video player"
msgstr "Yntegrearre fideospiler"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Ynskeakelje"
@@ -4025,7 +4160,7 @@ msgstr "Ynhâld foar folwoeksenen ynskeakelje"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "E-mail-2FA ynskeakelje"
@@ -4038,13 +4173,12 @@ msgstr "Eksterne media ynskeakelje"
msgid "Enable media players for"
msgstr "Mediaspilers ynskeakelje foar"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Skeakelje meldingen yn foar in account troch harren profyl te besykjen en op it <0>belpiktogram0> <1/> te drukken."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Pushmeldingen ynskeakelje"
@@ -4091,8 +4225,8 @@ msgstr "Fier in wachtwurd yn"
msgid "Enter a word or tag"
msgstr "Fier in wurd of tag yn"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Koade ynfiere"
@@ -4143,7 +4277,7 @@ msgstr "Iepenet folslein skerm"
msgid "Entertainment"
msgstr "Ferdivedaasje"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Flater"
@@ -4185,23 +4319,23 @@ msgstr "Elkenien kin reagearje"
msgid "Everybody can reply to this post."
msgstr "Elkenien kin reagearje op dit berjocht."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Elkenien"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Elkenien"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Elkenien"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Al it oare"
@@ -4217,8 +4351,8 @@ msgstr "Slút brûkers dy’tsto folgest út"
msgid "Exit fullscreen"
msgstr "Folslein skerm slute"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Alt-tekst útklappe"
@@ -4226,7 +4360,7 @@ msgstr "Alt-tekst útklappe"
msgid "Expand list of users"
msgstr "Brûkerslist útklappe"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Ut- of ynklappe fan it folsleine berjocht dêr’tsto op reagearrest"
@@ -4238,7 +4372,7 @@ msgstr "Berjochttekst útklappe"
msgid "Expands or collapses post text"
msgstr "Klapt berjochttekst út of yn"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Ferwacht waard dat uri omset wurde koe nei in record"
@@ -4277,9 +4411,9 @@ msgstr "Eksplisite of mooglik oanstjitjaande media."
msgid "Explicit sexual images."
msgstr "Eksplisite seksuele ôfbyldingen."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Untdekke"
@@ -4289,11 +4423,8 @@ msgstr "Untdekke"
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,7 @@ msgstr "Eksterne media"
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 "Eksterne media kinne websites tastean om ynformaasje oer dy en dyn apparaat te sammeljen. Der wurdt gjin ynformaasje ferstjoerd of frege oantsto op de knop ‘ôfspylje’ drukst."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Eksterne-mediafoarkarren"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Chat akseptearje mislearre"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Tafoegjen emoji-reaksje mislearre"
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "Kin handle net wizigje. Probearje nochris."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "Koe app-wachtwurd net oanmeitsje. Probearje it nochris."
msgid "Failed to create conversation"
msgstr "Oanmeitsjen fan petear mislearre"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Fuortsmiten fan chat mislearre"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Priveeberjocht kin net fuorsmiten wurde"
@@ -4394,24 +4529,24 @@ msgstr "Berjocht fuortsmiten mislearre, probearje it opnij"
msgid "Failed to delete starter pack"
msgstr "Fuortsmiten fan it startpakket is mislearre"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Laden van konversaasjes mislearre"
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "Laden fan feedfoarkarren is mislearre"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Meldingsynstellingen lade mislearre."
@@ -4493,16 +4627,15 @@ msgstr "Laden fan foarstelde feeds is mislearre"
msgid "Failed to load suggested follows"
msgstr "It is net slagge om in list te laden mei folchsuggestjes"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Alle fersiken as lêzen markearje mislearre"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Fêstsetten fan berjocht is mislearre"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Fuortsmiten emoji-reaksje mislearre"
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr "Fuortsmiten fan ferifikaasje mislearre"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Dyn ynteressen bewarje mislearre."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "E-mailberjocht ferstjoere mislearre, probearje it opnij."
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "It yntsjinjen fan beswier is mislearre, probearje it opnij."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "It wikseljen tusken wol/net-negearje fan it petear is mislearre, probearje it opnij"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Ynstellingen e-mail-2FA bywurkjen mislearre"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "E-mailadres bywurkjen mislearre, probearje it opnij."
@@ -4614,7 +4751,7 @@ msgstr "Net slagge om de feeds by te wurkjen"
msgid "Failed to update notification declaration"
msgstr "Bywurkjen meldingsdeklaraasje mislearre"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Ynstellingen bywurkje mislearre"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Feed"
@@ -4649,7 +4786,7 @@ msgstr "Feed"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Feed troch {0}"
@@ -4662,7 +4799,7 @@ msgstr "Feedmakker"
msgid "Feed identifier"
msgstr "Feedidentifikator"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Feedmenu"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Feeds"
@@ -4739,7 +4876,7 @@ msgstr "Filter sykje op taal (op dit stuit: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Filter wa’t kieze kin meldingen foar dyn aktiviteit te ûntfangen"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Filter fan wa’tsto meldingen ûntfangst"
@@ -4747,11 +4884,11 @@ msgstr "Filter fan wa’tsto meldingen ûntfangst"
msgid "Finalizing"
msgstr "Foltôgje"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Sykje accounts om te folgjen"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr "Sykje minsken om te folgjen"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Sykje berjochten, brûkers en feeds op Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "Folge troch <0>{0}0> en <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Folge troch <0>{0}0>, <1>{1}1> en {2, plural, one {# oar} other {# oaren}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Folgers fan @{0} dy’tsto kinst"
@@ -4995,19 +5136,16 @@ msgstr "Do folgest {handle}"
msgid "Following feed preferences"
msgstr "Folchfeedfoarkarren"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Folchfeedfoarkarren"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Folget dy"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Folget dy"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Lettertype"
@@ -5069,7 +5207,7 @@ msgstr "Ferjitten?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "Fan"
@@ -5086,35 +5224,35 @@ msgstr "Fan <0/>"
msgid "Generate a starter pack"
msgstr "In startpakket generearje"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "Krij help"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Untfang meldingen wannear’t minsken dy folgje."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Untfang meldingen wannear’t minsken wol oer berjochten meie dy’tsto opnij pleatst hast."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Untfang meldingen wannear’t minsken wol oer dyn berjochten meie."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Untfang meldingen wannear’t minsken dy neame."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Untfang meldingen wannear’t minsken dyn berjochten sitearje."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Untfang meldingen wannear’t minsken op dyn berjochten reagearje."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Untfang meldingen wannear’t minsken dyn opnij-pleatsingen opnij pleatse."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Untfang meldingen wannear’t minsken dyn berjochten opnij pleatse."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr ""
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Meldingen oer nije berjochten ûntfange"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Meldingen oer berjochten en antwurden fan accounts dy’tsto kiest ûntfange."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Meldingen oer nije berjochten fan {name} ûntfange"
@@ -5174,27 +5316,27 @@ msgstr "In melding ûntfange oer de aktiviteit fan dizze account"
msgid "Get notified when {name} posts"
msgstr "In melding ûntfange wannear’t {name} berjochten pleatst"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "In melding ûntfange wannear’t ien in berjocht pleatst"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Oan de slach"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Jou dyn profyl in gesicht"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Tebek"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Tebek"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Tebek nei de foarige stap"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Nei startside"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Nei startside"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Nei startside"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Gean nei accountynstellingen"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Nei petear mei {0}"
@@ -5299,12 +5440,12 @@ msgstr "Nei folgjende"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Nei profyl"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Handle te lang. Probearje in koartere."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Hashtag"
@@ -5458,8 +5615,8 @@ msgstr "Hashtag {tag}"
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Hasto in koade? <0>Klik hjir.0>"
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Help"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Lit minsken witte datsto gjin bot bist troch in foto op te laden of in avatar te meitsjen."
@@ -5652,18 +5809,18 @@ msgstr "Hmm, it liket derop dat wy problemen hawwe mei it laden fan dizze gegeve
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmm, wy koene dy moderaasjetsjinst net lade."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Wachtsje even! Wy jouwe stadichoan tagong ta fideo en do stiest noch hieltyd yn de rige. Kom fluch werom!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Startside"
@@ -5721,7 +5878,7 @@ msgstr "Ik begryp it"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
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"
@@ -5757,7 +5914,7 @@ msgstr "Asto dizze list fuotsmytst, kinsto dizze net mear werstelle."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Asto in eigen domein hast, kinsto dat as handle brûke. Sa kinsto dyn identiteit sels ferifiearje. <0>Klik hjir foar mear ynformaasje.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Asto dyn e-mailadres bywurkje moatst, <0>klik hjir0>."
@@ -5765,7 +5922,7 @@ msgstr "Asto dyn e-mailadres bywurkje moatst, <0>klik hjir0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Asto dit berjocht fuortsmytst, kinsto it net mear werstelle."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Asto dyn e-mailadres bywurkest, wurdt e-mail-2FA útskeakele."
@@ -5773,7 +5930,6 @@ msgstr "Asto dyn e-mailadres bywurkest, wurdt e-mail-2FA útskeakele."
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Asto dyn wachtwoord wizigje wolst stjoere wy dy in koade om te ferifiearjen dat dit dyn account is."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Asto beheine wolst wa’t meldingen foar de aktiviteit fan dyn account ûntfange kin, kinsto dit wizigje yn <0>Ynstellingen → Privacy en Befeiliging0>."
@@ -5786,23 +5942,33 @@ msgstr "Asto in ûntwikkeler bist, kinsto dyn eigen server hoste."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Ofbylding"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Ofbyldingsbuffer wiske, {0} frijmakke"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "Yn-app"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Yn-app-meldingen"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "Yn-app, elkenien"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "Yn-app, minsken dy’tsto folgest"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "Yn-app, pushberjocht"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "Yn-app, pushberjocht, elkenien"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "Yn-app, pushberjocht, minsken dy’tsto folgest"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Postfek YN nul!"
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Unjildige 2FA-befêstigingskoade."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Unjildige handle. Probearje in oare."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Unjildich rapportûnderwerp"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Unjildige ferifikaasjekoade"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Do bist no noch de iennige! Foegje mear persoanen ta oan dyn startpakket troch hjirboppe te sykjen."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "Taak-ID: {0}"
@@ -6083,6 +6257,11 @@ msgstr "Taak-ID: {0}"
msgid "Jobs"
msgstr "Fakatueres"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Fakatueres"
msgid "Join Bluesky"
msgstr "Lid wurde fan Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Doh mei oan it petear"
msgid "Journalism"
msgstr "Sjoernalistyk"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "Labels op dyn account"
msgid "Labels on your content"
msgstr "Labels op dyn ynhâld"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Taalynstellingen"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Lêste"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Mear ynfo oer dizze warskôging"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Mear ynfo oer wat iepenbier is op Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr "Mear ynformaasje yn dyn <0>accountynstellingen.0>"
msgid "Learn more."
msgstr "Mear ynfo."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Ferlitte"
@@ -6276,7 +6464,7 @@ msgstr "Chat ferlitte"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Petear ferlitte"
@@ -6284,13 +6472,13 @@ msgstr "Petear ferlitte"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Petear ferlitte"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Ljocht"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
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}})"
@@ -6346,11 +6534,7 @@ msgstr "Mei wol oer 10 berjochten"
msgid "Like 10 posts to train the Discover feed"
msgstr "Mei wol oer 10 berjochten om de Untdekken-feed te trainen"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Mei-’k-wol-oer-meldingen"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Mei wol oer dizze feed"
@@ -6358,8 +6542,8 @@ msgstr "Mei wol oer dizze feed"
msgid "Like this labeler"
msgstr "Mei wol oer dizze labeler"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Mei hjir wol oer"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Mei ’k wol oer troch {0, plural, one {# brûker} other {# brûkers}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Mei ’k wol oer troch {likeCount, plural, one {# brûker} other {# brûkers}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Mei-’k-wol-oers"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Mei-’k-wol-oers fan dyn opnij-pleatsingen"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Meldingen oer mei-’k-wol-oers fan dyn opnij-pleatsingen"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Mei-’k-wol-oers op dit berjocht"
@@ -6409,11 +6589,11 @@ msgstr "Mei-’k-wol-oers op dit berjocht"
msgid "Linear"
msgstr "Lineêr"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "List"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "List net-negearre"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listen"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Lade…"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Lochboek"
@@ -6662,7 +6842,7 @@ msgstr "It liket derop datsto in feed mist dy’tsto folgest.<0>Klik hjir om der
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "E-mailynstellingen foar dyn account oanpasse"
@@ -6687,9 +6867,8 @@ msgstr "Ferifikaasjeynstellingen beheare"
msgid "Manage your muted words and tags"
msgstr "Dyn negearre wurden en tags beheare"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Alles as lêzen markearje"
@@ -6698,13 +6877,12 @@ msgstr "Alles as lêzen markearje"
msgid "Mark as read"
msgstr "As lêzen markearje"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Alles as lêzen markearre"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Miskien letter"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Media dy’t foar bepaalde doelgroepen oanstjitjouwend of ûngepast wêze kinne."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Meldingen fan fermeldingen"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "fermelde brûkers"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Fermeldingen"
@@ -6775,22 +6949,22 @@ msgstr "Berjocht nei {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Berjocht fuortsmiten"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Berjocht fuortsmiten"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Berjocht fan @{0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Berjocht is te lang"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Berjochtopsjes"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Berjochten"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr "Middernacht"
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Ferskate meldingen"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderaasje"
@@ -6894,7 +7064,7 @@ msgstr "Moderaasjelist bywurke"
msgid "Moderation lists"
msgstr "Moderaasjelisten"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Moderaasjelisten"
@@ -6903,7 +7073,7 @@ msgstr "Moderaasjelisten"
msgid "moderation settings"
msgstr "moderaasjeynstellingen"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Moderaasjetastannen"
@@ -6949,7 +7119,7 @@ msgstr "Films"
msgid "Music"
msgstr "Muzyk"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Negearje"
@@ -6994,7 +7164,7 @@ msgstr "List negearje"
msgid "Mute these accounts?"
msgstr "Dizze accounts negearje?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Petear negearje"
msgid "Mute words & tags"
msgstr "Wurden en tags negearje"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Negearre accounts"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Negearre accounts"
@@ -7108,8 +7278,8 @@ msgstr "Navigearje nei folgjende skerm"
msgid "Navigates to your profile"
msgstr "Navigearret nei dyn profyl"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Moatst melding meitsje fan in skeining fan it auteursrjocht, in wetlike oanfraach, of in kwestje fan neilibjen fan de regeljouwing?"
@@ -7136,34 +7306,34 @@ msgstr "{postsCount, plural, one {Nij berjocht} other {Nije berjochten}} fan {fi
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{postsCount, plural, one {Nij berjocht} other {Nije berjochten}} fan {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Nije chat"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Nij e-mailadres"
@@ -7174,29 +7344,25 @@ msgstr "Nij e-mailadres"
msgid "New Feature"
msgstr "Nije funksje"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Meldingen oer nije folgers"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Nije folgers"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Nij berjocht"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Nij berjocht"
@@ -7262,8 +7428,8 @@ msgstr "Nijs"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Gjin ôfbylding"
@@ -7362,7 +7528,7 @@ msgstr "Do folgest {0} net mear"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Noch gjin berjochten"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "Noch gjin meldingen!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Gjin resultaat"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Gjin resultaten"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Net-seksuele neakens"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Gjin"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Net fûn"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr "Opmerking: dit berjocht is allinnich sichtber foar oanmelde brûkers."
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Meldingsynstellingen"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Meldingslûden"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Meldingen"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Meldingen foar al it oare, lykas wannear’t ien lid wurdt fia ien fan dyn startpakketten."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "no"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Ut"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "op<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Yntroduksje opnij toane"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "Alt-tekst ûntbrekt by ien of mear ôfbyldingen."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Alt-tekst ûntbrekt by ien of mear fideo’s."
@@ -7685,6 +7835,26 @@ msgstr "Alt-tekst ûntbrekt by ien of mear fideo’s."
msgid "Only {0} can reply."
msgstr "Allinnich {0} kin reagearje."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Allinnich folgers dy’t ik folgje"
msgid "Only image files are supported"
msgstr "Allinnich ôfbyldingsbestannen wurde stipe"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Allinnich WebVTT (.vtt)-bestannen wurde stipe"
@@ -7712,7 +7892,7 @@ msgstr "Och heden! Der is wat misgien!"
msgid "Oops!"
msgstr "Wûpsty!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Avatar-makker iepenje"
@@ -7720,12 +7900,17 @@ msgstr "Avatar-makker iepenje"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Petearopsjes iepenje"
@@ -7739,16 +7924,16 @@ msgstr "Menu iepenje"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Emoji-kiezer iepenje"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Feed-ynfoskerm iepenje"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Menu Feedopsjes iepenje"
@@ -7760,13 +7945,17 @@ msgstr "Folsleine emojilist iepenje"
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Keppeling nei {niceUrl} iepenje"
@@ -7790,8 +7979,8 @@ msgstr "Pakket iepenje"
msgid "Open post options menu"
msgstr "Berjochtoptiesmenu iepenje"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Profyl iepenje"
@@ -7817,6 +8006,10 @@ msgstr "Ferhaleboekside iepenje"
msgid "Open system log"
msgstr "Systeemlochboek iepenje"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Iepenet oanfoljende details foar in debug-item"
msgid "Opens alt text dialog"
msgstr "Iepenet Alt-tekstfinster"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Iepenet kamera op apparaat"
@@ -7858,22 +8051,24 @@ msgstr "Iepenet composer"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Iepenet proses om in nij Bluesky-account oan te meitsjen"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
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"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr "Iepenet keppeling {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Iepenet live-statusdialooch"
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Iepenet dit profyl"
@@ -7997,12 +8192,12 @@ msgstr "Us blogberjocht"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Us moderaasjeteam hat dyn melding ûntfongen."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Us moderators hawwe de meldingen besjoen en besletten dyn tagong ta chats op Bluesky út te skeakeljen."
@@ -8010,16 +8205,17 @@ msgstr "Us moderators hawwe de meldingen besjoen en besletten dyn tagong ta chat
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Side net fûn"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Side net fûn"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Fideo pauzearje"
msgid "People"
msgstr "Persoanen"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Persoanen folge troch @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Persoanen dy’t @{0} folgje"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Minsken dy’t ik folgje"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Ofbyldingen bedoeld foar folwoeksenen."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Feed fêstmeitsje"
@@ -8152,7 +8348,7 @@ msgstr "Feed fêstmeitsje"
msgid "Pin to home"
msgstr "Fêstsette op startside"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fêstsette op startside"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Fêstset"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} fêstset op startside"
@@ -8236,7 +8432,7 @@ msgstr "Dyn handle kieze."
msgid "Please choose your password."
msgstr "Kies dyn wachtwurd."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Klik op de keppeling yn it e-mailberjocht dat wy sakrekt ferstjoerd hawwe, om dyn e-mailadres te feifiearjen. Dit is in wichtige stap om alle funksjes fan Bluesky brûke te kinnen."
@@ -8244,7 +8440,7 @@ msgstr "Klik op de keppeling yn it e-mailberjocht dat wy sakrekt ferstjoerd haww
msgid "Please complete the verification captcha."
msgstr "Fier de ferifikaasje-captcha yn."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr "Fier in wachtwurd yn. It moat op syn minst 8 tekens lang wêze."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Fier in unike namme yn foar dit app-wachtwurd of brûk ús willekeurich generearre wachtwurd."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Fier in falide koade yn."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Fier in falide e-mailadres yn."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Fier in jildich, net-tydlik e-mailadres yn. Mooglik moetsto dit e-mailadres yn de takomst brûke."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Fier hjirûnder de koade dy’t wy nei <0>{0}0> ferstjoerd hawwe yn."
@@ -8293,7 +8489,7 @@ msgstr "Fier hjirûnder de koade dy’t wy nei <0>{0}0> ferstjoerd hawwe yn."
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Fier de befeiligingskoade dy’t wy nei dyn foarige e-mailadres ferstjoerd hawwe yn."
@@ -8306,7 +8502,7 @@ msgstr "Fier dyn e-mailadres yn."
msgid "Please enter your invite code."
msgstr "Fier dyn útnûgingskoade yn."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Fier dyn nije e-mailadres yn."
@@ -8323,7 +8519,7 @@ msgstr "Fier dyn brûkersnamme yn"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Lis út wêromsto tinkst dat dit label net krekt tapast is troch {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Lis út wêromsto tinkst dat dyn chats ûnrjochtlik útskeakele binne"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Ferifiearje dyn e-mailadres"
@@ -8383,7 +8579,7 @@ msgstr "Polityk"
msgid "Porn"
msgstr "Porno"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Pleatse"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Alles pleatse"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Berjocht blokkearre"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Berjocht fan @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Berjocht fuortsmiten"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Berjocht kin net opladen wurde. Kontrolearje dyn ynternetferbining en probearje it opnij."
@@ -8454,7 +8650,7 @@ msgstr "Berjocht troch dy ferstoppe"
msgid "Post interaction settings"
msgstr "Ynstellingen foar berjochtynteraksje"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Ynstellingen foar berjochtynteraksje"
@@ -8464,8 +8660,8 @@ msgstr "Ynstellingen foar berjochtynteraksje"
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Berjocht losmakke"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Berjochten kinne negearre wurde op basis fan tekst, tags of beide. Wy ri
msgid "Posts hidden"
msgstr "Berjocht ferstoppe"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Berjochten, antwurden"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Mooglik misliedende keppeling"
@@ -8528,6 +8719,7 @@ msgstr "Druk om opnij ferbining te meitsjen"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Druk om opnij te probearjen"
@@ -8536,7 +8728,7 @@ msgstr "Druk om opnij te probearjen"
msgid "Press to view followers of this account that you also follow"
msgstr "Druk om de folgers fan dizze account te besjen dy’tsto ek folgest"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "Privacy"
msgid "Privacy and security"
msgstr "Privacy en befeiliging"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privacy en befeiliging"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Privacy- en befeiligingsystellingen"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Privacybelied"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Fideo ferwurkje…"
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Ferwurkje…"
@@ -8602,8 +8793,8 @@ msgstr "Ferwurkje…"
msgid "profile"
msgstr "profyl"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Berjocht pleatse"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Berjochten pleatse"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Antwurden publisearje"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Antwurd publisearje"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Push"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Pushmeldingen"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
-msgstr "Push, elkenien"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "Push, minsken dy’tsto folgest"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "QR-koade is download!"
msgid "QR code saved to your camera roll!"
msgstr "QR-koade bewarre yn dyn fotobiblioteek!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Sitaatmeldingen"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Sitaatberjochten útskeakele"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Sitaten"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Sitaat opnij tafoegje"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr "Mei {emoji} reagearje"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Blogartikel lêze"
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr "Reden fan berop"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Yn-app-meldingen ûntfange"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Pushmeldingen ûntfange"
@@ -8841,6 +9028,10 @@ msgstr "Oanrekommandearre"
msgid "Reconnect"
msgstr "Opnij ferbine"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Ofwize"
msgid "Reject chat request"
msgstr "Chatfersyk ôfwize"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Petearen opnij lade"
@@ -8896,17 +9087,17 @@ msgstr "Account fuortsmite"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Bylage fuortsmite"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Avatar fuortsmite"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Banner fuortsmite"
@@ -8914,8 +9105,9 @@ msgstr "Banner fuortsmite"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Ynlsluting fuortsmite"
@@ -8933,8 +9125,8 @@ msgstr "Feed fuortsmite?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr "Ut myn feeds fuortsmite?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Ofbylding fuortsmite"
@@ -9009,11 +9201,11 @@ msgstr "Ferifikaasje fuortsmite"
msgid "Remove your verification for this account?"
msgstr "Dyn ferifikaasje foar dizze account fuortsmite?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Troch auteur fuortsmiten"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Troch dy fuortsmiten"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Antwurde dy"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Antwurden"
@@ -9104,14 +9295,14 @@ msgstr "Antwurden útskeakele"
msgid "Replies to this post are disabled."
msgstr "Antwurden op dit berjocht binne útskeakele."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Reagearje"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Beäntwurdzje ({0, plural, one {# antwurd} other {# antwurden}})"
@@ -9125,10 +9316,6 @@ msgstr "Reaksje ferstoppe troch auteur fan petear"
msgid "Reply Hidden by You"
msgstr "Reaksje ferstoppe troch dy"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Meldingen fan reaksjes"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Reaksjeynstellingen wurde keazen troch de auteur fan it petear"
@@ -9146,9 +9333,9 @@ msgstr "Sichtberheid fan reaksje bywurke"
msgid "Reply was successfully hidden"
msgstr "Reaksje is mei sukses ferstoppe"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Melde"
@@ -9164,13 +9351,13 @@ msgstr "Account melde"
msgid "Report conversation"
msgstr "Petear melde"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Dialooch melde"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Feed melde"
@@ -9179,7 +9366,7 @@ msgstr "Feed melde"
msgid "Report list"
msgstr "List melde"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Priveeberjocht melde"
@@ -9199,8 +9386,8 @@ msgstr "Startpakket melde"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Melding yntsjinne"
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Dizze feed melde"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Dizze list melde"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Opnij pleatse"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Opnij pleatse ({0, plural, one {# werpleatsing} other {# werpleatsingen}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Meldingen fan opnij-pleatsingen"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Opnij pleatst troch dy"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Opnij-pleatsingen"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Opnij-pleatsingen fan dit berjocht"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Opnij-pleatsingen fan dyn opnij-pleatsingen"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Meldingen oer opnij-pleatsingen fan dyn opnij-pleatsingen"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Alt-tekst fereaskje foar it pleatsen"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "In e-mailkoade is nedig om dy oan te melden by dyn account."
@@ -9328,7 +9534,11 @@ msgstr "Fereaske foar dizze provider"
msgid "Required in your region"
msgstr "Fereaske yn dyn regio"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Opnij ferstjoere"
@@ -9393,15 +9603,16 @@ msgstr "Werhellet de lêste aksje, dêr’t in flater by barde"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Werhellet de lêste aksje, dêr’t in flater by barde"
msgid "Retry"
msgstr "Opnij probearje"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Laadopsje foar rapport opnij lade"
@@ -9426,14 +9637,14 @@ msgstr "Laadopsje foar rapport opnij lade"
msgid "Return to previous page"
msgstr "Tebek nei foarige side"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Tebek nei de startside"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Tebek nei de foarige side"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Wizigingen bewarje"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "QR-koade bewarje"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Yn myn feeds bewarje"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "Feeds bewarje"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Bewarre yn dyn feeds"
@@ -9551,8 +9764,8 @@ msgstr "Bewarre yn dyn feeds"
msgid "Say hello!"
msgstr "Sis hallo!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "Nei boppe"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Sykje"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Berjochten fan @{0} trochsykje"
@@ -9667,7 +9880,7 @@ msgstr "Myn berjochten trochsykje"
msgid "Search posts"
msgstr "Berjochten trochsykje"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Profilen sykje"
msgid "Search..."
msgstr "Sykje…"
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Siket nei profilen"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Befeiligingsstap fereaske"
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "In kleur selektearje"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "GIF selektearje"
msgid "Select GIF \"{0}\""
msgstr "GIF ‘{0}’ selektearje"
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Taal selektearje…"
msgid "Select languages"
msgstr "Taal selektearje"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Moderaasjetsjinst selektearje"
@@ -9904,11 +10117,11 @@ msgstr "Selektearje dyn ynteressen út de ûndersteande opsjes"
msgid "Select your preferred language for translations in your feed."
msgstr "Selektearje de taal wêryn’tsto de oersettingen yn dyn feed werjaan wolst."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Selektearje dyn winske meldingskanalen"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "E-mailberocht ferstjoere"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Feedback ferstjoere"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Berjocht ferstjoere"
@@ -9952,7 +10165,7 @@ msgstr "Berjocht nei {name} ferstjoere"
msgid "Send post to..."
msgstr "Berjocht ferstjoere nei…"
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Melding nei {title} ferstjoere"
@@ -9960,7 +10173,7 @@ msgstr "Melding nei {title} ferstjoere"
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "As priveeberjocht ferstjoere"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Stelt e-mail yn foar it opnij ynstellen fan wachtwurden"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Ynstellingen"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Ynstellingen foar aktiviteit fan oaren"
@@ -10030,39 +10243,39 @@ msgstr "Ynstellingen foar aktiviteit fan oaren"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Ynstellingen foar tastimming om oaren op de hichte te stellen fan dyn berjochten"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Ynstellingen foar mei-’k-wol-oer-meldingen"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Ynstellingen foar fermeldingsmeldingen"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Ynstellingen foar nije-folgersmeldingen"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Ynstellingen foar meldingen fan al it oare"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Ynstellingen foar meldingen fan mei-’k-wol-oers fan dyn opnij-pleatsingen"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Ynstellingen foar meldingen fan opnij-pleatsingen fan dyn opnij-pleatsingen"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Ynstellingen foar sitaatmeldingen"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Ynstellingen foar antwurdmeldingen"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Ynstellingen foar meldingen fan opnij-pleatsingen"
@@ -10079,10 +10292,12 @@ msgstr "Seksuele aktiviteit of eroatysk neaken."
msgid "Sexually Suggestive"
msgstr "Seksueel suggestyf"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Auteurs-DID diele"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr "Berjocht at:// URI diele"
msgid "Share QR code"
msgstr "QR-koade diele"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Dizze feed diele"
@@ -10151,7 +10366,7 @@ msgstr "Diele fia…"
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Dielde foarkarren-tester"
@@ -10167,16 +10382,16 @@ msgstr "Alt-tekst toane"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Dochs toane"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Warskôging en filter út feeds toane"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr "Toant de ynhâld"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Oanmelde of registrearje in account"
msgid "Sign in or create your account to join the conversation!"
msgstr "Meld dy oan of registrearje in account om diel te nimmen oan it petear!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Oanmelde by in account dat net yn de list stiet"
@@ -10337,6 +10558,10 @@ msgstr "Oanmelde by in account dat net yn de list stiet"
msgid "Sign in to Bluesky or create a new account"
msgstr "Meld dy oan by Bluesky of meitsje in nij account"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Meld dy oan om berjocht te besjen"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Ofmelde"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Ofmelde"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Ofmelde?"
@@ -10391,7 +10616,7 @@ msgstr "Oerslaan"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Lytser"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Snûzet it omtinken"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Ien hat mei {0} reagearre"
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Der is wat net hielendal krekt mei de gegevens dy’tsto probearrest te melden. Nim kontakt op mei stipe."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Der is wat misgien"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Der is wat misgien!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Der is wat misgien. Probearje it oer in amerijke nochris."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Der is wat misgien. Probearje it nochris."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Klopt er wat net? Lit it ús witte."
@@ -10568,7 +10798,7 @@ msgstr "Sport"
msgid "Start a conversation, and it will appear here."
msgstr "Start in petear, en it sil hjir ferskine."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "In nije chat starte"
@@ -10582,17 +10812,17 @@ msgstr "Begjin mei minsken ta te foegjen"
msgid "Start adding people!"
msgstr "Begjin mei minsken ta te foegjen!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Chat starte mei {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Startpakket"
@@ -10654,12 +10884,12 @@ msgstr "Unthâld wiske, do moatst de app no opnij opstarte."
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Ferhaleboek"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Yntsjinje"
@@ -10684,9 +10914,9 @@ msgstr "Beswier yntsjinje"
msgid "Submit Appeal"
msgstr "Beswier yntsjinje"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Melding yntsjinje"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Abonnearje"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Slagge"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Slagge!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Mei sukses ferifiearre"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Sinneûndergong"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Stipe"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Fan account wikselje"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Fan accounts wikselje"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Wikselje nei {0}"
@@ -10828,7 +11062,7 @@ msgstr "Allinnich tags"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr "Tik om te erkennen datsto dizze updates begrypst en dermei akkoard giest
msgid "Tap to close context menu"
msgstr "Tik om kontekstmenu te sluten"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Tik om te sluten"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Betingsten"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Tekst en tags"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Tekstynfierfjild"
@@ -11049,6 +11301,11 @@ msgstr "De folgjende ynstellingen wurde brûkt as standert by it meitsjen fan ni
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "It privacybelied is ferpleatst nei <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "Der is in probleem bard by it ferbinen mei de server"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Der is in probleem bard by it ferbinen mei de server. Kontrolearje dyn ynternetferbining en probearje it opnij."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Der is in probleem bard by it opheljen fan meldingen. Tik hjir om it opnij te probearjen."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Der is in probleem bard by it opheljen fan berjochten. Tik hjir om it opnij te probearjen."
@@ -11161,7 +11420,7 @@ msgstr "Der is in probleem bard by it opheljen fan dyn tsjinstgegevens"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Der is in probleem bard by it fuortsmiten fan dizze feed. Kontrolearje dyn ynternetferbining en probearje it opnij."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Dit beswier wurdt ferstjoerd nei <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Dit beswier wurdt trochstjoerd nei de moderaasjetsjinst fan Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Dit beswier wurdt trochstjoerd nei de moderaasjetsjinst fan Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Dizze ynhâld is net beskikber, omdat ien fan de belutsene brûkers de o
msgid "This content is not viewable without a Bluesky account."
msgstr "Dizze ynhâld is net sichtber sûnder in Bluesky-account."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Dit petear is mei in fuortsmiten of de-aktivearre account. Druk foar ops
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Dit e-maialdres is al mei dyn account assosjearre."
@@ -11360,7 +11628,7 @@ msgstr "Dizze feed is net langer online. Wy toane <0>Untdekke0> yn stee fan di
msgid "This handle is reserved. Please try a different one."
msgstr "Dizze handle is reservearre. Probearje in oare."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr "Dit is net in falide keppeling"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr "Dizze list – makke troch dy – befettet mooglik skeiningen fan Bluesk
msgid "This list is empty."
msgstr "Dizze list is leech."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "De auteur fan dit berjocht hat it pleatsen fan sitaten útskeakele."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Dizze reaksje wurdt sortearre yn in ferstoppe seksje ûnderoan it petear en negearret meldingen foar folgjende reaksjes – sawol foar dy as foar oaren."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr "Dizze brûker hat gjin werjeftenamme en kin dertroch net ferifiearre wur
msgid "This user doesn't have any followers."
msgstr "Dizze brûker hat gjin folgers."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Dizze brûker hat dy blokkearre. Do kinst de ynhâld net besjen."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Petearfoarkarren"
msgid "Threaded"
msgstr "As petear"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Petearfoarkarren"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Do moatst dyn tagong ta it e-mailadres ferifiearje om de 2FA-metoade foar e-mail út te skeakeljen."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Do moatst dyn tagong ta <0>{0}0> ferifiearje om de 2FA-metoade foar e-mail út te skeakeljen"
@@ -11646,12 +11927,12 @@ msgstr "Populêr"
msgid "Top replies first"
msgstr "Populêre reaksjes earst"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Underwerp"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Populêre fideo’s"
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "Fertrouwen ûntstiet út relaasjes, mienskippen en dielde kontekst, dus wy starte ek mei <0>fertroude ferifiearders0>: organisaasjes dy’t daliks ferifikaasje útjaan kinne."
@@ -11763,11 +12044,15 @@ msgstr "Kin gjin kontakt meitsje mei dyn tsjinst. Kontrolearje dyn ynternetferbi
msgid "Unable to delete"
msgstr "Kin net fuortsmite"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr "Net beskikber"
msgid "Unavailable feed information"
msgstr "Feedynformaasje net beskikber"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "List deblokkearje"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr "Account ûntfolgje"
msgid "Unfollows the user"
msgstr "Untfolget de brûker"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Spitigernôch stipet gjin fan dyn abonnearre labelers dit rapporttype."
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
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}})"
@@ -11918,7 +12203,7 @@ msgstr "Mei ik net mear oer ({0, plural, one {# mei-’k-net-mear-oer} other {#
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Petear net mear negearje"
msgid "Unmute list"
msgstr "List net mear negearje"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Losmeitsje"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Feed losmeitsje"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Fan startside losmeitsje"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Moderaasjelist losmeitsje"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} fan startside losmakke"
@@ -12030,11 +12315,11 @@ msgstr "Fan dizze labeler ôfmelde"
msgid "Unsubscribed from list"
msgstr "Fan lis ôfmeld"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr "Bywurkje"
msgid "Update <0>{displayName}0> in Lists"
msgstr "<0>{displayName}0> yn listen bywurkje"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "E-mailadres bywurkje"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "Bywurkje nei {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Dyn e-mailadres bywurkje"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Bywurkjen fan sichtberheid fan reaksje is mislearre"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Laad yn stee dêrfan in foto op"
@@ -12098,39 +12395,40 @@ msgstr "Laad yn stee dêrfan in foto op"
msgid "Upload a text file to:"
msgstr "Laad in tekstbestân op nei:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Fan kamera ôf oplade"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Fan bestannen út oplade"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Fan bibloteek út oplade"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Ofbyldingen oplade…"
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Keppelingminiatuer oplade…"
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Fideo oplade…"
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Brûker blokkearre"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Brûkerslist troch {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "brûkers folge troch <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "brûkers dy’t <0>@{0}0> folgje"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr "Ferifikaasje mislearre, probearje it opnij."
msgid "Verification settings"
msgstr "Ferifikaasjeynstellingen"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Ferifikaasjeynstellingen"
@@ -12304,8 +12602,8 @@ msgstr "Opnij ferifiearje"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Koade ferifiearje"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "DNS-record ferifiearje"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "E-mailkoade ferifiearje"
@@ -12349,7 +12647,7 @@ msgstr "Dizze account ferifiearje?"
msgid "Verify your age"
msgstr "Dyn leeftiid ferifiearje"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Ferzje {0}"
msgid "Video"
msgstr "Fideo"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Fideo kin net ferwurke wurde"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Fideofeed"
@@ -12419,7 +12717,7 @@ msgstr "Fideo net fûn."
msgid "Video settings"
msgstr "Fideo-ynstellingen"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Fideo opladen"
@@ -12432,18 +12730,18 @@ msgstr "Fideo: {0}"
msgid "Videos"
msgstr "Fideo’s"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Avatar fan {0} besjen"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Profyl fan {0} besjen"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Details besjen"
msgid "View full thread"
msgstr "Folslein petear besjen"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Ynformaasje oer dizze labels besjen"
@@ -12522,7 +12828,7 @@ msgstr "Mear besjen"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "Profyl besjen"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Avatar besjen"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "De labeltsjinst fan @{0} besjen"
msgid "View this user's verifications"
msgstr "Ferifikaasjes fan dizze account besjen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Brûkers dy’t oer dizze feed meie besjen"
@@ -12596,8 +12902,8 @@ msgstr "Dyn negearre accounts besjen"
msgid "View your verifications"
msgstr "Dyn ferifikaasjes besjen"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Toant folsleine ôfbylding"
@@ -12640,8 +12946,8 @@ msgstr "Warskôgje oer ynhâld"
msgid "Warn content and filter from feeds"
msgstr "Warskôgje oer ynhâld en filterje út feeds"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "No besjen"
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr "Wy koene gjin resultaten fine foar dit ûnderwerp."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Wy koene dit petear net lade"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Wy rekommandearje oan om op syn minst twa ynteressen te selektearjen."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Wy hawwe in e-mailberjocht nei <0>{0}0> mei in keppeling ferstjoerd. Klik derop om it e-mailferifikaasjeproses te foltôgjen."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Wy hawwe net bepale kinnen oftsto fideo’s oplade meist. Probearj it opnij."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Wy stjoere in e-mailberjocht nei <0>{0}0> mei in keppeling. Klik derop om it e-mailferifikaasjeproses te foltôgjen."
@@ -12779,12 +13089,12 @@ msgstr "Wy hawwe problemen mei it inisjalisearjen fan it leeftiidsbewiisproses f
msgid "We're having network issues, try again"
msgstr "Der binne netwurkproblemen, probearje it opnij"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Wy yntrodusearje in nije ferifikaasjelaach op Bluesky – in iefâldich-te-sjen finkje."
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "It spyt ús! It berjocht wêropsto reagearrest is fuortsmiten."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Hoe wolsto dyn startpakket neame?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Hoe giet it?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Asto op in finkje tikkest, silsto sjen hokker organisaasjes ferliene ferifikaasje hawwe."
@@ -12878,7 +13188,7 @@ msgstr "Asto op in finkje tikkest, silsto sjen hokker organisaasjes ferliene fer
msgid "Who can interact with this post?"
msgstr "Wa kin reagearje op dit berjocht?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Wa kin reagearje"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Wa kin ferifiearje?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Wûpsty!"
@@ -12939,7 +13249,7 @@ msgstr "Wêrom moat dit startpakket beoardiele wurde?"
msgid "Why should this user be reviewed?"
msgstr "Wêrom moat dizze brûker beoardiele wurde?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Skriuw berjocht"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Skriuw dyn reaksje"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Ferkearde DID weromstjoerd troch server. Untfongen: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr "Do bist live"
msgid "You are no longer live"
msgstr "Do bist net langer live"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Do meist gjin fideo’s oplade."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Do kinst yn de chatynstellingen yn de app kieze oft chatmeldingen lûd hawwe"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Do kinst rinnende petearen trochsette, nettsjinsteande hokker ynstelling do kiest."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Do kinst der no foar kieze om in melding te ûntfangen wannear’t spesifike persoanen in berjocht pleatse. As der ien is wêrfansto updates ûntfange wolst, gean dan nei harren profyl en sykje it nije bel-piktogram njonken de folch-knop."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "Do kinst dyn account opnij aktivearje om troch gean te kinnen mei oanmel
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr "Do kinst dit letter bywurkje fan dyn ynstellingen út."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "Do hast gjin bewarre feeds."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "Do moatst op syn minst 7 oare persoanen folgje om in startpakket te gene
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Do wolst de app wierskynlik no opnij starte."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Do hast mei {0} reagearre"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Do wurdst by al dyn accounts ôfmeld."
@@ -13390,7 +13710,7 @@ msgstr "Do ûntfangst no meldingen foar dit petear"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Do ûntfangst in e-mailberjocht mei in ‘opnij-ynstelle-koade’. Fier hjir dy koade yn en fier dernei dyn nije wachtwurd yn."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr "Do hast it ein fan de aktive ynhâld berikt."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Do hast it ein fan dyn feed berikt! Sykje noch mear accounts om te folgjen."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr "Do bist oer it maksimaal tal tasteane fersiken. Probearje it letter noch
msgid "You've reached the start of the active content."
msgstr "Do hast it begjin fan de aktive ynhâld berikt."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Do bist oer dyn deistige limyt foar fideo-oplaads (te folle bytes)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr "Dyn account is opskoarten"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Dyn account is noch net âld genôch om fideo’s op te laden. Probearje it letter nochris."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Dyn accountrepository, dy’t alle iepenbiere gegevensrecords befettet, kin download wurde as in ‘CAR’-bestân. Dit bestân befettet gjin media-ynslutingen, lykas ôfbyldingen, en gjin priveegegevens. Dy moatte ôfsûnderlik ophelle wurde."
@@ -13519,7 +13847,7 @@ msgstr "Dyn beswier is yntsjinne. Asto yn it gelyk stelst wurdst, ûntfangsto in
msgid "Your birth date"
msgstr "Dyn bertedatum"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Dyn chats binne útskeakele"
@@ -13561,7 +13889,7 @@ msgstr "Jouw e-mailadres"
msgid "Your email appears to be invalid."
msgstr "Dyn e-mailadres liket ûnjildich te wêzen."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Dyn e-mailadres is noch net ferifiearre. Ferifiearje dyn e-mailadres om alle funksjes fan Bluesky brûke te kinnen."
@@ -13582,7 +13910,7 @@ msgstr "Dyn folgjende feed is leech! Folgje mear brûkers om te sjen wat der bar
msgid "Your full handle will be <0>@{0}0>"
msgstr "Dyn folsleine handle wurdt <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "Dyn negearre wurden"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr "Voorkeurstaal"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Dyn melding wurdt nei <0>{0}0> ferstjoerd."
@@ -13661,7 +13989,7 @@ msgstr "Dyn melding wurdt nei <0>{0}0> ferstjoerd."
msgid "Your selected interests help us serve you content you care about."
msgstr "Dyn selektearre ynteressen helpe ús dy ynhâld dy’t dy ynteressearret te toanen."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po
index b54f39fc50..0390765fbd 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\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"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# nóiméad} two {# nóiméad} few {# nóiméad} many {
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {mí amháin} two {# mhí} few {# mhí} many {# mí} other {# mí}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {soicind amháin} two {# shoicind} few {# shoicind} many
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} á leanúint"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr "{0} as 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "D'fhreagair {0} {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, liosta a rinne {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "abhatár {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}n"
msgid "{0}s"
msgstr "{0}s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr "Dheimhnigh {firstAuthorName} thú"
msgid "{following} following"
msgstr "{following} á leanúint"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "Ní féidir TD a chur chuig {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr "Seoladh cód nua chugat"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr "Glac Leis"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Glac Leis"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Glac leis an iarratas"
@@ -860,17 +935,26 @@ msgstr "Glac leis an iarratas"
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Inrochtaineacht"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Socruithe Inrochtaineachta"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Níl an cuntas balbhaithe a thuilleadh"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Cuir leis"
@@ -999,8 +1079,8 @@ msgstr "Cuir cuntas leis seo"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Cuir téacs malartach leis seo (roghnach)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Cuir cuntas eile leis"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Cuir postáil eile leis"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr "Cuir pasfhocal aipe leis"
msgid "Add App Password"
msgstr "Cuir pasfhocal aipe leis seo"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Cuir tuilleadh sonraí leis (roghnach)"
@@ -1080,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "Cuir focail agus clibeanna a balbhaíodh leis seo"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Tuilleadh sonraí (300 carachtar ar a mhéad)"
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "aoife@example.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Uile"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Ceadaigh fáil ar do chuid TDanna"
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr "An bhfuil cuntas agat cheana?"
msgid "Already signed in as @{0}"
msgstr "Logáilte isteach cheana mar @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Téacs Malartach"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Cuireann an téacs malartach síos ar na híomhánna do dhaoine atá dall nó a bhfuil lagú radhairc orthu agus cuireann sé an comhthéacs ar fáil do chuile dhuine."
@@ -1387,7 +1467,7 @@ msgstr "Tharla earráid"
msgid "An error occurred"
msgstr "Tharla earráid"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Tharla earráid agus an físeán á chomhbhrú."
@@ -1432,11 +1512,11 @@ msgstr "Tharla earráid agus an cód QR á shábháil!"
msgid "An error occurred while trying to follow all"
msgstr "Tharla earráid agus na cuntais go léir á leanúint"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "Tharla earráid agus an físeán á uaslódáil. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "Tharla earráid agus an físeán á uaslódáil. Seiceáil do cheangal leis an idirlíon agus bain triail eile as."
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Rud nach bhfuil ar fáil sna roghanna seo"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Tharla fadhb agus an comhrá á oscailt"
msgid "An issue occurred, please try again."
msgstr "Tharla fadhb. Déan iarracht eile, le do thoil."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1539,13 +1619,17 @@ msgstr "Aon duine"
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Caithfidh ainm pasfhocal aipe a bheith ar a laghad ceithre charachtar ar
msgid "App passwords"
msgstr "Pasfhocail aipe"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Pasfhocail aipe"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Achomharc déanta"
@@ -1632,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Déan achomharc i gcoinne an chinnidh seo"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "An bhfuil tú cinnte gur mhaith leat an pasfhocal aipe \"{0}\" a scriosadh?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
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: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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
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?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Seinn físeáin agus GIFanna go huathoibríoch"
msgid "Available"
msgstr "Ar fáil"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Ar fáil"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Ar fáil"
msgid "Back"
msgstr "Ar ais"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1840,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1877,7 +1963,7 @@ msgstr "Breithlá"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Blocáil an cuntas seo"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "Blocáil an cuntas seo?"
msgid "Block accounts"
msgstr "Blocáil na cuntais seo"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "An bhfuil fonn ort na cuntais seo a bhlocáil?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Blocáil an t-úsáideoir"
@@ -1946,9 +2032,9 @@ msgstr "Blocáil an t-úsáideoir"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Blocáil an t-úsáideoir"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Blocáilte"
@@ -1964,13 +2050,13 @@ msgstr "Blocáilte"
msgid "Blocked accounts"
msgstr "Cuntais bhlocáilte"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Cuntais bhlocáilte"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhráite, tagairt a dhéanamh duit, ná aon phlé eile a bheith acu leat."
@@ -2029,7 +2115,7 @@ msgstr "Déanann mathshlua meidhréis ar Bluesky!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Roghnóidh Bluesky roinnt cuntas molta ó dhaoine i do líonra."
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 "Ní thaispeánfaidh Bluesky do phróifíl ná do chuid postálacha d’úsáideoirí atá logáilte amach. Is féidir nach gcloífidh aipeanna eile leis an iarratas seo. I bhfocail eile, ní bheidh do chuntas anseo príobháideach."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2137,23 +2223,30 @@ msgstr "Gnó"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Le {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Le <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Má chruthaíonn tú cuntas, glacann tú leis na <0>Téarmaí Seirbhíse
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Ceamara"
@@ -2192,8 +2285,8 @@ msgstr "Ceamara"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Ceamara"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Ceamara"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Cealaigh"
@@ -2248,9 +2341,9 @@ msgstr ""
msgid "Cancel search"
msgstr "Cealaigh an cuardach"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Ní féidir plé le húsáideoir blocáilte"
@@ -2264,7 +2357,7 @@ msgstr "Fotheidil (.vtt)"
msgid "Captions & alt text"
msgstr "Fotheidil agus téacs malartach"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr "Athraigh mo leasainm"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2310,11 +2403,11 @@ msgstr "Athraigh mo phasfhocal"
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Comhrá"
@@ -2361,6 +2454,13 @@ msgstr "Scriosadh an comhrá"
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Balbhaíodh an comhrá"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Socruithe comhrá"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Socruithe Comhrá"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Díbhalbhaíodh an comhrá"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Comhráite"
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "Roghnaigh an dath seo mar abhatár duit"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr "cliceáil anseo"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2567,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Cliceáil le triail eile a bhaint as teachtaireacht ar theip uirthi"
@@ -2594,28 +2694,30 @@ msgstr "Cliceáil le triail eile a bhaint as teachtaireacht ar theip uirthi"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Cliceáil le triail eile a bhaint as teachtaireacht ar theip uirthi"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Dún an dialóg oscailte"
msgid "Close alert"
msgstr "Dún an rabhadh"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Dún an tarraiceán íochtair"
@@ -2657,8 +2763,9 @@ msgstr "Dún an tarraiceán íochtair"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Dún an dialóg"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Dún an íomhá"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Dún an dialóg seo"
@@ -2695,7 +2810,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:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Greannáin"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Treoirlínte an phobail"
@@ -2740,12 +2855,12 @@ msgstr "Freagair an dúshlán"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Cum postáil nua"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2753,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr "Scríobh freagra"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "GIF á chomhbhrú..."
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Físeán á chomhbhrú..."
@@ -2780,7 +2895,7 @@ msgstr "Le socrú i <0>socruithe na modhnóireachta0>."
msgid "Confirm"
msgstr "Dearbhaigh"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Ábhar agus Meáin"
msgid "Content and media"
msgstr "Ábhar agus meáin"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Ábhar agus Meáin"
@@ -2889,7 +3004,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:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "Lean leis an snáithe..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Lean ar aghaidh go dtí an chéad chéim eile"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Comhrá"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Scriosadh an comhrá"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Scriosadh an comhrá"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Leagan cóipeáilte sa ghearrthaisce"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Cóipeáil an DID"
msgid "Copy host"
msgstr "Cóipeáil an t-óstainm"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Cóipeáil téacs na teachtaireachta"
@@ -3052,7 +3175,7 @@ msgstr "Cóipeáil an taifead TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "An polasaí maidir le cóipcheart"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Níor éiríodh ar an gcomhrá a fhágáil"
@@ -3094,6 +3217,10 @@ msgstr "Níor éiríodh ar an gcomhrá a fhágáil"
msgid "Could not load feed"
msgstr "Ní féidir an fotha a lódáil"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Cód tíre"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Cruthaigh"
@@ -3159,7 +3286,7 @@ msgstr "Cruthaigh cód QR le haghaidh pacáiste fáilte"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Cruthaigh pacáiste fáilte"
@@ -3174,13 +3301,14 @@ msgstr "Cruthaigh pacáiste fáilte ar mo shon"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Cruthaigh cuntas"
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Cruthaigh abhatár nua ina ionad sin"
@@ -3206,7 +3334,7 @@ msgstr "Cruthaigh abhatár nua ina ionad sin"
msgid "Create another"
msgstr "Cruthaigh ceann eile"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Cruthaigh cuntas nua"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Cruthaigh tuairisc do {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Cruthaíodh {0}"
@@ -3341,7 +3470,7 @@ msgstr "Réamhshocrú"
msgid "Default icons"
msgstr "Deilbhíní réamhshocraithe"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Scrios taifead dearbhaithe comhrá"
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Scrios an comhrá"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Scrios domsa"
@@ -3399,11 +3528,11 @@ msgstr "Scrios domsa"
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Scrios an teachtaireacht seo"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Scrios an teachtaireacht seo domsa"
@@ -3413,7 +3542,7 @@ msgstr "Scrios mo chuntas"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Scrios an phostáil"
@@ -3434,12 +3563,12 @@ msgstr "An bhfuil fonn ort an liosta seo a scriosadh?"
msgid "Delete this post?"
msgstr "An bhfuil fonn ort an phostáil seo a scriosadh?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Scriosta"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Cuntas Scriosta"
@@ -3507,13 +3636,13 @@ msgstr "Dialóg: cé atá in ann idirghníomhú leis an bpostáil seo"
msgid "Dim"
msgstr "Breacdhorcha"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3521,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3534,8 +3663,8 @@ msgstr "Ná húsáid 2FA trí ríomhphost"
msgid "Disable haptic feedback"
msgstr "Ná húsáid aiseolas haptach"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Díchumasaithe"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Ná sábháil"
msgid "Discard changes?"
msgstr "Faigh réidh leis na hathruithe?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Faigh réidh leis an dréacht?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Faigh réidh leis an bpostáil?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Aimsigh Fothaí Nua"
msgid "Dismiss"
msgstr "Ruaig"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Ruaig an earráid"
@@ -3673,7 +3802,7 @@ msgstr "Níl lomnochtacht ann."
msgid "Domain verified!"
msgstr "Fearann dearbhaithe!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3681,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Déanta"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3741,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr "Íoslódáil Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Íoslódáil comhad CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Íoslódáil comhad CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "m.sh. Úsáideoirí a fhreagraíonn le fógraí"
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Eagar"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Cuir an t-abhatár in eagar"
@@ -3847,14 +3978,14 @@ msgstr "Cuir an t-abhatár in eagar"
msgid "Edit Feeds"
msgstr "Cuir Fothaí in Eagar"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Cuir an íomhá seo in eagar"
@@ -3868,7 +3999,16 @@ msgstr "Cuir na socruithe idirghníomhaíochta in eagar"
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Athraigh mo chuid fothaí"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Cuir Daoine in Eagar"
@@ -3925,7 +4060,7 @@ msgstr "Athraigh an Phróifíl"
msgid "Edit starter pack"
msgstr "Cuir an pacáiste fáilte in eagar"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "Cé atá in ann freagra a thabhairt"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Cuir do phacáiste fáilte in eagar"
@@ -3971,7 +4106,7 @@ msgstr "Seoladh ríomhphoist"
msgid "Email Resent"
msgstr "Athsheoladh an ríomhphost"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -4006,8 +4141,8 @@ msgstr "Leabaigh an phostáil seo i do shuíomh gréasáin féin. Cóipeáil an
msgid "Embedded video player"
msgstr "Fís-seinnteoir leabaithe"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Cumasaigh"
@@ -4025,7 +4160,7 @@ msgstr "Cuir ábhar do dhaoine fásta ar fáil"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4038,13 +4173,12 @@ msgstr "Cuir meáin sheachtracha ar fáil"
msgid "Enable media players for"
msgstr "Cuir seinnteoirí na meán ar fáil le haghaidh"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr "Cuir pasfhocal isteach"
msgid "Enter a word or tag"
msgstr "Cuir focal na clib isteach"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4143,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Earráid"
@@ -4185,23 +4319,23 @@ msgstr "Tig le chuile dhuine freagra a thabhairt"
msgid "Everybody can reply to this post."
msgstr "Tig le chuile dhuine freagra a thabhairt ar an bpostáil."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Chuile dhuine"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Chuile dhuine"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Chuile dhuine"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "Leis seo, ní chuirtear an balbhú i bhfeidhm ar úsáideoirí a leanann
msgid "Exit fullscreen"
msgstr "Fág an mód lánscáileáin"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Taispeáin an téacs malartach ina iomláine"
@@ -4226,7 +4360,7 @@ msgstr "Taispeáin an téacs malartach ina iomláine"
msgid "Expand list of users"
msgstr "Leathnaigh an liosta úsáideoirí"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Leathnaigh nó laghdaigh an téacs iomlán a bhfuil tú ag freagairt"
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Bhíothas ag súil go dtiocfadh taifead ón URI"
@@ -4277,9 +4411,9 @@ msgstr "Meáin is féidir a bheith gáirsiúil nó goilliúnach."
msgid "Explicit sexual images."
msgstr "Íomhánna gnéasacha."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4289,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,7 @@ msgstr "Meáin sheachtracha"
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 "Is féidir le meáin sheachtracha cumas a thabhairt do shuíomhanna ar an nGréasán eolas fútsa agus faoi do ghléas a chnuasach. Ní sheoltar ná iarrtar aon eolas go dtí go mbrúnn tú an cnaipe “play”."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Roghanna maidir le meáin sheachtracha"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "Theip ar athrú an leasainm. Bain triail eile as."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "Theip ar phasfhocal aipe a chruthú. Bain triail eile as."
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Teip ar theachtaireacht a scriosadh"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "Teip ar lódáil roghanna na bhfothaí"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "Teip ar lódáil na bhfothaí molta"
msgid "Failed to load suggested follows"
msgstr "Teip ar lódáil na gcuntas molta"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Theip ar ghreamú na postála"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Teip ar achomharc a dhéanamh, bain triail eile as, le do thoil."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Teip ar bhalbhú an tsnáithe a athrú; bain triail eile as"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4614,7 +4751,7 @@ msgstr "Theip ar uasdátú na bhfothaí"
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Teip ar shocruithe a uasdátú"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Fotha"
@@ -4649,7 +4786,7 @@ msgstr "Fotha"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Fotha le {0}"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Roghchlár an fhotha"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Fothaí"
@@ -4739,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "Ag cur crích air"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Aimsigh fothaí le leanúint"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr "Aimsigh daoine le leanúint"
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "Leanta ag <0>{0}0> agus <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Leanta ag <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}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Leantóirí de chuid @{0} a bhfuil aithne agat orthu"
@@ -4995,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr "Roghanna le haghaidh an fhotha Following"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Roghanna don Fhotha Following"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Leanann sé/sí thú"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Leanann sé/sí thú"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Clófhoireann"
@@ -5069,7 +5207,7 @@ msgstr "Dearmadta?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr "Ó <0/>"
msgid "Generate a starter pack"
msgstr "Cruthaigh pacáiste fáilte"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "Faigh cabhair"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Tabhair gnúis do do phróifíl"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Ar ais"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Ar ais"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Fill ar an gcéim roimhe seo"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Abhaile"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Abhaile"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Abhaile"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Téigh go comhrá le {0}"
@@ -5299,12 +5440,12 @@ msgstr "Téigh go dtí an chéad rud eile"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Téigh go próifíl"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Tá an leasainm seo rófhada. Bain triail as ceann níos giorra."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Haischlib"
@@ -5458,8 +5615,8 @@ msgstr "Haischlib {tag}"
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Cúnamh"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Tabhair le fios dúinn nach bot thú trí pictiúr a uaslódáil nó abhatár a chruthú."
@@ -5652,18 +5809,18 @@ msgstr "Hmmm, is cosúil go bhfuil fadhb againn le lódáil na sonraí seo. Féa
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmm, ní raibh muid in ann an tseirbhís modhnóireachta sin a lódáil."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Foighne ort! Tá físeáin á seoladh de réir a chéile, agus tá tú fós ag fanacht ar d'uain. Déan iarracht go luath!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Baile"
@@ -5721,7 +5878,7 @@ msgstr "Tuigim"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
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"
@@ -5757,7 +5914,7 @@ msgstr "Má scriosann tú an liosta seo, ní bheidh tú in ann é a fháil ar ai
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Má tá fearann de do chuid féin agat, is féidir é sin a úsáid mar leasainm, agus sa chaoi sin, d'aitheantas féin a dhearbhú. <0>Tuilleadh eolais.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5765,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr "Má bhaineann tú an phostáil seo, ní bheidh tú in ann í a fháil ar ais."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5773,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Más mian leat do phasfhocal a athrú, seolfaimid cód duit chun dearbhú gur leatsa an cuntas seo."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr ""
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ú."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Íomhá"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Tá an cód 2FA seo neamhbhailí."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Leasainm neamhbhailí. Bain triail as ceann eile."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Cód Deimhnithe Neamhbhailí"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Níl ann ach tusa anois! Cuardaigh thuas le tuilleadh daoine a chur le do phacáiste fáilte."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID an Jab: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID an Jab: {0}"
msgid "Jobs"
msgstr "Jabanna"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Jabanna"
msgid "Join Bluesky"
msgstr "Cláraigh le Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Glac páirt sa chomhrá"
msgid "Journalism"
msgstr "Iriseoireacht"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "Lipéid ar do chuntas"
msgid "Labels on your content"
msgstr "Lipéid ar do chuid ábhair"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Socruithe teanga"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Is Déanaí"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Le tuilleadh a fhoghlaim faoin rabhadh seo"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Le tuilleadh a fhoghlaim faoi céard atá poiblí ar Bluesky"
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "Tuilleadh eolais."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Éirigh as"
@@ -6276,7 +6464,7 @@ msgstr "Éirigh as an gcomhrá"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Éirigh as an gcomhrá"
@@ -6284,13 +6472,13 @@ msgstr "Éirigh as an gcomhrá"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Éirigh as an gcomhrá"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Sorcha"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Mol ({0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# moladh} other {# moladh}})"
@@ -6346,11 +6534,7 @@ msgstr "Mol 10 bpostáil."
msgid "Like 10 posts to train the Discover feed"
msgstr "Mol 10 bpostáil leis an bhfotha Discover a thraenáil"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Mol an fotha seo"
@@ -6358,8 +6542,8 @@ msgstr "Mol an fotha seo"
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Molta ag"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Molta ag {0, plural, one {úsáideoir amháin} two {# úsáideoir} few {# úsáideoir} many {# n-úsáideoir} other {# úsáideoir}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Molta ag {likeCount, plural, one {úsáideoir amháin} two {# úsáideoir} few {# úsáideoir} many {# n-úsáideoir} other {# úsáideoir}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Moltaí"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Moltaí don phostáil seo"
@@ -6409,11 +6589,11 @@ msgstr "Moltaí don phostáil seo"
msgid "Linear"
msgstr "Líneach"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Liosta"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Liosta nach bhfuil balbhaithe níos mó"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Liostaí"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Ag lódáil …"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Logleabhar"
@@ -6662,7 +6842,7 @@ msgstr "Is cosúil go bhfuil fotha leanúna ar iarraidh ort. <0>Cliceáil anseo
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr "Bainistigh do chuid clibeanna agus na focail a bhalbhaigh tú"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
@@ -6698,13 +6877,12 @@ msgstr ""
msgid "Mark as read"
msgstr "Marcáil léite"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6727,25 +6905,21 @@ 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."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "úsáideoirí luaite"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Luaite"
@@ -6775,22 +6949,22 @@ msgstr "Teachtaireacht {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Scriosadh an teachtaireacht"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Scriosadh an teachtaireacht"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6813,19 +6987,19 @@ msgstr "Tá an teachtaireacht rófhada"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Teachtaireachtaí"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Modhnóireacht"
@@ -6894,7 +7064,7 @@ msgstr "Liosta modhnóireachta uasdátaithe"
msgid "Moderation lists"
msgstr "Liostaí modhnóireachta"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Liostaí modhnóireachta"
@@ -6903,7 +7073,7 @@ msgstr "Liostaí modhnóireachta"
msgid "moderation settings"
msgstr "socruithe modhnóireachta"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Stádais modhnóireachta"
@@ -6949,7 +7119,7 @@ msgstr "Scannáin"
msgid "Music"
msgstr "Ceol"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Balbhaigh"
@@ -6994,7 +7164,7 @@ msgstr "Balbhaigh an liosta"
msgid "Mute these accounts?"
msgstr "An bhfuil fonn ort na cuntais seo a bhalbhú?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Balbhaigh an snáithe seo"
msgid "Mute words & tags"
msgstr "Balbhaigh focail ⁊ clibeanna"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Cuntais a balbhaíodh"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Cuntais a balbhaíodh"
@@ -7108,8 +7278,8 @@ msgstr "Téann sé seo chuig an gcéad scáileán eile"
msgid "Navigates to your profile"
msgstr "Téann sé seo chuig do phróifíl"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Comhrá nua"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7174,29 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Postáil nua"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Postáil nua"
@@ -7262,8 +7428,8 @@ msgstr "Nuacht"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "Ní leantar {0} níos mó"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Níl aon teachtaireacht ann fós"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "Níl aon fhógra ann fós!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Gan torthaí"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Toradh ar bith"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Lomnochtacht Neamhghnéasach"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Ní bhfuarthas é sin"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Socruithe fógra"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Fuaimeanna fógra"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Fógraí"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "anois"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "As"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "ar<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Atosú an chláraithe"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
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"
@@ -7685,6 +7835,26 @@ msgstr "Téacs malartach de dhíth ar fhíseán nó ar fhíseáin"
msgid "Only {0} can reply."
msgstr "Ní féidir ach le {0} freagra a thabhairt."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr "Ní thacaítear ach le comhaid íomhá"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Ní oibríonn ach comhaid WebVTT (.vtt)"
@@ -7712,7 +7892,7 @@ msgstr "Úps! Theip ar rud éigin!"
msgid "Oops!"
msgstr "Úps!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Oscail an cruthaitheoir abhatáir"
@@ -7720,12 +7900,17 @@ msgstr "Oscail an cruthaitheoir abhatáir"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Oscail na roghanna comhrá"
@@ -7739,16 +7924,16 @@ msgstr "Oscail an roghchlár tarraiceáin"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Oscail roghnóir na n-emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Oscail eolas faoin fhotha"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Oscail roghchlár na bhfothaí"
@@ -7760,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Oscail nasc le {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr "Oscail roghchlár na bpostálacha"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr "Oscail leathanach an Storybook"
msgid "Open system log"
msgstr "Oscail logleabhar an chórais"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Osclaíonn sé seo tuilleadh sonraí le haghaidh iontráil dífhabhtaith
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Osclaíonn sé seo an ceamara ar an ngléas"
@@ -7858,22 +8051,24 @@ msgstr "Osclaíonn sé seo an t-eagarthóir"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Osclaíonn sé seo an próiseas le cuntas nua Bluesky a chruthú"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Osclaíonn sé an phróifíl seo"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Tá ár modhnóirí tar éis athbhreithniú a dhéanamh ar thuairiscí. Chinn siad gan ligean duit comhráite a úsáid ar Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Tá ár modhnóirí tar éis athbhreithniú a dhéanamh ar thuairiscí.
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Leathanach gan aimsiú"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Leathanach gan aimsiú"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Cuir an físeán ar shos"
msgid "People"
msgstr "Daoine"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Na daoine atá leanta ag @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Na leantóirí atá ag @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Pictiúir le haghaidh daoine fásta."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Greamaigh an fotha"
@@ -8152,7 +8348,7 @@ msgstr "Greamaigh an fotha"
msgid "Pin to home"
msgstr "Greamaigh le baile"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Greamaigh le Baile"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Greamaithe"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "Greamaíodh {0} le Baile"
@@ -8236,7 +8432,7 @@ msgstr "Roghnaigh do leasainm, le do thoil."
msgid "Please choose your password."
msgstr "Roghnaigh do phasfhocal, le do thoil."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "Déan an captcha, le do thoil."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Cuir isteach ainm uathúil ar an bpasfhocal aipe seo, nó bain úsáid as an ainm randamach a chruthaigh muid."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "Cuir isteach do sheoladh ríomhphoist, le do thoil."
msgid "Please enter your invite code."
msgstr "Cuir isteach do chód cuiridh."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Abair linn, le do thoil, cén fáth a gcreideann tú gur chuir {0} an lipéad seo i bhfeidhm go mícheart"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Mínigh, le do thoil, an fáth a gcreideann tú go bhfuil sé mícheart nach ligtear duit comhráite a úsáid"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "Polaitíocht"
msgid "Porn"
msgstr "Pornagrafaíocht"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Postáil"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Postáil Uile"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Postáil ó @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Scriosadh an phostáil"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Níor uaslódáladh an phostáil. Seiceáil do cheangal leis an idirlíon agus bain triail eile as."
@@ -8454,7 +8650,7 @@ msgstr "Postáil a chuir tú i bhfolach"
msgid "Post interaction settings"
msgstr "Socruithe idirghníomhaíochta na postála"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8464,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Díghreamaíodh an phostáil"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Is féidir leat postálacha a bhalbhú bunaithe ar an téacs, clibeanna,
msgid "Posts hidden"
msgstr "Cuireadh na postálacha i bhfolach"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "Brúigh le iarracht a thabhairt ar nascadh arís"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Brúigh le iarracht eile a dhéanamh"
@@ -8536,7 +8728,7 @@ msgstr "Brúigh le iarracht eile a dhéanamh"
msgid "Press to view followers of this account that you also follow"
msgstr "Brúigh leis na daoine a leanann an cuntas seo a leanann tú féin a fheiceáil"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "Príobháideacht"
msgid "Privacy and security"
msgstr "Príobháideacht agus slándáil"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Príobháideacht agus Slándáil"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Polasaí Príobháideachta"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Físeán á phróiseáil..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Á phróiseáil..."
@@ -8602,8 +8793,8 @@ msgstr "Á phróiseáil..."
msgid "profile"
msgstr "próifíl"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "Íoslódáladh an cód QR!"
msgid "QR code saved to your camera roll!"
msgstr "Sábháladh an cód QR i do rolla cheamara!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Ní féidir postálacha a athlua"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Postálacha athluaite"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Athcheangail an phostáil athluaite"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr "Molta"
msgid "Reconnect"
msgstr "Athnasc"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Athlódáil comhráite"
@@ -8896,17 +9087,17 @@ msgstr "Bain an cuntas de"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Bain an ceangaltán de"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Bain an tAbhatár Amach"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Bain an Fógra Meirge Amach"
@@ -8914,8 +9105,9 @@ msgstr "Bain an Fógra Meirge Amach"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Bain an leabú"
@@ -8933,8 +9125,8 @@ msgstr "An bhfuil fonn ort an fotha a bhaint?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Bain an íomhá de"
@@ -9009,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Bainte ag an údar"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Bainte agat"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Freagraí"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Freagair"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Freagair ({0, plural, one {# fhreagra} two {# fhreagra} few {# fhreagra} many {# bhfreagra} other {# freagra}})"
@@ -9125,10 +9316,6 @@ msgstr "Freagra a chuir údar an tsnáithe i bhfolach"
msgid "Reply Hidden by You"
msgstr "Freagra a chuir tusa i bhfolach"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Is é údar an tsnáithe a roghnaíonn socruithe a bhaineann le freagraí"
@@ -9146,9 +9333,9 @@ msgstr "Nuashonraíodh infheictheacht na bhfreagraí"
msgid "Reply was successfully hidden"
msgstr "Cuireadh an freagra i bhfolach"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Tuairiscigh"
@@ -9164,13 +9351,13 @@ msgstr ""
msgid "Report conversation"
msgstr "Tuairiscigh an comhrá seo"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Tuairiscigh comhrá"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Déan gearán faoi fhotha"
@@ -9179,7 +9366,7 @@ msgstr "Déan gearán faoi fhotha"
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Tuairiscigh an teachtaireacht seo"
@@ -9199,8 +9386,8 @@ msgstr "Déan gearán faoi phacáiste fáilte"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Déan gearán faoin fhotha seo"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Déan gearán faoin liosta seo"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Athphostáil"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Athphostáil ({0, plural, one {# athphostáil} two {# athphostáil} few {# athphostáil} many {# n-athphostáil} other {# athphostáil}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Athphostáilte agat"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "Athphostálacha den phostáil seo"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Bíodh téacs malartach ann roimh phostáil i gcónaí"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9328,7 +9534,11 @@ msgstr "Riachtanach don soláthraí seo"
msgid "Required in your region"
msgstr "Riachtanach i do réigiún"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9393,15 +9603,16 @@ msgstr "Baineann sé seo triail eile as an ngníomh is déanaí, ar theip air"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Baineann sé seo triail eile as an ngníomh is déanaí, ar theip air"
msgid "Retry"
msgstr "Bain triail eile as"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9426,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr "Fill ar an leathanach roimhe seo"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Filleann sé seo abhaile"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Filleann sé seo ar an leathanach roimhe seo"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Sábháil na hathruithe"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Sábháil an cód QR"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Sábháil i mo chuid fothaí"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "Fothaí Sábháilte"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Sábháilte le mo chuid fothaí"
@@ -9551,8 +9764,8 @@ msgstr "Sábháilte le mo chuid fothaí"
msgid "Say hello!"
msgstr "Abair heileo!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "Fill ar an mbarr"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Cuardaigh"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9667,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Cuardaigh próifílí"
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "Roghnaigh dath"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "Roghnaigh GIF"
msgid "Select GIF \"{0}\""
msgstr "Roghnaigh GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Roghnaigh teanga..."
msgid "Select languages"
msgstr "Roghnaigh teangacha"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9904,11 +10117,11 @@ msgstr "Roghnaigh na rudaí a bhfuil suim agat iontu as na roghanna thíos"
msgid "Select your preferred language for translations in your feed."
msgstr "Do rogha teanga nuair a dhéanfar aistriúchán ar ábhar i d'fhotha."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Seol ríomhphost"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Seol aiseolas"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Seol teachtaireacht"
@@ -9952,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr "Seol an phostáil seo chuig..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9960,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Seol mar theachtaireacht dhíreach"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Socraíonn sé seo an seoladh ríomhphoist le haghaidh athshocrú an phasfhocail"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Socruithe"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "Gníomhaíocht ghnéasach nó lomnochtacht gháirsiúil."
msgid "Sexually Suggestive"
msgstr "Graosta"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr "Comhroinn an cód QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Comhroinn an fotha seo"
@@ -10151,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Tástáil Roghanna Comhroinnte"
@@ -10167,16 +10382,16 @@ msgstr "Taispeáin an téacs malartach"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Taispeáin mar sin féin"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Taispeáin rabhadh agus scag ó na fothaí é"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr "Logáil isteach nó cláraigh chun páirt a ghlacadh sa chomhrá!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr ""
@@ -10337,6 +10558,10 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr "Logáil isteach chuig Bluesky nó cruthaigh cuntas nua"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Logáil amach"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Logáil Amach"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Logáil amach?"
@@ -10391,7 +10616,7 @@ msgstr "Ná bac leis"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Níos Lú"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Theip ar rud éigin"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Theip ar rud éigin!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Rud éigin mícheart? Abair linn."
@@ -10568,7 +10798,7 @@ msgstr "Spórt"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Tosaigh comhrá nua"
@@ -10582,17 +10812,17 @@ msgstr "Cuir tús le daoine a leanúint"
msgid "Start adding people!"
msgstr "Cuir tús le daoine a leanúint!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Tosaigh comhrá le {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Pacáiste Fáilte"
@@ -10654,12 +10884,12 @@ msgstr "Stóráil scriosta, tá ort an aip a atosú anois."
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Seol"
@@ -10684,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Liostáil"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "D'éirigh leis!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Tacaíocht"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Athraigh an cuntas"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10828,7 +11062,7 @@ msgstr "Clibeanna amháin"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Tapáil le dúnadh"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Téarmaí"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Téacs agus clibeanna"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Réimse téacs"
@@ -11049,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Bogadh an Polasaí Príobháideachta go dtí <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh leis an bhfreastalaí"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh leis an bhfreastalaí. Seiceáil do cheangal leis an idirlíon agus bain triail eile as."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Bhí fadhb ann maidir le fógraí a fháil. Tapáil anseo le triail eile a bhaint as."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Bhí fadhb ann maidir le postálacha a fháil. Tapáil anseo le triail eile a bhaint as."
@@ -11161,7 +11420,7 @@ msgstr "Bhí fadhb ann agus d'fhaisnéis seirbhíse á híoslódáil"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Bhí fadhb ann maidir leis an bhfotha seo a bhaint. Seiceáil do cheangal leis an idirlíon agus bain triail eile as."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Cuirfear an t-achomharc seo chuig <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Seolfar an t-achomharc seo go dtí seirbhís modhnóireachta Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Seolfar an t-achomharc seo go dtí seirbhís modhnóireachta Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Níl an t-ábhar seo le feiceáil toisc gur bhlocáil duine de na húsá
msgid "This content is not viewable without a Bluesky account."
msgstr "Níl an t-ábhar seo le feiceáil gan chuntas Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11318,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr "Níl an fotha seo ar líne níos mó. Tá <0>Discover0> á thaispeáin
msgid "This handle is reserved. Please try a different one."
msgstr "Tá an leasainm seo coimeádta. Bain triail as ceann eile."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr "Tá an liosta seo folamh."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Chuir údar na postála seo cosc ar phostálacha athluaite."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Cuirfear an freagra seo i rannán speisialta a bheidh i bhfolach ag bun an tsnáithe seo, agus ní bhfaighidh tusa nó éinne eile fógraí maidir le freagraí eile."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr "Níl aon leantóirí ag an úsáideoir seo."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Tá an t-úsáideoir seo tar éis thú a bhlocáil. Ní féidir leat a gcuid ábhair a fheiceáil."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Roghanna Snáitheanna"
msgid "Threaded"
msgstr "Modh snáithithe"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Roghanna Snáitheanna"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Chun 2FA trí ríomhphoist a dhíchumasú, dearbhaigh gur leatsa an seoladh ríomhphoist."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11646,12 +11927,12 @@ msgstr "Barr"
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Ábhar"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11763,11 +12044,15 @@ msgstr "Ní féidir teagmháil a dhéanamh le do sheirbhís. Seiceáil do cheang
msgid "Unable to delete"
msgstr "Ní féidir é a scriosadh"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr ""
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Dímhol ({0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# moladh} other {# moladh}})"
@@ -11918,7 +12203,7 @@ msgstr "Dímhol ({0, plural, one {# mholadh} two {# mholadh} few {# mholadh} man
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Ná balbhaigh an comhrá seo níos mó"
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Díghreamaigh"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Díghreamaigh an fotha"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Díghreamaigh ón mbaile"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Díghreamaigh an liosta modhnóireachta"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "Díghreamaíodh {0} ón mBaile"
@@ -12030,11 +12315,11 @@ 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/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "Nuashonraigh <0>{displayName}0> i Liostaí"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "Uasdátú chuig {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Theip ar infheictheacht an fhreagra a uasdátú"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Uaslódáil grianghraf in ionad"
@@ -12098,39 +12395,40 @@ msgstr "Uaslódáil grianghraf in ionad"
msgid "Upload a text file to:"
msgstr "Uaslódáil comhad téacs chuig:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Uaslódáil ó Cheamara"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Uaslódáil ó Chomhaid"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Uaslódáil ó Leabharlann"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Íomhánna á n-uaslódáil..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Mionsamhail á huaslódáil..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Físeán á uaslódáil..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Liosta úsáideoirí le {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "úsáideoirí a bhfuil <0>@{0}0> á leanúint"
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Dearbhaigh taifead DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12349,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr "Físeán"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Theip ar phróiseáil an fhíseáin"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12419,7 +12717,7 @@ msgstr "Físeán gan aimsiú."
msgid "Video settings"
msgstr "Socruithe físe"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Uaslódáladh an físeán"
@@ -12432,18 +12730,18 @@ msgstr "Físeán: {0}"
msgid "Videos"
msgstr "Físeáin"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Féach ar an abhatár atá ag {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Amharc ar phróifíl {0}"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Féach ar shonraí"
msgid "View full thread"
msgstr "Féach ar an snáithe iomlán"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Féach ar eolas faoi na lipéid seo"
@@ -12522,7 +12828,7 @@ msgstr "Tuilleadh"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "Féach ar an bpróifíl"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Féach ar an abhatár"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "Féach ar an tseirbhís lipéadaithe atá curtha ar fáil ag @{0}"
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Féach ar úsáideoirí ar thaitin an fotha seo leo"
@@ -12596,8 +12902,8 @@ msgstr "Féach ar na cuntais a bhalbhaigh tú"
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12640,8 +12946,8 @@ msgstr "Tabhair foláireamh faoi ábhar"
msgid "Warn content and filter from feeds"
msgstr "Tabhair foláireamh faoi ábhar agus scag as fothaí"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr "Níor aimsigh muid toradh ar bith don ábhar sin."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Theip orainn an comhrá seo a lódáil"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Nílimid cinnte an bhfuil cead agat físeáin a uaslódáil. Bain triail eile as."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "Tá fadhbanna líonra againn, bain triail as arís"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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ú."
@@ -12865,12 +13175,12 @@ 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.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Aon scéal?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12878,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr "Cé atá in ann idirghníomhú leis an bpostáil seo?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Cé atá in ann freagra a thabhairt"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Úps!"
@@ -12939,7 +13249,7 @@ msgstr "Cén fáth ar cheart athbhreithniú a dhéanamh ar an bpacáiste fáilte
msgid "Why should this user be reviewed?"
msgstr "Cén fáth gur cheart athbhreithniú a dhéanamh ar an úsáideoir seo?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Scríobh postáil"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Scríobh freagra"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Tháinig DID mícheart ón fhreastalaí. Fuarthas: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr ""
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Níl cead agat físeáin a uaslódáil."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Is féidir leat leanacht le comhráite beag beann ar cén socrú a roghnaíonn tú."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "Is féidir leat do chuntas a athghníomhú chun leanacht ort ag logáil
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr "Tig leat é seo a uasdátú ó do shocruithe."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "Níl aon fhothaí sábháilte agat."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "Ní mór duit seachtar ar a laghad a leanúint le pacáiste fáilte a ch
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Logálfar amach as gach cuntas thú."
@@ -13390,7 +13710,7 @@ msgstr "Gheobhaidh tú fógraí don snáithe seo anois."
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Gheobhaidh tú teachtaireacht ríomhphoist le “cód athshocraithe” ann. Cuir an cód sin isteach anseo, ansin cuir do phasfhocal nua isteach."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Tháinig tú go deireadh d’fhotha! Aimsigh cuntais eile le leanúint."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Tá tú tar éis an uasteorainn laethúil ar uaslódálacha físeáin a bhaint amach (an iomarca beart)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Níl tú anseo fada go leor chun físeáin a uaslódáil. Bain triail eile as ar ball."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Is féidir cartlann do chuntais, a bhfuil na taifid phoiblí uile inti, a íoslódáil mar chomhad “CAR”. Ní bheidh aon mheáin leabaithe (íomhánna, mar shampla) ná do shonraí príobháideacha inti. Ní mór iad a fháil ar dhóigh eile."
@@ -13519,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr "Do bhreithlá"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Cuireadh do chuid comhráite ar ceal"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "Is cosúil go bhfuil do ríomhphost neamhbhailí."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13582,7 +13910,7 @@ msgstr "Tá an fotha de na daoine a leanann tú folamh! Lean tuilleadh úsáideo
msgid "Your full handle will be <0>@{0}0>"
msgstr "Do leasainm iomlán anseo: <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "Na focail a bhalbhaigh tú"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13661,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/gd/messages.po b/src/locale/locales/gd/messages.po
index 8d6581c134..8f0e0a01da 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\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"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# mhionaid} two {# mhionaid} few {# mionaidean} other {
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# mhìos} two {# mhìos} few {# mìosan} other {# mìos}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# diog} two {# dhiog} few {# diogan} other {# diog}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
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}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "a’ leantainn {0}"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr "{0} à 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "Chuir {0} {1} mar fhrith-fhreagairt"
@@ -309,16 +314,38 @@ msgstr "{0}, liosta le {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "An t-avatar aig {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}d"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nithean gun leughadh} other {# nì gun leughadh}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr "Rinn {firstAuthorName} dearbhadh ort"
msgid "{following} following"
msgstr "a’ leantainn {following}"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "Cha ghabh {handle} ri teachdaireachdan"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# uair a thìde {minutesString}} two {# uair a thì
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# uair a thìde} two {# uair a thìde} few {# uairean a thìde} other {# uair a thìde}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, one {’S urrainn dhut suas ri # fhreagairt a chur am falach.} two {’S urrainn dhut suas ri # fhreagairt a chur am falach.} few {’S urrainn dhut suas ri # freagairtean a chur am falach.}other {’S urrainn dhut suas ri # freagairt a chur am falach.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr "Na h-inbhirean is daoine as fheàrr le {name} – tiugainn!"
msgid "{name}'s starter pack"
msgstr "A’ phacaid tòiseachaidh aig {name}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
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}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr "Dh’èirich mearachd leis an lìonra. Thoir sùil air a’ cheangal aga
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Dh’èirich mearachd leis an lìonra. Thoir sùil air a’ cheangal agad ris an eadar-lìon."
@@ -804,7 +869,7 @@ msgstr "Dh’èirich mearachd leis an lìonra. Thoir sùil air a’ cheangal aga
msgid "A new code has been sent"
msgstr "Chaidh còd ùr a chur"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Dòigh dearbhaidh ùr"
@@ -827,11 +892,11 @@ msgstr "Glacadh-sgrìn de dhuilleag pròifil le ìomhaigheag cluig ri taobh a’
msgid "A screenshot of 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 "Glacadh-sgrìn de dh’uinneag sgrìobhadh nam post le putan ùr ri taobh a’ phutain “Postaich” a tha ag ràdh “Dreachdan”, le bogh-fhrois de chleasan-teine. Tha an teacsa foidhe anns an bhogsa-sgrìobhaidh ag ràdh “Sin thu, a charaid, an cuala tu an naidheachd? Tha gleus dhreachdan aig Bluesky a-nis!!!”."
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Droch-ghiùlan no leth-bhreith"
msgid "Accept"
msgstr "Gabh ris"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Gabh ris"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Gabh ris an iarrtas cabadaich"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Gabh ris an iarrtas"
@@ -860,17 +935,26 @@ msgstr "Gabh ris an iarrtas"
msgid "Accept this language suggestion"
msgstr "Gabh ris a’ chànan seo a chaidh a mholadh"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "So-ruigsinneachd"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Roghainnean na so-ruigsinneachd"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Chaidh an cunntas a neo-mhùchadh"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "’S urrainn do chunntasan aig a bheil cromag chrom-bhileach ghorm <0><1/>0> cunntasan eile a dhearbhadh. ’S e Bluesky a thaghas an luchd-dearbhaidh earbsach seo."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Gnìomhachd o dhaoine eile"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Brathan gnìomhachd"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Cuir ris"
@@ -999,8 +1079,8 @@ msgstr "Cuir cunntas ris"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Cuir roghainn teacsa ris (roghainneil)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Cuir cunntas eile ris"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Cuir post eile ris"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Cuir post eile ris an t-snàithlean"
@@ -1035,7 +1115,7 @@ msgstr "Cuir facal-faire aplacaid ris"
msgid "Add App Password"
msgstr "Cuir facal-faire aplacaid ris"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr "Cuir emoji mar fhrith-fhreagairt"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Cuir meadhan ris a’ phost"
@@ -1062,8 +1142,8 @@ msgstr "Cuir meadhan ris a’ phost"
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Cuir barrachd fiosrachaidh ris (roghainneil)"
@@ -1080,8 +1160,8 @@ msgstr "Cuir am facal mùchaidh ris leis na roghainnean a thagh thu"
msgid "Add muted words and tags"
msgstr "Cuir ris faclan is tagaichean mùchaidh"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "A’ cur buill ris an liosta…"
msgid "Additional details (limit 1000 characters)"
msgstr "Mion-fhiosrachadh a bharrachd (1,000 caractar air a’ char as motha)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Fiosrachadh a bharrachd (300 caractar air a’ char as motha)"
@@ -1228,12 +1308,12 @@ msgstr "Chaidh do cheist mun dearbhadh aoise a chur"
msgid "Age assurance only takes a few minutes"
msgstr "Cha toir dearbhadh aoise ach mionaid no dhà"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "meadhbh@eisimpleir.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Na h-uile"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Ceadaich cead-inntrigidh o na teachdaireachdan dìreach agad"
msgid "Allow anyone to reply"
msgstr "Thoir cead-freagairt dhan a h-uile duine"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ 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/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "Roghainn teacsa"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Roghainn teacsa"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Mìnichidh roghainn teacsa na tha san dealbh do dhaoine a tha dall no air beag-lèirsinn is bheir e co-theacsa dhan a h-uile duine."
@@ -1387,7 +1467,7 @@ msgstr "Thachair mearachd"
msgid "An error occurred"
msgstr "Thachair mearachd"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Dh’èirich mearachd rè dùmhlachadh a’ video."
@@ -1432,11 +1512,11 @@ msgstr "Dh’èirich mearachd rè sàbhaladh a’ chòd QR!"
msgid "An error occurred while trying to follow all"
msgstr "Dh’èirich mearachd nuair a bha sinn airson na h-uile a leantainn"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "Dh’èirich mearachd fhad ’s a bha sinn a’ luchdadh suas a’ video. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "Dh’èirich mearachd fhad ’s a bha sinn a’ luchdadh suas a’ video. Thoir sùil air a’ cheangal agad ris an eadar-lìon is feuch ris a-rithist."
@@ -1461,19 +1541,19 @@ msgstr "Dealbh de ghrunn puist Bluesky ri taobh ìomhaigheadan ath-phostaidh,
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Dealbh a sheallas gun tagh Bluesky luchd-dearbhaidh earbsach agus gun dearbh an luchd-dearbhaidh earbsach seo cunntasan fa leth aig an luchd-chleachdaidh an uair sin."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Duilgheadas nach eil am measg nan roghainnean seo"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Dh’èirich duilgheadas nuair a bha sinn a’ fosgladh na cabadaich"
msgid "An issue occurred, please try again."
msgstr "Dh’èirich duilgheadas, feuch ris a-rithist."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Dealbh mas fhìor dhe iPhone a tha a’ sealltainn aplacaid Bluesky agus a’ phròifil aig cleachdaiche dearbhte le cromag ghorm ris an ainm-taisbeanaidh aca."
@@ -1539,13 +1619,17 @@ msgstr "Duine sam bith"
msgid "Anyone can interact"
msgstr "Faodaidh duine sam bith eadar-ghabhail a dhèanamh"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr "Duine sam bith a tha gam leantainn"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Feumaidh co-dhiù 4 caractaran bhith ann am facal-faire na h-aplacaid"
msgid "App passwords"
msgstr "Faclan-faire nan aplacaidean"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Faclan-faire nan aplacaidean"
@@ -1618,7 +1702,7 @@ msgstr "Ath-thagair an aghaidh dùnadh an t-srutha bheò"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Chaidh an t-ath-thagradh a chur"
@@ -1632,14 +1716,14 @@ msgstr "Tog ath-thagradh an aghaidh na dàlach"
msgid "Appeal Suspension"
msgstr "Tog ath-thagradh an aghaidh na dàlach"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Tog ath-thagradh an aghaidh a’ cho-dhùnaidh seo"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "A bheil thu cinnteach cinnteach?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "A bheil thu cinnteach gu bheil thu airson faclan-faire na h-aplacaid “{0}” a sguabadh às?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
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: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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
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?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Cluich videothan is GIFs gu fèin-obrachail"
msgid "Available"
msgstr "Ri fhaighinn"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Ri fhaighinn"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Ri fhaighinn"
msgid "Back"
msgstr "Air ais"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Air ais gu na cabadaich"
@@ -1840,12 +1926,12 @@ msgstr "Mus urrainn dhut gabhail ris an iarrtas chabadaich seo, feumaidh tu am p
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Mus fhaigh thu brathan mu phuist a dh’fhoillsicheas {name}, feumaidh tu am post-d agad a dhearbhadh."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Mus cuir thu teachdaireachd gu cleachdaiche eile, feumaidh tu am post-d agad a dhearbhadh."
@@ -1877,7 +1963,7 @@ msgstr "Co-là breith"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Bac an cunntas"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "A bheil thu airson an cunntas a bhacadh?"
msgid "Block accounts"
msgstr "Bac cunntasan"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "A bheil thu airson na cunntasan seo a bhacadh?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Bac an cleachdaiche"
@@ -1946,9 +2032,9 @@ msgstr "Bac an cleachdaiche"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Bac an cleachdaiche"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Bac an cleachdaiche agus/no sguab an còmhradh seo às"
@@ -1956,7 +2042,7 @@ msgstr "Bac an cleachdaiche agus/no sguab an còmhradh seo às"
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Bacte"
@@ -1964,13 +2050,13 @@ msgstr "Bacte"
msgid "Blocked accounts"
msgstr "Cunntasan air am bacadh"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Cunntasan air am bacadh"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Chan eil cead aig cunntasan bacte freagairt a chur sna snàithleanan agad, iomradh a dhèanamh ort no eadar-ghabhail eile a dhèanamh leat."
@@ -2029,7 +2115,7 @@ msgstr "Tha Bluesky nas fheàrr le caraidean!"
msgid "Bluesky is more fun with friends"
msgstr "’S fheàirrde Bluesky do charaidean fhèin"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "’S fheàirrde Bluesky do charaidean fhèin! Ion-phortaich an luchd-aithne agad is faic cò tha an-seo mar-thà."
@@ -2053,7 +2139,7 @@ msgstr "Taghaidh Bluesky grunn chunntasan aig daoine air an lìonra agad a mhola
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 "Cha leig Bluesky a’ phròifil agus na puist agad ri daoine nach eil clàraichte a-staigh. Dh’fhaodte nach gèill aplacaidean eile ris an iarrtas seo. Cha dèan seo cunntas prìobhaideach dheth."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Nì Bluesky dearbhadh iad fhèin air fìor-chunntasan mòra."
@@ -2137,23 +2223,30 @@ msgstr "Gnìomhachas"
msgid "Button to go back to the home timeline"
msgstr "Am putan a bheir air ais gu loidhne-ama do dhachaigh thu"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Le {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Le <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Le bhith a’ cruthachadh cunntas, bidh tu ag aontachadh ri <0>teirmiche
msgid "By you"
msgstr "Leat-sa"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "An camara"
@@ -2192,8 +2285,8 @@ msgstr "An camara"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "An camara"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "An camara"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Sguir dheth"
@@ -2248,9 +2341,9 @@ msgstr "Sguir dhen ath-ghnìomhachadh is clàraich a-mach"
msgid "Cancel search"
msgstr "Sguir dhen lorg"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Chan urrainn dhut eadar-ghabhail a dhèanamh le cleachdaiche a bhac thu"
@@ -2264,7 +2357,7 @@ msgstr "Caipseanan (.vtt)"
msgid "Captions & alt text"
msgstr "Caipseanan ⁊ roghainn teacsa"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr "Atharraich cànan na h-aplacaid"
msgid "Change Handle"
msgstr "Atharraich an làmhrachan"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Atharraich seirbheise na modarataireachd"
@@ -2310,11 +2403,11 @@ msgstr "Atharraich am facal-faire"
msgid "Change password dialog"
msgstr "An còmhradh airson am facal-faire atharrachadh"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Atharraich roinn-seòrsa na h-aithisg"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Atharraich adhbhar na h-aithrise"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Cha bhi buaidh air an liosta ma dh’atharraicheas tu a’ phacaid-thòiseachaidh an dèidh dhut a chruthachadh. Bidh an liosta na lethbhreac neo-eisimeileach."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Cabadaich"
@@ -2361,6 +2454,13 @@ msgstr "Chaidh a’ chabadaich a sguabadh às"
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Chaidh a’ chabadaich a mhùchadh"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Bogsa a-steach nan iarrtasan cabadaich"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Iarrtasan cabadaich"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Roghainnean na cabadaich"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Roghainnean na cabadaich"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Chaidh a’ chabadaich a neo-mhùchadh"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Cabadaich"
@@ -2479,7 +2579,7 @@ msgstr "Tagh cànain nam post"
msgid "Choose this color as your avatar"
msgstr "Tagh an dath seo mar avatar agad"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr "Dèan briogadh airson barrachd fiosrachaidh"
msgid "click here"
msgstr "dèan briogadh an-seo"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr "Briog an-seo airson fios a chur ri sgioba na taice againn"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr "Briog an-seo airson clàradh a-mach"
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Briog an-seo a thòiseachadh air a dhearbhadh."
@@ -2567,11 +2667,11 @@ msgstr "Briog an-seo a thòiseachadh air a dhearbhadh."
msgid "Click here to update your birthdate"
msgstr "Briog an-seo airson latha do bhreith atharrachadh"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Briog an-seo airson am post-d agad ùrachadh"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr "Dèan briogadh airson clàr-taice an taga airson {0} fhosgladh"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Dèan briogadh airson feuchainn ris an teachdaireachd a dh’fhàillig as ùr"
@@ -2594,28 +2694,30 @@ msgstr "Dèan briogadh airson feuchainn ris an teachdaireachd a dh’fhàillig a
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Dèan briogadh airson feuchainn ris an teachdaireachd a dh’fhàillig a
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Dùin an còmhradh gnìomhach"
msgid "Close alert"
msgstr "Dùin a’ chaismeachd"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Dùin an drathair aig a’ bhonn"
@@ -2657,8 +2763,9 @@ msgstr "Dùin an drathair aig a’ bhonn"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Dùin an còmhradh"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Dùin an dealbh"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Dùin sealladair nan dealbhan"
@@ -2683,6 +2790,14 @@ msgstr "Dùin sealladair nan dealbhan"
msgid "Close menu"
msgstr "Dùin an clàr-taice"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Dùin an co-còmhradh seo"
@@ -2695,7 +2810,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:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Dùinidh seo an uinneag sgrìobhaidh is tilgidh e air falbh dreachd a’ phuist"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Dealbhan-èibhinn"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Treòrachadh na coimhearsnachd"
@@ -2740,12 +2855,12 @@ msgstr "Coilean an dùbhlan"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Sgrìobh post ùr"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
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"
@@ -2753,11 +2868,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:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "A’ co-dhlùthachadh an GIF…"
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "A’ dùmhlachadh a’ video…"
@@ -2780,7 +2895,7 @@ msgstr "Air a rèiteachadh ann an <0>roghainnean na modarataireachd0>."
msgid "Confirm"
msgstr "Dearbh"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Susbaint ⁊ meadhanan"
msgid "Content and media"
msgstr "Susbaint is meadhanan"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Susbaint is meadhanan"
@@ -2889,7 +3004,7 @@ msgstr "Cùlaibh a’ chlàir-thaice cho-theacsail, dèan briogadh airson an cl
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Lean air an t-snàithlean"
msgid "Continue thread..."
msgstr "Leugh an còrr dhen t-snàithlean…"
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Air adhart gun ath-cheum"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Còmhradh"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Chaidh an còmhradh a sguabadh às"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Chaidh an còmhradh a sguabadh às"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Chaidh lethbhreac de thionndadh a’ bhuild a chur air an stòr-bhòrd"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Dèan lethbhreac dhen DID"
msgid "Copy host"
msgstr "Dèan lethbhreac dhen òstair"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Cuir lethbhreac dhen cheangal dhan phròifil"
msgid "Copy link to starter pack"
msgstr "Cuir lethbhreac dhen cheangal dhan pacaid tòiseachaidh"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Dèan lethbhreac de theacsa na teachdaireachd"
@@ -3052,7 +3175,7 @@ msgstr "Dèan lethbhreac dhen reacord TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Poileasaidh na còrach-lethbhreac"
@@ -3065,7 +3188,7 @@ msgstr "Cha b’ urrainn dhuinn ceangal ris an inbhir ghnàthaichte"
msgid "Could not connect to feed service"
msgstr "Cha b’ urrainn dhuinn ceangal ri seirbheis an inbhir"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Cha b’ urrainn dhuinn gach maids a leantainn. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Cha b’ urrainn dhuinn a’ chabadaich fhàgail"
@@ -3094,6 +3217,10 @@ msgstr "Cha b’ urrainn dhuinn a’ chabadaich fhàgail"
msgid "Could not load feed"
msgstr "Cha b’ urrainn dhuinn an t-inbhir a luchdadh"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Còd na dùthcha"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Cruthaich"
@@ -3159,7 +3286,7 @@ msgstr "Cruthaich còd QR airson pacaid tòiseachaidh"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Cruthaich pacaid tòiseachaidh"
@@ -3174,13 +3301,14 @@ msgstr "Cruthaich pacaid tòiseachaidh dhomh"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Cruthaich cunntas"
msgid "Create an account without using this starter pack"
msgstr "Cruthaich cunntas ach as aonais na pacaid tòiseachaidh seo"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Cruthaich avatar na àite"
@@ -3206,7 +3334,7 @@ msgstr "Cruthaich avatar na àite"
msgid "Create another"
msgstr "Cruthaich fear eile"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr "Cruthaich liosta dhen phacaid-thòiseachaidh"
msgid "Create moderation list"
msgstr "Cruthaich liosta modarataireachd"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Cruthaich cunntas ùr"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Cruthaich aithris airson {0}"
@@ -3256,8 +3385,8 @@ msgstr "Cruthaich liosta luchd-cleachdaidh"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Air a chruthachadh {0}"
@@ -3341,7 +3470,7 @@ msgstr "Bun-roghainn"
msgid "Default icons"
msgstr "Na h-ìomhaigheagan bunaiteach"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Sguab às clàr foirgheall na cabadaich"
msgid "Delete contacts"
msgstr "Sguab an luchd-aithne às"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Sguab an còmhradh às"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Sguab às dhomh-sa"
@@ -3399,11 +3528,11 @@ msgstr "Sguab às dhomh-sa"
msgid "Delete list"
msgstr "Sguab an liosta às"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Sguab an teachdaireachd às"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Sguab an teachdaireachd às dhomh-sa"
@@ -3413,7 +3542,7 @@ msgstr "Sguab an cunntas agam às"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Sguab às am post"
@@ -3434,12 +3563,12 @@ msgstr "A bheil thu airson an liosta seo a sguabadh às?"
msgid "Delete this post?"
msgstr "A bheil thu airson am seo post a sguabadh às?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Air a sguabadh às"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Cunntas a chaidh a sguabadh às"
@@ -3507,13 +3636,13 @@ msgstr "Còmhradh: co-dhùin cò aig a bheil cead eadar-ghabhail a dhèanamh lei
msgid "Dim"
msgstr "Doilleir"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Cuir 2FA à comas"
@@ -3521,7 +3650,7 @@ msgstr "Cuir 2FA à comas"
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Cuir dearbhadh 2FA air a’ phost-d à comas"
@@ -3534,8 +3663,8 @@ msgstr "Cuir dearbhadh 2FA air a’ phost-d à comas"
msgid "Disable haptic feedback"
msgstr "Cuir an fhreagairt haptaigeach à comas"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr "Na leig le daoine luaidh a dhèanamh air a’ phost seo"
msgid "Disable replies entirely"
msgstr "Cuir à comas freagairtean buileach"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "À comas"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ 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:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "A bheil thu airson an dreachd a thilgeil air falbh?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "A bheil thu airson am post a thilgeil air falbh?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Dì-cheangail Germ DM"
@@ -3613,11 +3742,11 @@ msgstr "Fidir inbhirean ùra"
msgid "Dismiss"
msgstr "Leig seachad"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Leig seachad a’ bhratach"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Leig seachad a’ mhearachd"
@@ -3673,7 +3802,7 @@ msgstr "Gun lomnochd na bhroinn."
msgid "Domain verified!"
msgstr "Chaidh an àrainn a dhearbhadh!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Nach eil còd agad no a bheil fear ùr a dhìth ort? <0>Briog an-seo.0>"
@@ -3681,7 +3810,7 @@ msgstr "Nach eil còd agad no a bheil fear ùr a dhìth ort? <0>Briog an-seo.0
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Nach fhaic thu còd? <0>Briog an-seo airson a chur as ùr.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Nach fhaic thu am post-d sam? <0>Briog an-seo airson a chur às ùr.0>"
@@ -3700,16 +3829,19 @@ msgstr "Na gabh dragh! Chaidh gach teachdaireachd is roghainn a shàbhaladh is b
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Deiseil"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Thoir gnogag dhùbailte no dèan brùthadh fada air an teachdaireachd airson frith-fhreagairt a chur"
@@ -3741,15 +3873,6 @@ msgstr "Thoir gnogag dhùbailte a dh’innse gur toil leat e"
msgid "Download Bluesky"
msgstr "Luchdaich a-nuas Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Luchdaich a-nuas am faidhle CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Luchdaich a-nuas am faidhle CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Luchdaich a-nuas dàta na cabadaich"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Luchdaich a-nuas dàta na cabadaich"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Doxx-igeadh"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "m.e. luchd-cleachdaidh a chuireas sanasachd mar fhreagairt gu tric."
msgid "Eating disorders"
msgstr "Mì-rian ithe"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Deasaich"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Deasaich an t-avatar"
@@ -3847,14 +3978,14 @@ msgstr "Deasaich an t-avatar"
msgid "Edit Feeds"
msgstr "Deasaich na h-inbhirean"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Deasaich an dealbh"
@@ -3868,7 +3999,16 @@ msgstr "Deasaich roghainnean na h-eadar-ghabhalach"
msgid "Edit interests"
msgstr "Deasaich na rudan sa bheil ùidh agad"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr "Deasaich staid an t-srutha bheò"
msgid "Edit moderation list"
msgstr "Deasaich an liosta modarataireachd "
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Deasaich na h-inbhirean agam"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Deasaich na brathan o {0}"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Deasaich na daoine"
@@ -3925,7 +4060,7 @@ msgstr "Deasaich a’ phròifil"
msgid "Edit starter pack"
msgstr "Deasaich a’ phacaid tòiseachaidh"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr "Deasaich liosta an luchd-chleachdaidh"
msgid "Edit who can reply"
msgstr "Co-dhùin cò aig a bheil cead freagairt"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Deasaich a’ phacaid tòiseachaidh agad"
@@ -3971,7 +4106,7 @@ msgstr "Seòladh puist-d"
msgid "Email Resent"
msgstr "Chaidh am post-d a chur as ùr"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "Chaidh am post-d a chur!"
@@ -4006,8 +4141,8 @@ msgstr "Leabaich am post seo san làrach-lìn agad. Cha leig thu leas ach lethbh
msgid "Embedded video player"
msgstr "Cluicheadair video leabaichte"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Cuir an comas"
@@ -4025,7 +4160,7 @@ msgstr "Cuir comas inbheach an comas"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Cuir 2FA air a’ phost-d an comas"
@@ -4038,13 +4173,12 @@ msgstr "Cuir meadhanan on taobh a-muigh an comas"
msgid "Enable media players for"
msgstr "Cuir cluicheadairean mheadhanan an comas airson"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Cuir an comas brathan o chunntas le bhith a’ tadhal air a’ phròifil is a’ brùthadh <0>ìomhaigheag a’ chluig0><1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Cuir brathan push an comas"
@@ -4091,8 +4225,8 @@ msgstr "Cuir a-steach facal-faire"
msgid "Enter a word or tag"
msgstr "Cuir a-steach facal no taga"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Cuir a-steach an còd"
@@ -4143,7 +4277,7 @@ msgstr "Fosglaidh seo an làn-sgrìn"
msgid "Entertainment"
msgstr "Dibhearsan"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Mearachd"
@@ -4185,23 +4319,23 @@ msgstr "Faodaidh duine sam bith freagairt"
msgid "Everybody can reply to this post."
msgstr "Faodaidh duine sam bith am post seo a fhreagairt."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "on a h-uile duine"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "on a h-uile duine"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "on a h-uile duine"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "A h-uile rud eile"
@@ -4217,8 +4351,8 @@ msgstr "Dùinidh seo às luchd-cleachdaidh a tha thu gan leantainn"
msgid "Exit fullscreen"
msgstr "Fàg an làn-sgrìn"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Leudaich an roghainn teacsa"
@@ -4226,7 +4360,7 @@ msgstr "Leudaich an roghainn teacsa"
msgid "Expand list of users"
msgstr "Leudaich liosta an luchd-chleachdaidh"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Leudaich no co-theannaich am post slàn a tha thu a’ freagairt"
@@ -4238,7 +4372,7 @@ msgstr "Leudaich teacsa a’ phuist"
msgid "Expands or collapses post text"
msgstr "Leudaichidh no co-theannaichidh seo teacsa a’ phuist"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Bha dùil ri URI airson an clàr fhuasgladh"
@@ -4277,9 +4411,9 @@ msgstr "Meadhanan feòlmhor no draghail."
msgid "Explicit sexual images."
msgstr "Dealbhan feiseil is feòlmhor."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Rùraich"
@@ -4289,11 +4423,8 @@ msgstr "Rùraich"
msgid "Explore the app"
msgstr "Fidir an aplacaid"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,7 @@ msgstr "Meadhanan on taobh a-muigh"
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 "Ma cheadaicheas tu meadhanan on taobh a-muigh, dh’fhaodte gun toir seo comas do làraichean-lìn fiosrachadh a chruinneachadh mu do dhèidhinn is mun uidheam agad. Cha tèid fiosrachadh sam bith iarraidh no a chur gus am brùth thu am putan “Cluich”."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Roghainnean nam meadhanan on taobh a-muigh"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Cha b’ urrainn dhuinn gabhail ris a’ chabadaich"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Cha b’ urrainn dhuinn an emoji a chur mar fhrith-fhreagairt"
@@ -4354,7 +4489,7 @@ msgstr "Cha b’ urrainn dhuinn pacaid tòiseachaidh a chur ris"
msgid "Failed to change handle. Please try again."
msgstr "Dh’fhàillig atharrachadh an làmhrachain. Feuch ris a-rithist."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "Cha b’ urrainn dhuinn facal-faire a chruthachadh dhan aplacaid. Feuch
msgid "Failed to create conversation"
msgstr "Cha b’ urrainn dhuinn an còmhradh a chruthachadh"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Cha b’ urrainn dhuinn a’ chabadaich a sguabadh às"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Cha b’ urrainn dhuinn an teachdaireachd a sguabadh às"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Cha b’ urrainn dhuinn Germ DM a dhì-cheangal. Seo a’ mhearachd: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr "Cha b’ urrainn dhuinn a h-uile caraid agad a leantainn, feuch ris a-ri
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "Cha b’ urrainn dhuinn am moladh a chur am falach, thoir sùil air a’ cheangal ris an eadar-lìon agad"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "Cha b’ urrainn dhuinn aplacaid nan SMS a chur gu dol"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Cha b’ urrainn dhuinn na còmhraidhean a luchdadh"
@@ -4456,17 +4599,8 @@ msgstr "Cha b’ urrainn dhuinn na h-inbhirean a luchdadh"
msgid "Failed to load feeds preferences"
msgstr "Cha b’ urrainn dhuinn roghainnean nan inbhirean a luchdadh"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Cha b’ urrainn dhuinn roghainnean nam brathan a luchdadh."
@@ -4493,16 +4627,15 @@ msgstr "Cha b’ urrainn dhuinn na h-inbhirean a mholamaid a luchdadh"
msgid "Failed to load suggested follows"
msgstr "Cha b’ urrainn dhuinn na daoine a mholamaid an leantainn a luchdadh"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Cha b’ urrainn dhuinn comharradh gun deach gach iarrtas a leughadh"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Cha b’ urrainn dhuinn am post a phrìneachadh"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Cha b’ urrainn dhuinn Germ DM a cheangal ris as ùr. Seo a’ mhearachd: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Cha b’ urrainn dhuinn an dàta a thoirt air falbh. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Cha b’ urrainn dhuinn an emoji a chuir thu mar fhrith-fhreagairt a thoirt air falbh"
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr "Cha b’ urrainn dhuinn an dearbhadh a thoirt air falbh"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
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:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Cha b’ urrainn dhuinn an dreachd a luchdadh"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Cha b’ urrainn dhuinn na rudan sa bheil ùidh agad a shàbhaladh."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Cha b’ urrainn dhuinn am post-d a chur, feuch ris a-rithist."
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Cha b’ urrainn dhuinn an t-ath-thagradh a chur, feuch ris a-rithist."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Cha b’ urrainn dhuinn mùchadh an t-snàithlein a thoglachadh, feuch ris a-rithist"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr "Cha b’ urrainn dhuinn an liosta a dhì-phrìneachadh"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Cha b’ urrainn dhuinn roghainnean 2FA a’ phuist-d ùrachadh"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Cha b’ urrainn dhuinn am post-d ùrachadh, feuch ris a-rithist."
@@ -4614,7 +4751,7 @@ msgstr "Cha b’ urrainn dhuinn na h-inbhirean ùrachadh"
msgid "Failed to update notification declaration"
msgstr "Cha b’ urrainn dhuinn foirgheall nam brathan ùrachadh"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Cha b’ urrainn dhuinn na roghainnean ùrachadh"
@@ -4641,7 +4778,7 @@ msgstr "Cunntas brèige no bot"
msgid "False information about elections"
msgstr "Fiosrachadh brèige mu thaghadh"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Inbhir"
@@ -4649,7 +4786,7 @@ msgstr "Inbhir"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Inbhir le {0}"
@@ -4662,7 +4799,7 @@ msgstr "Cruthadair inbhirean"
msgid "Feed identifier"
msgstr "Aithnichear inbhirean"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Clàr-taice nan inbhirean"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Chaidh do bheachd a chur gu muinntir an inbhir"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Inbhirean"
@@ -4739,7 +4876,7 @@ msgstr "Criathraich an lorg a-rèir cànain (an-dràsta fhèin: {currentLanguage
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Criathraich cò aig am bi cead iarrtas a chur airson brathan mu do ghnìomhachd fhaighinn"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Criathraich na daoine a gheibh thu teachdaireachdan uapa"
@@ -4747,11 +4884,11 @@ msgstr "Criathraich na daoine a gheibh thu teachdaireachdan uapa"
msgid "Finalizing"
msgstr "A’ cur crìoch air"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Mu dheireadh thall!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Ionmhas"
msgid "Find accounts to follow"
msgstr "Lorg cunntasan airson an leantainn"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Lorg luchd-aithne"
@@ -4799,7 +4936,7 @@ msgstr "Lorg daoine airson an leantainn"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Lorg puist, cleachdaichean is inbhirean air Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Lorg do charaidean"
@@ -4944,8 +5081,12 @@ msgstr "Tha <0>{0}0> agus <1>{1}1> ga leantainn"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Tha <0>{0}0>, <1>{1}1> is {2, plural, one {# eile} two {# eile} few {# eile} other {# eile}} ga leantainn"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Luchd-leantainn aig @{0} as aithne dhut-sa cuideachd"
@@ -4995,19 +5136,16 @@ msgstr "A’ leantainn {handle}"
msgid "Following feed preferences"
msgstr "Roghainnean inbhir nan daoine a tha thu a’ leantainn"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Roghainnean inbhir nan daoine a tha thu a’ leantainn"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Gad leantainn"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Gad leantainn"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Cruth-clò"
@@ -5069,7 +5207,7 @@ msgstr "Na dhìochuimhnich thu e?"
msgid "Free your feed"
msgstr "Saor an t-inbhir agad"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "O"
@@ -5086,35 +5224,35 @@ msgstr "O <0/>"
msgid "Generate a starter pack"
msgstr "Gin pacaid tòiseachaidh"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Chaidh Germ DM a dhì-cheangal"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Ceangal Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Chaidh Germ DM a cheangal ris as ùr"
@@ -5122,46 +5260,50 @@ msgstr "Chaidh Germ DM a cheangal ris as ùr"
msgid "Get help"
msgstr "Faigh cobhair"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Faigh brath nuair a leanas daoine thu."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Faigh brathan nuair a dh’innseas daoine gur toil leotha rud a dh’ath-phostaich thu."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Faigh brathan nuair a dh’innseas daoine gur toil leotha rud a phostaich thu."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Faigh brath nuair a nì daoine iomradh ort."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Faigh brathan nuair a nì daoine iomradh air post agad."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Faigh brathan nuair a fhreagras daoine post agad."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Faigh brathan nuair a dh’ath-phostaicheas daoine rud a dh’ath-phostaich thusa."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Faigh brathan nuair a dh’ath-phostaicheas daoine rud a phostaich thusa."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr ""
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Faigh brathan mu phuist ùra"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Faigh brathan mu phuist is freagairtean o chunntasan a thaghas tu."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Faigh brath nuair a dh’fhoillsicheas {name} post ùr"
@@ -5174,27 +5316,27 @@ msgstr "Faigh brathan mu ghnìomhachd a’ chunntais seo"
msgid "Get notified when {name} posts"
msgstr "Faigh brath nuair a dh’fhoillsicheas {name} post ùr"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Faigh brath nuair a dh’fhoillsicheas cuideigin post ùr"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Dèan toiseach-tòiseachaidh"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "Chaidh an GIF a luchdadh suas"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Cuir aodann ris a’ phròifil agad"
@@ -5213,20 +5355,21 @@ msgstr "Glòrachadh ainneirt"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Air ais"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Air ais"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Air ais gun cheum roimhe"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Dhachaigh"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Dhachaigh"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Dhachaigh"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Tadhail air roghainnean a’ chunntais"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Tadhail air a’ chòmhradh le {0}"
@@ -5299,12 +5440,12 @@ msgstr "Tadhail air an ath-fhear,"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Tadhail air a’ phròifil aca"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr "Chaidh an craoladh beò a chur à comas sa chunntas agad"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Tha mi agaibh"
@@ -5340,59 +5481,75 @@ msgstr "Susbaint glè ainneartach"
msgid "Grooming or predatory behavior"
msgstr "Grumachadh no giùlan creachach"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Hacaigeadh no ionnsaighean siostaim"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Tha an làmhrachan ro fhada. Feuch fear nas giorra."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "A’ tachairt an-dràsta fhèin"
@@ -5446,7 +5603,7 @@ msgstr "Gnìomhachdan dochainneach no glè chunnartach"
msgid "Harming or endangering minors"
msgstr "A’ cur mion-aoisich an cunnart no gan dochann"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Taga-hais"
@@ -5458,8 +5615,8 @@ msgstr "Taga-hais {tag}"
msgid "Hate speech"
msgstr "Gràin-chainnt"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "A bheil còd agad? <0>Briog an-seo.0>"
@@ -5483,7 +5640,7 @@ msgstr "Cumaidh Bluesky seo fad 7 làithean airson casg a chur air mì-ghnàthac
msgid "Help"
msgstr "Cobhair"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Dèan nas soilleire e do dhaoine nach e bot a th’ annad le bhith a’ luchdadh suas dealbh no a’ cruthachadh avatar."
@@ -5652,18 +5809,18 @@ msgstr "Hm, tha coltas nach urrainn dhuinn an dàta seo a luchdadh. Chì thu bar
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hm, cha b’ urrainn dhuinn an t-seirbheis modarataireachd sin a luchdadh."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Air do shocair! Tha sinn a’ toirt comas air video mean air mhean – glacaidh foighidinn iasg. Na bi fada gun tilleadh!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Dhachaigh"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
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"
@@ -5757,7 +5914,7 @@ msgstr "Ma sguabas tu às an liosta seo, chan urrainn dhut aiseag às a dhèidh.
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Ma tha àrainn agad fhèin, ’s urrainn dhut sin a chleachdadh mar an làmhrachan agad. Bheir seo comas dhut dearbhadh gur tusa a th’ ann thu fhèin. <0>Barrachd fiosrachaidh an-seo.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Ma tha agad ris am post-d agad ùrachadh, <0>briog an-seo0>."
@@ -5765,7 +5922,7 @@ msgstr "Ma tha agad ris am post-d agad ùrachadh, <0>briog an-seo0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Ma bheir thu am post seo air falbh, chan urrainn dhut aiseag às a dhèidh."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Ma dh’ùraicheas tu an seòladh puist-d agad, thèid an 2FA a chur à comas."
@@ -5773,7 +5930,6 @@ msgstr "Ma dh’ùraicheas tu an seòladh puist-d agad, thèid an 2FA a chur à
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Ma tha thu airson am facal-faire seo atharrachadh, cuiridh sinn còd thugad a dhèanamh cinnteach gur ann agad-sa a tha an cunntas seo."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Ma tha thu airson cuingeachadh cò gheibh brathan mu ghnìomhachd sa chunntas agad, is urrainn dhut seo a chur air gleus sna <0>Roghainnean → Prìobhaideachd is tèarainteachd0>."
@@ -5786,23 +5942,33 @@ msgstr "Mas e neach-leasachaidh a th’ annad, is urrainn dhut frithealaiche a c
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Dealbh"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Dealbh {0} à {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Chaidh tasgadan nan dealbhan fhalamhachadh, shaor sinn {0}"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Breug-riochdachadh"
msgid "Import contacts"
msgstr "Ion-phortaich luchd-aithne"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Ion-phortaich luchd-aithne"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Ion-phortaich luchd-aithne ’s faigh lorg air do charaidean"
@@ -5881,40 +6047,40 @@ msgstr "Air ion-phortadh {0}"
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 "Airson ’s gun urrainn dhuinn cùisean a chumail iomchaidh a rèir d’ aoise, feumaidh fios a bhith againn cuin a rugadh tu. Cha leig thu leas seo a dhèanamh ach aon turas agus cumaidh sinn am fiosrachadh seo prìobhaideach."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "San aplacaid"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Brathan san aplacaid"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "San aplacaid; a h-uile duine"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "San aplacaid; daoine a tha thu gan leantainn"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "San aplacaid; push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "San aplacaid; push, a h-uile duine"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "San aplacaid; push, daoine a tha thu gan leantainn"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Bogsa a-steach falamh!"
@@ -5963,6 +6129,10 @@ msgstr "’S urrainn dhuit puist a shàbhaladh mar chomharran-lìn a-nis"
msgid "Invalid 2FA confirmation code."
msgstr "Tha an còd dearbhaidh 2FA mì-dhligheach."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Feuch fear eile."
@@ -5977,10 +6147,14 @@ msgstr "Roghainnean eadar-ghabhalach mì-dhligheach."
msgid "Invalid phone number"
msgstr "Àireamh fòn mhì-dhligheach"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Tha cuspair na h-aithrise mì-dhligheach"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Còd dearbhaidh mì-dhligheach"
@@ -6010,12 +6184,12 @@ msgstr "Thoir cuireadh dha do charaidean"
msgid "Invite friends <0/>"
msgstr "Thoir cuireadh dha do charaidean <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
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."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID na h-obrach: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID na h-obrach: {0}"
msgid "Jobs"
msgstr "Obraichean"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Obraichean"
msgid "Join Bluesky"
msgstr "Rach an sàs Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Thig a chòmhradh"
msgid "Journalism"
msgstr "Naidheachdas"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Cùm ort leis an deasachadh"
@@ -6143,7 +6331,7 @@ msgstr "Leubailean a tha ris a’ chunntas agad"
msgid "Labels on your content"
msgstr "Leubailean a tha ris an t-susbaint agad"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Roghainnean cànain"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "As ùire"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Barrachd fiosrachaidh mun rabhadh seo"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Barrachd fiosrachaidh mun dearbhadh air Bluesky"
@@ -6239,7 +6427,7 @@ msgstr "Barrachd fiosrachaidh mun dearbhadh air Bluesky"
msgid "Learn more about what is public on Bluesky."
msgstr "Barrachd fiosrachaidh mu na rudan a tha poblach air Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Barrachd fiosrachaidh mun cheangal Germ DM agad"
@@ -6252,8 +6440,8 @@ msgstr "Faigh barrachd fiosrachaidh ann an <0>roghainnean a’ chunntais0> aga
msgid "Learn more."
msgstr "Barrachd fiosrachaidh."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Fàg an-seo"
@@ -6276,7 +6464,7 @@ msgstr "Fàg a’ chabadaich"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Fàg an còmhradh"
@@ -6284,13 +6472,13 @@ msgstr "Fàg an còmhradh"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Fàg an còmhradh"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Soilleir"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
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}})"
@@ -6346,11 +6534,7 @@ msgstr "Nochd gur toil leat 10 puist"
msgid "Like 10 posts to train the Discover feed"
msgstr "Nochd gur toil leat 10 puist airson teagasg a thoirt dhan inbhir “Fidir”"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Brathan mu dhaoine a dh’innis gur toil leotha rud"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Innis gur toil leat an t-inbhir seo"
@@ -6358,8 +6542,8 @@ msgstr "Innis gur toil leat an t-inbhir seo"
msgid "Like this labeler"
msgstr "Nochd gur toil leat an leubailich seo"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Daoine as toil leotha seo"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "’S toil le {0, plural, one {# seo} two {# seo} few {# seo} other {# seo}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "’S toil le {likeCount, plural, one {# seo} two {# seo} few {# seo} other {# seo}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Na ’s toil le daoine"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "’S toil le cuideigin rud a dh’ath-phostaich thu"
-#: src/Navigation.tsx:499
-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:486
msgid "Likes on this post"
msgstr "Daoine as toil leotha am post seo"
@@ -6409,11 +6589,11 @@ msgstr "Daoine as toil leotha am post seo"
msgid "Linear"
msgstr "Loidhneach"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Liosta"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Chaidh an liosta a neo-mhùchadh"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Liostaichean"
@@ -6545,7 +6725,7 @@ msgstr "Chaidh an tachartas beò a leigeil ris as ùr"
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 "Nochdaidh tachartasan beòtha uaireannan nuair a bhios rudeigin inntinneach a’ dol. Ma thogras tu, ’s urrainn dhut an tachartas seo fhèin a chur am falach no gach tachartas a nochdadh san ionad seo ann an eadar-aghaidh na h-aplacaid."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "Tha gleus nan tachartasan beòtha na ghleus beta"
@@ -6595,27 +6775,27 @@ msgstr "A’ luchdadh roghainnean eadar-ghabhail nam post…"
msgid "Loading..."
msgstr "Ga luchdadh…"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Loga"
@@ -6662,7 +6842,7 @@ msgstr "Tha coltas nach eil thu a’ leantainn inbhir sam bith. <0>Briog an-seo
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Cuir air gleus roghainnean post-d a’ chunntais agad"
@@ -6687,9 +6867,8 @@ msgstr "Stiùirich na roghainnean dearbhaidh"
msgid "Manage your muted words and tags"
msgstr "Stiùirich na faclan is tagaichean a mhùch thu"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Comharraich gun deach iad uile a leughadh"
@@ -6698,13 +6877,12 @@ msgstr "Comharraich gun deach iad uile a leughadh"
msgid "Mark as read"
msgstr "Comharraich gun deach a leughadh"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Chaidh comharradh gun deach iad uile a leughadh"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Uaireigin eile ’s dòcha"
@@ -6727,25 +6905,21 @@ 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."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Brathan mu iomradh"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "luchd-cleachdaidh air a bheil iomradh"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Iomraidhean"
@@ -6775,22 +6949,22 @@ msgstr "Cuir teachdaireachd gu {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Chaidh an teachdaireachd a sguabadh às"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Chaidh an teachdaireachd a sguabadh às"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Teachdaireachd o @{0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Tha an teachdaireachd ro fhada"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Roghainnean na teachdaireachd"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Teachdaireachdan"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr "Meadhan-oidhche"
msgid "Minor harassment or bullying"
msgstr "Sàrachadh no burraidheachd bheag"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Brathan eile"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Mì-stiùireadh"
@@ -6850,7 +7020,7 @@ msgstr "Mì-stiùireadh"
msgid "Missing media"
msgstr "Tha meadhanan a dhìth"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Modarataireachd"
@@ -6894,7 +7064,7 @@ msgstr "Chaidh an liosta modarataireachd ùrachadh"
msgid "Moderation lists"
msgstr "Liostaichean modarataireachd"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Liostaichean modarataireachd"
@@ -6903,7 +7073,7 @@ msgstr "Liostaichean modarataireachd"
msgid "moderation settings"
msgstr "roghainnean modarataireachd"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Staidean modarataireachd"
@@ -6949,7 +7119,7 @@ msgstr "Filmichean"
msgid "Music"
msgstr "Ceòl"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Mùch"
@@ -6994,7 +7164,7 @@ msgstr "Mùch an liosta"
msgid "Mute these accounts?"
msgstr "A bheil thu airson na cunntasan seo a mhùchadh?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Mùch an snàithlean"
msgid "Mute words & tags"
msgstr "Mùch faclan ⁊ tagaichean"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Cunntasan a chaidh am mùchadh"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Cunntasan a chaidh am mùchadh"
@@ -7108,8 +7278,8 @@ msgstr "Bheir seo thu gun ath-sgrìn"
msgid "Navigates to your profile"
msgstr "Bheir seo thu gun phròifil agad"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "A bheil agad ri aithris a dhèanamh air briseadh còrach-lethbhreac, iarrtas laghail no cùis a thaobh gèilleadh ri riaghailt?"
@@ -7136,34 +7306,34 @@ msgstr "{postsCount, plural, one {post ùr} two {phost ùr} few {puist ùra} oth
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{postsCount, plural, one {post ùr} two {phost ùr} few {puist ùra} other {post ùra}} o {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Cabadaich ùr"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Seòladh puist-d ùr"
@@ -7174,29 +7344,25 @@ msgstr "Seòladh puist-d ùr"
msgid "New Feature"
msgstr "Gleus ùr"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Brathan mu luchd-leantainn ùr"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Luchd-leantainn ùr"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Post ùr"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Post ùr"
@@ -7262,8 +7428,8 @@ msgstr "Naidheachdan"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Gun dealbh"
@@ -7362,7 +7528,7 @@ msgstr "Chan eil thu a’ leantainn {0} tuilleadh"
msgid "No media yet"
msgstr "Gun mheadhanan fhathast"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Gun teachdaireachdan fhathast"
@@ -7378,12 +7544,12 @@ msgstr "Gun ainm"
msgid "No notifications yet!"
msgstr "Chan eil brath sam bith ann fhathast!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Chan eil gin"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Chan eil gin"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Cha robh toradh ann"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Cha robh toradh ann"
@@ -7509,10 +7675,6 @@ msgstr "Dealbhan dlùth-chaidreach gun aonta"
msgid "Non-sexual Nudity"
msgstr "Lomnochd neo-fheiseil"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Chan eil gin"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "Chan eil seo ri fhaighinn air an ùrlar seo."
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Cha deach a lorg"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Ro thràth airson a phostadh? Cùm rudan mar seo mar dhreachdan gus am bi iad deiseil agad uile gu lèir."
@@ -7548,44 +7710,31 @@ msgstr "An aire: Chan fhaic ach luchd-cleachdaidh a tha clàraichte a-staigh seo
msgid "Nothing saved yet"
msgstr "Cha deach dad a shàbhaladh fhathast"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Roghainnean nam brathan"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Fuaimean nam brathan"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Brathan"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Brathan mu rud sam bith eile, can nuair a chuir cuideigin gu feum pacaid-tòiseachaidh agad."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "an-dràsta"
@@ -7601,7 +7750,7 @@ msgstr "Feumaidh tu àireamh fòn-làimhe a chur ann"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Dheth"
@@ -7623,7 +7772,8 @@ msgstr "Ceart ma-thà"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "air <0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Ath-shuidheachadh a’ bhòrdachaidh"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Tha co-dhiù aon phost ro fhada ’s chan urrainn dhuinn a shàbhaladh mar dhreachd. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Faodaidh dreachd a bhith # charactar a dh’fhaid air a’ char as motha.} two {Faodaidh dreachd a bhith # charactar a dh’fhaid air a’ char as motha.} few {Faodaidh dreachd a bhith # caractaran a dh’fhaid air a’ char as motha.} other {Faodaidh dreachd a bhith # caractar a dh’fhaid air a’ char as motha.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon video."
@@ -7685,6 +7835,26 @@ msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon video."
msgid "Only {0} can reply."
msgstr "Chan fhaod ach {0} freagairt."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Dìreach luchd-leantainn a tha mise gan leantainn cuideachd"
msgid "Only image files are supported"
msgstr "Chan eil taic ach ri faidhlichean dhealbhan"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Chan eil taic ach ri faidhlichean WebVTT (.vtt)"
@@ -7712,7 +7892,7 @@ msgstr "Ìoc, chaidh rudeigin ceàrr!"
msgid "Oops!"
msgstr "Ìoc!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Fosgail cruthadair nan avatar"
@@ -7720,12 +7900,17 @@ msgstr "Fosgail cruthadair nan avatar"
msgid "Open camera"
msgstr "Fosgail an camara"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Fosgail roghainnean nan còmhraidhean"
@@ -7739,16 +7924,16 @@ msgstr "Fosgail an clàr-taice air an taobh"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Fosgail ròghnaichear nan emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Fosgail sgrìn an fhiosrachaidh mun inbhir"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Fosgail clàr-taice roghainnean an inbhir"
@@ -7760,13 +7945,17 @@ msgstr "Fosgail liosta shlàn nan emoji"
msgid "Open Germ DM"
msgstr "Fosgail Germ DM"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Fosgail an ceangal ri {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Fosgail a’ phacaid"
msgid "Open post options menu"
msgstr "Fosgail clàr-taice roghainnean a’ phuist"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Fosgail a’ phròifil"
@@ -7817,6 +8006,10 @@ msgstr "Fosgail duilleag an leabhair-sgeulachd"
msgid "Open system log"
msgstr "Fosgail log an t-siostaim"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Fosglaidh seo mion-fhiosrachadh a bharrachd mu innteart dì-bhugachaidh"
msgid "Opens alt text dialog"
msgstr "Fosglaidh seo còmhradh na roghainn teacsa"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Fosglaidh seo an camara air an uidheam"
@@ -7858,22 +8051,24 @@ msgstr "Fosglaidh seo an uinneag sgrìobhaidh"
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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Fosglaidh seo an sruth airson cunntas Bhluesky ùr a chruthachadh"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
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"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr "Fosglaidh seo ròghnaichear nan dealbhan"
msgid "Opens link {0}"
msgstr "Fosglaidh seo an ceangal {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Fosglaidh seo còmhradh an t-srutha bheò"
@@ -7919,9 +8114,9 @@ msgstr "Fosglaidh seo uinneag sgrìobhadh nam post"
msgid "Opens this draft in the composer"
msgstr "Fosglaidh seo an dreachd san uinneag sgrìobhaidh"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Fosglaidh seo a’ phròifil"
@@ -7997,12 +8192,12 @@ msgstr "Am post sa bhlog againn"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Fhuair an sgioba modarataireachd againn an aithris a chuir thu thugainn."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Thug na modaratairean againn sùil air aithrisean a fhuair sinn is chuir iad romhpa cead-inntrigidh do chabadaich air Bluesky a thoirt air falbh uat."
@@ -8010,16 +8205,17 @@ msgstr "Thug na modaratairean againn sùil air aithrisean a fhuair sinn is chuir
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Cha deach an duilleag a lorg"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Cha deach an duilleag a lorg"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Cuir a’ video na stad"
msgid "People"
msgstr "Daoine"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Daoine a tha @{0} a’ leantainn"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Daoine a leanas ri @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Daoine a tha mi gan leantainn"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Dealbhan do dh’inbhich."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Prìnich an t-inbhir"
@@ -8152,7 +8348,7 @@ msgstr "Prìnich an t-inbhir"
msgid "Pin to home"
msgstr "Prìnich ris an dachaigh"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Prìnich ris an dachaigh"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Prìnichte"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "Chaidh {0} a phrìneachadh ris an dachaigh"
@@ -8236,7 +8432,7 @@ msgstr "Tagh làmhrachan dhut."
msgid "Please choose your password."
msgstr "Tagh facal-faire."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Briog air a’ cheangal sa phost-d a chuir sinn thugad airson an seòladh puist-d ùr agad a dhearbhadh. Seo ceum cudromach a nì cinnteach gum faigh thu làn-chothrom air Bluesky fhathast."
@@ -8244,7 +8440,7 @@ msgstr "Briog air a’ cheangal sa phost-d a chuir sinn thugad airson an seòlad
msgid "Please complete the verification captcha."
msgstr "Coilean an Captcha airson dearbhadh a dhèanamh."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Dearbh an seòladh puist-d agad mus luchdaich thu suas videothan."
@@ -8265,14 +8461,14 @@ msgstr "Cuir a-steach facal-faire. Feumaidh e a bhith co-dhiù 8 caractaran a dh
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Thoir ainm àraidh air an fhacal-fhaire aplacaid seo no cleachd ainm a thuaiream againne."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Cuir a-steach còd dligheach."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Cuir a-steach seòladh puist-d dligheach."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Cuir a-steach seòladh puist-d buan is dligheach. Feumaidh tu am post-d seo a-rithist san àm ri teachd."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Cuir a-steach an còd a chuir sinn gu <0>{0}0> gu h-ìosal."
@@ -8293,7 +8489,7 @@ msgstr "Cuir a-steach an còd a chuir sinn gu <0>{0}0> gu h-ìosal."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Cuir a-steach an còd a fhuair thu agus am facal-faire ùr a bu toil leat cleachdadh."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Cuir a-steach an còd tèarainteachd a chuir sinn gu seòladh an t-seann phuist-d agad."
@@ -8306,7 +8502,7 @@ msgstr "Cuir a-steach an seòladh puist-d agad."
msgid "Please enter your invite code."
msgstr "Cuir a-steach an còd cuiridh agad."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Cuir a-steach an seòladh puist-d ùr agad."
@@ -8323,7 +8519,7 @@ msgstr "Cuir a-steach an t-ainm-cleachdaiche agad"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Mìnich carson a chuir {0} an leubail seo ris air mhearachd nad bheachd-sa"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Mìnich carson a chaidh a’ chabadaich agad a chur à comas air mhearachd nad bheachd-sa"
@@ -8366,7 +8562,7 @@ msgstr "Cleachd an aplacaid stannardach airson luchd-aithne ion-phortach."
msgid "Please use the native app to sync your contacts."
msgstr "Cleachd an aplacaid againne airson an luchd-aithne agad a shioncronachadh."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Dearbh am post-d agad"
@@ -8383,7 +8579,7 @@ msgstr "Poileataigs"
msgid "Porn"
msgstr "Pòrnografachd"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Postaich"
@@ -8403,12 +8599,12 @@ msgstr "Postaich dealbh"
msgid "Post a video"
msgstr "Postaich video"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Postaich na h-uile"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Chaidh am post a bhacadh"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Post le @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Chaidh am post a sguabadh às"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Dh’fhàillig luchdadh suas a’ phuist. Thoir sùil air a’ cheangal ris an eadar-lìon agad is feuch ris a-rithist."
@@ -8454,7 +8650,7 @@ msgstr "Chaidh am post a chur am falach leat fhèin"
msgid "Post interaction settings"
msgstr "Roghainnean eadar-ghabhail a’ phuist"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Roghainnean eadar-ghabhail a’ phuist"
@@ -8464,8 +8660,8 @@ msgstr "Roghainnean eadar-ghabhail a’ phuist"
msgid "Post language selection"
msgstr "Taghadh cànain a’ phuist"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Chan eil am post prìnichte tuilleadh"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "’S urrainn dhut puist a mhùchadh ri linn teacsa a th’ annta, nan ta
msgid "Posts hidden"
msgstr "Chaidh na puist a chur am falach"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Puist, freagairtean"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Ceangal a dh’fhaodadh a bhith meallta"
@@ -8528,6 +8719,7 @@ msgstr "Dèan brùthadh airson feuchainn ri ath-cheangal"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Dèan brùthadh airson feuchainn ris a-rithist"
@@ -8536,7 +8728,7 @@ msgstr "Dèan brùthadh airson feuchainn ris a-rithist"
msgid "Press to view followers of this account that you also follow"
msgstr "Dèan brùthadh is chì thu na daoine a leanas ris a’ chunntas seo a tha thusa a’ leantainn riutha cuideachd"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Ro-sheall"
@@ -8559,21 +8751,20 @@ msgstr "Prìobhaideachd"
msgid "Privacy and security"
msgstr "Prìobhaideachd ⁊ tèarainteachd"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Prìobhaideachd ⁊ tèarainteachd"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Roghainnean na prìobhaideachd is na tèarainteachd"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ 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:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "A’ pròiseasadh an GIF…"
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "A’ pròiseasadh a’ video…"
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Ga phròiseasadh…"
@@ -8602,8 +8793,8 @@ msgstr "Ga phròiseasadh…"
msgid "profile"
msgstr "pròifil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Foillsich am post"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Foillsich na puist"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Foillsich na freagairtean"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Foillsich an fhreagairt"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Push"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Brathan push"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
-msgstr "Push, a h-uile duine"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "Push, daoine a tha thu gan leantainn"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "Chaidh an còd QR a luchdadh a-nuas!"
msgid "QR code saved to your camera roll!"
msgstr "Chaidh an còd QR a shàbhaladh ann an albam a’ chamara agad!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Brathan mu luaidh"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Tha luaidhean air puist à comas"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Luaidhean"
@@ -8733,11 +8920,11 @@ msgstr "Seachad air a’ chrìoch. Feuch ris a-rithist an ceann greis."
msgid "Re-attach quote"
msgstr "Ceangail an luaidh ris as ùr"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr "Cuir {emoji} mar fhrith-fhreagairt"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "leugh mar a dh’obraicheas na criathragan luirg againn"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Leugh am post air a’ bhloga"
@@ -8812,11 +8999,11 @@ msgstr "Fìor-dhaoine."
msgid "Reason for appeal"
msgstr "Adhbhar an ath-thagraidh"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Faigh brathan am broinn na h-aplacaid"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Faigh brathan push"
@@ -8841,6 +9028,10 @@ msgstr "Na mholamaid"
msgid "Reconnect"
msgstr "Ath-cheangail"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Diùlt"
msgid "Reject chat request"
msgstr "Diùlt an t-iarrtas cabadaich"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Ath-luchdaich na còmhraidhean"
@@ -8896,17 +9087,17 @@ msgstr "Thoir an cunntas air falbh"
msgid "Remove all contacts"
msgstr "Thoir air falbh an luchd-aithne air fad"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Thoir an ceanglachan air falbh"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Thoir an t-avatar air falbh"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Thoir a’ bhratach air falbh"
@@ -8914,8 +9105,9 @@ msgstr "Thoir a’ bhratach air falbh"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Thoir an leabachadh air falbh"
@@ -8933,8 +9125,8 @@ msgstr "A bheil thu airson an t-inbhir a thoirt air falbh?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Air a thoirt air falbh o na puist a shàbhail thu"
msgid "Remove from your feeds?"
msgstr "A bheil thu airson a thoirt air falbh o na h-inbhirean agad?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Thoir an dealbh air falbh"
@@ -9009,11 +9201,11 @@ msgstr "Thoir an dearbhadh air falbh"
msgid "Remove your verification for this account?"
msgstr "A bheil thu airson an dearbhadh a rinn thu air a’ chunntas seo a thoirt air falbh?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Air a thoirt air falbh leis an ùghdar"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Air a thoirt air falbh leat-sa"
@@ -9035,7 +9227,7 @@ msgstr "Air a thoirt air falbh o na puist a shàbhail thu"
msgid "Removed from starter pack"
msgstr "Air a thoirt air falbh on phacaid tòiseachaidh"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Fhreagair iad thu"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Freagairtean"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Freagair"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Freagair ({0, plural, one {# fhreagairt} two {# fhreagairt} few {# freagairtean} other {# freagairt}})"
@@ -9125,10 +9316,6 @@ msgstr "Chaidh an fhreagairt a chur am falach le ùghdar an t-snàithlein"
msgid "Reply Hidden by You"
msgstr "Chaidh an fhreagairt a chur am falach leat-sa"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Brathan mu fhreagairtean"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "’S e ùghdar an t-snàithlein a thaghas roghainnean nam freagairtean"
@@ -9146,9 +9333,9 @@ msgstr "Chaidh faicsinneachd na freagairt ùrachadh"
msgid "Reply was successfully hidden"
msgstr "Chaidh an fhreagairt a chur am falach"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Dèan aithris"
@@ -9164,13 +9351,13 @@ msgstr "Dèan aithris air a’ chunntas"
msgid "Report conversation"
msgstr "Dèan aithris air a’ chòmhradh"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Dèan aithris air a’ chòmhradh"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Dèan aithris air an inbhir"
@@ -9179,7 +9366,7 @@ msgstr "Dèan aithris air an inbhir"
msgid "Report list"
msgstr "Dèan aithris air an liosta"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Dèan aithris air an teachdaireachd"
@@ -9199,8 +9386,8 @@ msgstr "Dèan aithris air a’ phacaid tòiseachaidh"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Chaidh aithris a chur a-steach"
@@ -9213,7 +9400,7 @@ msgstr "Dèan aithris air a’ chòmhradh seo"
msgid "Report this feed"
msgstr "Dèan aithris air an inbhir seo"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Dèan aithris air an liosta seo"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Dèan aithris air an t-sruth bheò seo"
@@ -9256,10 +9443,6 @@ msgstr "Ath-phostaich"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Ath-phostaich ({0, plural, one {air ath-phostadh # turas} two {air ath-phostadh # thuras} few {air ath-phostadh # turais} other {air ath-phostadh # turas}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Brathan mu ath-phostadh"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Rinn thu ath-phostadh"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Ath-phostadh"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Ath-phostaidh a’ phuist seo"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Ath-phostadh de rud a dh’ath-phostaich thusa"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Brathan mu ath-phostadh de rud a dh’ath-phostaich thusa"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Iarr còd"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Spàrr air daoine roghainn teacsa a chur an sàs mus gabh rud a phostadh"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Spàrr ort fhèin còd puist-d a chleachdadh airson clàradh a-steach gun chunntas agad."
@@ -9328,7 +9534,11 @@ msgstr "Riatanach aig an t-solaraiche seo"
msgid "Required in your region"
msgstr "Riatanach far a bheil thusa"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Cuir às ùr"
@@ -9393,15 +9603,16 @@ msgstr "Feuchaidh seo ris a’ ghnìomh mu dheireadh a-rithist is e air fàillig
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Feuchaidh seo ris a’ ghnìomh mu dheireadh a-rithist is e air fàillig
msgid "Retry"
msgstr "Feuch ris a-rithist"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Feuch is luchdaich roghainnean na h-aithrise as ùr"
@@ -9426,14 +9637,14 @@ msgstr "Feuch is luchdaich roghainnean na h-aithrise as ùr"
msgid "Return to previous page"
msgstr "Till gun duilleag roimhpe"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Tillidh seo thu gun duilleag-dhachaigh"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Tillidh seo thu gun duilleag roimhpe"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Sàbhail an latha-breith"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Sàbhail na h-atharraichean"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "A bheil thu airson na h-atharraichean a shàbhaladh?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Sàbhail an dreachd"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "A bheil thu airson an dreachd a shàbhaladh?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Sàbhail an còd QR"
msgid "Save these options for next time"
msgstr "Sàbhail na roghainnean seo ach am bi iad agam an ath-thuras"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Sàbhail sna h-inbhirean agam"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Air a shàbhaladh"
msgid "Saved Feeds"
msgstr "Inbhirean a shàbhail thu"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Puist a shàbhail thu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Air a shàbhaladh sna h-inbhirean agad"
@@ -9551,8 +9764,8 @@ msgstr "Air a shàbhaladh sna h-inbhirean agad"
msgid "Say hello!"
msgstr "Can halò!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr "Sgrolaich chun an taoibh dheis"
msgid "Scroll to top"
msgstr "Sgrolaich gun bhàrr"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Lorg"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Dèan lorg sna puist aig {0}"
@@ -9667,7 +9880,7 @@ msgstr "Lorg sna puist agam"
msgid "Search posts"
msgstr "Lorg sna puist"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Lorg sna pròifilean"
msgid "Search..."
msgstr "Lorg..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Luirg airson pròifilean"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Tha feum air ceum tèarainteachd"
@@ -9759,7 +9972,7 @@ msgstr "Tagh {langName}"
msgid "Select a color"
msgstr "Tagh dath"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Tagh adhbhar"
@@ -9828,7 +10041,7 @@ msgstr "Tagh GIF"
msgid "Select GIF \"{0}\""
msgstr "Tagh an GIF “{0}”"
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Tagh cànan…"
msgid "Select languages"
msgstr "Tagh cànain"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Tagh seirbheis modarataireachd"
@@ -9904,11 +10117,11 @@ msgstr "Tagh na rudan sa bheil ùidh agad gu h-ìosal"
msgid "Select your preferred language for translations in your feed."
msgstr "Tagh an cànan as fheàrr leat airson eadar-theangachadh san inbhir agad."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Tagh na seanailean as fheàrr leat airson brathan"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "Chan urrainnear iomadh seòrsa de mheadhanan a thaghadh aig an aon àm."
@@ -9921,9 +10134,9 @@ msgstr "Fèin-dochann no giùlan cunnartach"
msgid "Send code"
msgstr "Cuir an còd"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Cuir post-d"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Cuir do bheachdan"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Cuir an teachdaireachd"
@@ -9952,7 +10165,7 @@ msgstr "Cuir am post gu {name}"
msgid "Send post to..."
msgstr "Cuir am post gu…"
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Cuir an aithris gu {title}"
@@ -9960,7 +10173,7 @@ msgstr "Cuir an aithris gu {title}"
msgid "Send the message from your phone"
msgstr "Cuir an teachdaireachd on fhòn agad"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Cuir mar theachdaireachd dhìreach"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr "Suidhich latha do bhreith gu h-ìosal agus chan fhada gus am bi cead aga
msgid "Sets email for password reset"
msgstr "Suidhichidh seo am post-d airson ath-shuidheachadh an fhacail-fhaire"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Roghainnean"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Roghainnean a thaobh gnìomhachd dhaoine eile"
@@ -10030,39 +10243,39 @@ msgstr "Roghainnean a thaobh gnìomhachd dhaoine eile"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Na roghainnean a bheir cead do dhaoine eile brathan fhaighinn mu na puist agad"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Roghainnean nam brathan mu dhaoine a dh’innis gur toil leotha rud"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Roghainnean nam brathan mu iomradh"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Roghainnean nam brathan mu luchd-leantainn ùr"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Roghainnean nam brathan mu rud sam bith eile"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Roghainnean nam brathan mu dhaoine a dh’innis gur toil leotha rud a dh’ath-phostaich thusa"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Roghainnean nam brathan mu ath-phostadh de rud a dh’ath-phostaich thusa"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Roghainnean nam brathan mu luaidhean"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Roghainnean nam brathan mu fhreagairtean"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Roghainnean nam brathan mu ath-phostadh"
@@ -10079,10 +10292,12 @@ msgstr "Gnìomhachd fheiseil no lomnochd earotaigeach."
msgid "Sexually Suggestive"
msgstr "Leth-fheiseil"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Co-roinn DID an ùghdair"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr "Co-roinn post aig:// URI"
msgid "Share QR code"
msgstr "Co-roinn an còd QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Co-roinn an t-inbhir seo"
@@ -10151,7 +10366,7 @@ msgstr "Co-roinn air…"
msgid "Share your contacts to find friends"
msgstr "Co-roinn an luchd-aithne agad leinn is faigh lorg air do charaidean"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Deuchainn nan co-roghainnean"
@@ -10167,16 +10382,16 @@ msgstr "Seall an roghainn teacsa"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Seall e co-dhiù"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Seall rabhadh is criathraich às na h-inbhirean e"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Leig ris nuair a bhios tu ri craoladh beò"
@@ -10297,15 +10512,17 @@ msgstr "Seallaidh seo an t-susbaint"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Clàraich a-steach no cruthaich cunntas"
msgid "Sign in or create your account to join the conversation!"
msgstr "Clàraich a-steach no cruthaich cunntas is thig a chòmhradh!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Clàraich a-steach gu cunntas nach eil air an liosta"
@@ -10337,6 +10558,10 @@ msgstr "Clàraich a-steach gu cunntas nach eil air an liosta"
msgid "Sign in to Bluesky or create a new account"
msgstr "Clàraich a-steach gu Bluesky no cruthaich cunntas ùr"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Clàraich a-steach airson am post seo fhaicinn"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Clàraich a-mach"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Clàraich a-mach"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "A bheil thu airson clàradh a-mach?"
@@ -10391,7 +10616,7 @@ msgstr "Leum seachad air"
msgid "Skip contact sharing and continue to the app"
msgstr "Leum seachad air co-roinneadh an luchd-aithne ’s lean air adhart chun na h-aplacaid"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr "Leum seachad air an fhàilteachadh is tòisich air an cunntas agad a chl
msgid "Skip to next step"
msgstr "Leum air adhart chun an ath-cheum"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Nas lugha"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Cuiridh seo an cuimhneachan na dhùsal"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Chuir cuideigin {0} mar fhrith-fhreagairt"
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Bha rudeigin ann nach robh buileach ceart leis an dàta a bha thu airson aithris a dhèanamh air. Cuir fios gu sgioba na taice."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Chaidh rudeigin ceàrr"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Chaidh rudeigin ceàrr!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Chaidh rudeigin ceàrr. Feuch ris a-rithist ann am mionaid."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Chaidh rudeigin ceàrr. Feuch ris a-rithist."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Mearachd air choireigin? Innis dhuinn."
@@ -10568,7 +10798,7 @@ msgstr "Spòrs"
msgid "Start a conversation, and it will appear here."
msgstr "Tòisich air còmhradh is nochdaidh e an-seo."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Tòisich air cabadaich ùr"
@@ -10582,17 +10812,17 @@ msgstr "Tòisich air daoine a chur ris"
msgid "Start adding people!"
msgstr "Tòisich air daoine a chur ris!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Tòisich air cabadaich le {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Pacaid tòiseachaidh"
@@ -10654,12 +10884,12 @@ msgstr "Chaidh an stòras fhalamhachadh, feumaidh tu an aplacaid ath-thòiseacha
msgid "Stored as part of a secure code for matching with others"
msgstr "Ga chumail mar phàirt de chòd tèarainte airson maidseadh le daoine eile a dhèanamh"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Leabhar-sgeulachd"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 "Ri sruthadh air Twitch? Leig ris air Bluesky gu bheil thu beò agus nochd baidse air an avatar agad. Ma bhriogas cuideigin air, thèid an ath-stiùireadh chun an t-srutha agad."
@@ -10671,8 +10901,8 @@ msgstr "Ri sruthadh air Twitch? Leig ris air Bluesky gu bheil thu beò agus noch
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Cuir"
@@ -10684,9 +10914,9 @@ msgstr "Cuir an t-ath-thagradh"
msgid "Submit Appeal"
msgstr "Cuir an t-ath-thagradh"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Cuir an aithris thugainn"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Fo-sgrìobh"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Soirbheas"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Soirbheas!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Chaidh a dhearbhadh"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Laighe na grèine"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Taic"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Chan eil taic ris a’ ghleus seo nad dhùthaich aig an ìre-sa! Thoir sùil a-rithist uaireigin eile."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Leum gu cunntas eile"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Leum eadar cunntasan"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Geàrr leum gu {0}"
@@ -10828,7 +11062,7 @@ msgstr "Tagaichean a-mhàin"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Thoir gnogag gu h-ìosal airson cothrom dhan ionad GPS a thoirt dha Bluesky. Leis an dàta seo, ’s urrainn dhuinn susbaint is gleusan a bhuineas dhan àite far a bheil thusa a shealltann dhut."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr "Thoir gnogag airson innse gu bheil thu a’ tuigsinn na tha ùr agus ag
msgid "Tap to close context menu"
msgstr "Thoir gnogag airson an clàr-taice co-theacsail a dhùnadh"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Thoir gnogag airson a leigeil seachad"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Na teirmichean"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Teacsa ⁊ tagaichean"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Raon ion-chur an teacsa"
@@ -11049,6 +11301,11 @@ msgstr "Thèid na roghainnean a leanas a chleachdadh a ghnàth ’s tu a’ crut
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "Tha na laghan far a bheil thu a’ sparradh oirnn dearbhadh gur e inbheach a th’ annad mus fhaigh thu cothrom air gleusan àraidh. Thoir gnogag airson barrachd fiosrachaidh."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Chaidh poileasaidh na prìobhaideachd a ghluasad gu <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "Bha duilgheadas ann leis a’ cheangal ris an eadar-lìon, feuch ris a-rithist"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "Bha duilgheadas ann leis a’ cheangal ris an eadar-lìon, feuch ris a-r
msgid "There was an issue contacting the server"
msgstr "Cha b’ urrainn dhuinn conaltradh leis an fhrithealaiche"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Cha b’ urrainn dhuinn conaltradh leis an fhrithealaiche, thoir sùil air a’ cheangal ris an eadar-lìon is feuch ris a-rithist."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Cha b’ urrainn dhuinn na brathan fhaighinn dhut. Thoir gnogag airson feuchainn ris a-rithist."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Cha b’ urrainn dhuinn na puist fhaighinn dhut. Thoir gnogag airson feuchainn ris a-rithist."
@@ -11161,7 +11420,7 @@ msgstr "Cha b’ urrainn dhuinn am fiosrachadh seirbheise agad fhaighinn dhut"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Cha b’ urrainn dhuinn an t-inbhir seo a thoirt air falbh. Thoir sùil air a’ cheangal ris an eadar-lìon agad is feuch ris a-rithist."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Thèid an t-ath-thagradh seo a chur gu <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Thèid an t-ath-thagradh seo a chur gu seirbheis modarataireachd Bhluesky."
@@ -11263,7 +11522,7 @@ msgstr "Thèid an t-ath-thagradh seo a chur gu seirbheis modarataireachd Bhluesk
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "Cho-dhùin an t-ùghdar seo nach fhaic ach daoine a tha clàraichte a-staigh na puist aca."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "Bheir am putan seo comas do dhaoine eile aplacaid Germ DM fhosgladh is teachdaireachd a chur thugad. Is urrainn dhut co-dhùnadh am faicear seo san aplacaid Germ DM no ’s urrainn dhut an cunntas Bluesky agad a dhì-cheangal o Germ DM uile gu lèir le bhith a’ putadh air a’ phutan gu h-ìosal."
@@ -11271,7 +11530,12 @@ msgstr "Bheir am putan seo comas do dhaoine eile aplacaid Germ DM fhosgladh is t
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Chan eil an t-susbaint seo ri fhaighinn a chionn ’s gu bheil cleachdai
msgid "This content is not viewable without a Bluesky account."
msgstr "Chan fhaicear an t-susbaint seo as aonais cunntas Bhluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Seo còmhradh aig cunntas a chaidh a sguabadh às no a chur à gnìomh.
msgid "This draft will be permanently deleted."
msgstr "Thèid an dreachd seo a sguabadh às gu buan."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Tha am post-d seo co-cheangailte ris a’ chunntas agad mu thràth."
@@ -11360,7 +11628,7 @@ msgstr "Chan eil an t-inbhir seo air loidhne tuilleadh. Tha sinn a’ sealltainn
msgid "This handle is reserved. Please try a different one."
msgstr "Seo làmhrachan glèidhte. Feuch fear eile."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr "Tha am fiosrachadh seo prìobhaideach is chan fhaic luchd-cleachdaidh eile am fiosrachadh seo."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "Seo staid bhàn"
@@ -11377,7 +11657,7 @@ msgstr "Seo staid bhàn"
msgid "This is not a valid link"
msgstr "Chan e ceangal dligheach a tha seo"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr "Tha ainm no tuairisgeul na liosta seo – a chruthaich thu fhèin – a
msgid "This list is empty."
msgstr "Tha an liosta seo falamh."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Chuir ùghdar a’ phuist seo à comas luaidhean air a’ phost."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Thèid an fhreagairt seo a chur ann an earrann fhalaichte aig bonn an t-snàithlein agad is mùchaidh e brathan mu fhreagairtean na dhèidh – an dà chuid dhut-sa is do dhaoine eile."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr "Chan eil ainm-taisbeanaidh aig a’ chleachdaiche seo agus ri linn sin,
msgid "This user doesn't have any followers."
msgstr "Chan eil duine sam bith a’ leantainn a’ chleachdaiche seo."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Bhac an cleachdaiche seo thu. Chan fhaic thu an t-susbaint aca."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Roghainnean an t-snàithlein"
msgid "Threaded"
msgstr "Mar shnàithlean"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Roghainnean nan snàithleanan"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Airson 2FA air a’ phost-d a chur à comas, dearbh gu bheil cead-inntrigidh agad dhan t-seòladh phuist-d."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Airson 2FA air a’ phost-d a chur à comas, dearbh gu bheil cead-inntrigidh agad gu <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Brod nan toradh"
msgid "Top replies first"
msgstr "Brod nam freagairtean an toiseach"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Cuspair"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Videothan a tha a’ treandadh"
msgid "Trolling"
msgstr "Trolladh"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "Èiridh earbsa à dàimhean, coimhearsnachdan is co-chomann agus ri linn sin, tha sinn a’ toirt a-steach gleus <0>an luchd.-dearbhaidh earbsach0>: buidhnean aig am bi comas dearbhadh a dhèanamh."
@@ -11763,11 +12044,15 @@ msgstr "Chan urrainn dhut conaltradh a dhèanamh leis an t-seirbheis agad. Thoir
msgid "Unable to delete"
msgstr "Cha ghabh a sguabadh às"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr "Chan eil seo ri làimh"
msgid "Unavailable feed information"
msgstr "Chan eil fiosrachadh mun inbhir ri fhaighinn"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Dì-bhac an liosta"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Neo-dhèan"
@@ -11872,7 +12157,7 @@ msgstr "Na lean an cunntas tuilleadh"
msgid "Unfollows the user"
msgstr "Ma nì thu seo, cha lean thu ris a’ chleachdaiche tuilleadh"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Gu mì-fhortanach, chan eil taic do dh’aithrisean dhen t-seòrsa seo aig gin dhe na leubailichean a tha fo-sgrìobhadh agad aca."
@@ -11904,13 +12189,13 @@ msgstr "Susbaint inbheach gun leubail"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Susbaint inbheach gun leubail, susbaint dhroch-dhìolach no gun cho-aonta"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
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}})"
@@ -11918,7 +12203,7 @@ msgstr "Cha toil tuilleadh ({0, plural, one {’s toil le # seo} two {’s toil
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Neo-mhùch an còmhradh"
msgid "Unmute list"
msgstr "Neo-mhùch an liosta"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Dì-phrìnich"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Dì-phrìnich an t-inbhir"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Dì-phrìnich on dachaigh"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Dì-phrìnich on liosta mhodarataireachd"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "Chaidh {0} a dhì-phrìneachadh on dachaigh"
@@ -12030,11 +12315,11 @@ 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/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Chan eil taic ri videothan dhen t-seòrsa {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "Ùraich"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Ùraich <0>{displayName}0> sna liostaichean"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Ùraich am post-d"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "Ùraich air {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Ùraich am post-d agad"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Cha b’ urrainn dhuinn faicsinneachd na freagairt ùrachadh"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Luchdaich suas dealbh an àite sin"
@@ -12098,39 +12395,40 @@ msgstr "Luchdaich suas dealbh an àite sin"
msgid "Upload a text file to:"
msgstr "Luchdaich suas faidhle teacsa gu:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Luchdaich suas on chamara"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Luchdaich suas o na faidhlichean"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Luchdaich suas on leabhar-lann"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "A’ luchdadh suas an GIF…"
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "A’ luchdadh suas nan dealbhan…"
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "A’ luchdadh suas dealbhag a’ cheangail…"
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "A’ luchdadh suas a’ video…"
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Chaidh an cleachdaiche a bhacadh"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Liosta luchd-cleachdaidh le {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "Liosta luchd-cleachdaidh le {0}"
@@ -12255,12 +12553,12 @@ msgstr "luchd-cleachdaidh a tha <0>@{0}0> gan leantainn"
msgid "users following <0>@{0}0>"
msgstr "luchd-cleachdaidh a leanas ri <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr "Dh’fhàillig an dearbhadh, feuch ris a-rithist."
msgid "Verification settings"
msgstr "Roghainnean dearbhaidh"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Roghainnean dearbhaidh"
@@ -12304,8 +12602,8 @@ msgstr "Dearbh as ùr"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Dearbh an còd"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Dearbh an clàr DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Dearbh còd a’ phuist-d"
@@ -12349,7 +12647,7 @@ msgstr "A bheil thu airson an cunntas seo a dhearbhadh?"
msgid "Verify your age"
msgstr "Dearbh d’ aois"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Tionndadh {0}"
msgid "Video"
msgstr "Video"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Cha b’ urrainn dhuinn a’ video a phròiseasadh"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Inbhir video"
@@ -12419,7 +12717,7 @@ msgstr "Cha deach a’ video a lorg."
msgid "Video settings"
msgstr "Roghainnean a’ video"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Chaidh a’ video a luchdadh suas"
@@ -12432,18 +12730,18 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videothan"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
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:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Seall"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Seall an t-avatar aig {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Seall a’ phròifil aig {0}"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Seall am mion-fhiosrachadh"
msgid "View full thread"
msgstr "Seall an snàithlean slàn"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Seall am fiosrachadh mu na leubailean seo"
@@ -12522,7 +12828,7 @@ msgstr "Seall barrachd"
msgid "View more trending videos"
msgstr "Seall barrachd videothan a tha a’ treandadh"
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Seall am post"
@@ -12539,10 +12845,10 @@ msgstr "Seall a’ phròifil"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Seall an t-avatar"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "Seall an t-seirbheis leubailidh aig @{0}"
msgid "View this user's verifications"
msgstr "Seall na dhearbh an cleachdaiche seo"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Seall an luchd-cleachdaidh as toil leotha an t-inbhir seo"
@@ -12596,8 +12902,8 @@ msgstr "Seall na cunntasan a mhùch thu"
msgid "View your verifications"
msgstr "Seall an dearbhadh a rinn thu"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Seallaidh seo an dealbh slàn"
@@ -12640,8 +12946,8 @@ msgstr "Rabhadh ron t-susbaint"
msgid "Warn content and filter from feeds"
msgstr "Thoir rabhadh ron t-susbaint is criathraich às na h-inbhirean e"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Coimhead an-dràsta"
@@ -12665,10 +12971,14 @@ msgstr "Cha d’fhuair sinn toradh sam bith leis an taga sin."
msgid "We couldn't find any results for that topic."
msgstr "Cha d’fhuair sinn lorg air toradh sam bith a tha mun chuspair sin."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Cha b’ urrainn dhuinn an còmhradh seo a luchdadh"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Mholamaid dhut co-dhiù dà rud a thaghadh sa bheil ùidh agad."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Chuir sinn post-d gu <0>{0}0> sa bheil ceangal. Briog air a’ cheangal airson dearbhadh a’ phuist-d a choileanadh."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Cha b’ urrainn dhuinn dearbhadh a bheil cead agad videothan a luchdadh suas. Feuch ris a-rithist."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "Innsidh sinn dhut ma gheibh sinn lorg air caraid agad."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Cuiridh sinn post-d gu <0>{0}0> sa bheil ceangal. Briog air a’ cheangal airson dearbhadh a’ phuist-d a choileanadh."
@@ -12779,12 +13089,12 @@ msgstr "Chan urrainn dhuinn tòiseachadh air d’ aois a dhearbhadh sa chunntas
msgid "We're having network issues, try again"
msgstr "Tha duilgheadasan aig an lìonra againn, feuch ris a-rithist"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Tha sinn a’ toirt a-steach ìre eile de dhearbhadh air Bluesky – cromag fhollaiseach."
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr "Tha sinn duilich ach chan fhaigh thu cothrom air an sgrìn seo an-dràsta fhèin."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ 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.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Dè do naidheachd?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Ma bhriogas tu air cromag, chì thu dè na buidhnean a rinn dearbhadh air a’ chunntas seo."
@@ -12878,7 +13188,7 @@ msgstr "Ma bhriogas tu air cromag, chì thu dè na buidhnean a rinn dearbhadh ai
msgid "Who can interact with this post?"
msgstr "Cò aig a bheil cead eadar-ghabhail a dhèanamh leis a’ phost seo?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Cò aig a bheil cead freagairt?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Cò aig a bheil cead-dearbhaidh?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Oich!"
@@ -12939,7 +13249,7 @@ msgstr "Carson bu chòir dhuinn lèirmheas a dhèanamh air a’ phacaid tòiseac
msgid "Why should this user be reviewed?"
msgstr "Carson bu chòir dhuinn lèirmheas a dhèanamh air an chleachdaiche seo?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
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?"
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr "A bheil thu airson seo a shàbhaladh mar dhreachd mus coimhead thu air na dreachdan agad?"
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr "A bheil thu airson seo a shàbhaladh mar dhreachd airson a dheasachadh uaireigin eile?"
@@ -12960,12 +13270,12 @@ msgstr "A bheil thu airson seo a shàbhaladh mar dhreachd airson a dheasachadh u
msgid "Write a post"
msgstr "Sgrìobh post"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Sgrìobh post"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Sgrìobh do fhreagairt"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Chaidh an DID ceàrr a thilleadh leis an fhrithealaiche. Na fhuaras: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "Tha thu airson Bluesky a chleachdadh ann an àite far a bheil an lagh a sparradh oirnn dearbhadh dè an aois a tha thu mus fhaigh thu cothrom air an aplacaid."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr "Tha thu ri sruthadh beò"
msgid "You are no longer live"
msgstr "Chan eil thu ri sruthadh beò tuilleadh"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Chan eil cead agad videothan a luchdadh."
@@ -13117,12 +13428,12 @@ msgstr "’S urrainn dhut an ro-aonta a thoirt air falbh uair sam bith agus an d
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Tha e an urra riut fhèin an dèan brathan cabadaich fuaim ann an roghainnean na cabaich am broinn na h-aplacaid"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "’S urrainn dhut còmhradh beò a leigeil seachad, ge be dè an roghainn a thaghas tu."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Tha gleus againn a-nis a dh’innseas dhut ma phostaicheas daoine àraidh stuth, ma thogras tu. Ma tha thu ag iarraidh brathan mu stuth ùr aig pròifil air choireigin, tadhail air a’ phròifil is cleachd an clag clì air a’ phutan “Ga leantainn”."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "’S urrainn dhut dreachdan a shàbhaladh anns am bi suas ri mìle caractar."
@@ -13139,11 +13455,11 @@ msgstr "’S urrainn dhut dreachdan a shàbhaladh anns am bi suas ri mìle carac
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "’S urrainn dhut dreachdan a shàbhaladh anns am bi suas ri mìle caractar. A bheil thu airson am post seo a thilgeil air falbh mus coimhead thu air na dreachdan agad?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
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:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Chan fhaod thu barrachd air aon video a thaghadh aig an aon àm."
@@ -13155,10 +13471,10 @@ msgstr "Cuir an cunntas agad an gnìomh as ùr airson clàradh a-steach. Chì da
msgid "You can read chat history but can’t send new messages."
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: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."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr ""
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,7 +13482,7 @@ msgstr "’S urrainn dhut suas ri {MAX_IMAGES, plural, one {# dealbh} two {# dhe
msgid "You can update this later from your settings."
msgstr "’S urrainn dhut seo ùrachadh sna roghainnean agad uair sam bith."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "Cha do shàbhail thu inbhir gu ruige seo."
msgid "You got here first"
msgstr "Thusa air thoiseach chàich"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr "Tha atharraichean gun sàbhaladh agad san dreachd seo, a bheil thu airson an sàbhaladh?"
@@ -13336,7 +13656,7 @@ msgstr "Feumaidh tu co-dhiù seachdnar a leantainn mus urrainn dhut pacaid tòis
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "Feumaidh tu cead-inntrigidh do leabhar-lann nam meadhanan agad a thoirt seachad."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "’S mathaid gum b’ fheàirrde dhut an aplacaid ath-thòiseachadh an-dràsta."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Chuir thu {0} mar fhrith-fhreagairt"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "Dh’atharraich thu latha do bhreith o chionn goirid"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Thèid do chlàradh a-mach às gach cunntas agad."
@@ -13390,7 +13710,7 @@ msgstr "Gheibh thu brathan mun t-snàithlean seo a-nis"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Gheibh thu post-d anns am bi còd airson ath-shuidheachadh. Cuir a-steach an còd an-seo agus an uair sin am facal-faire ùr agad."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr "Seo deireadh na susbainte ghnìomhach."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Seo deireadh an inbhir agad! Faigh lorg air barrachd chunntasan a leanas thu."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "Tha uiread a dhreachdan agad ’s a tha ceadaichte"
@@ -13475,11 +13795,11 @@ msgstr "Rinn thu uiread a dh’iarrtas ’s a tha ceadaichte mar-thà. Feuch ris
msgid "You've reached the start of the active content."
msgstr "Seo toiseach na susbainte ghnìomhach."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-diugh (cus dàta)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr "Chaidh an cunntas agad a sguabadh às. Slàn leat, a charaid! ✌️"
msgid "Your account has been suspended"
msgstr "Chaidh an cunntas agad a chur na dhàil"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Chan eil an cunntas agad aosta gu leòr fhathast airson videothan a luchdadh suas. Feuch ris a-rithist an ceann greis."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "’S urrainn dhut ionad-tasgaidh a’ chunntais agad, a’ gabhail a-staigh na clàran dàta poblach air fad, a luchdadh a-nuas mar fhaidhle “CAR”. Cha bhi meadhanan leabaichte, mar dhealbhan, no an dàta prìobhaideach agad san fhaidhle seo agus feumaidh tu greim fhaighinn air seo fa leth."
@@ -13519,7 +13847,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Chaidh a’ chabadaich agad a chur à comas"
@@ -13561,7 +13889,7 @@ msgstr "Am post-d agad"
msgid "Your email appears to be invalid."
msgstr "Tha coltas nach eil am post-d agad dligheach."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Cha deach am post-d agad a dhearbhadh fhathast. Dearbh e ’s faigh làn-chothrom air Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "Tha inbhir nan daoine a tha thu gan leantainn falamh! Lean barrachd dhao
msgid "Your full handle will be <0>@{0}0>"
msgstr "’S e <0>@{0}0> an làmhrachan slàn a bhios agad"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr "Chaidh an t-ionad agad ùrachadh."
msgid "Your muted words"
msgstr "Na faclan a mhùch thu"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "Chaidh am post agad a chur"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "Chaidh na puist agad a chur"
@@ -13635,7 +13963,7 @@ msgstr "Chaidh na puist agad a chur"
msgid "Your preferred language"
msgstr "An cànan as fheàrr leat"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "Dealbh na pròifil agad"
@@ -13648,12 +13976,12 @@ msgstr "Dealbh na pròifil agad ann an cearcallan co-mheadhanach de dhealbhan pr
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Chaidh do fhreagairt a chur"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Thèid an aithris agad a chur gu <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "Thèid an aithris agad a chur gu <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Ma leigeis tu ris dè na rudan sa bheil ùidh agad, bidh e nas fhasa susbaint a shealltainn dhut a bhuineas riut-sa."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/gl/messages.po b/src/locale/locales/gl/messages.po
index 3afc49c208..7352a0037a 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Galician\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minuto} other {# minutos}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# mes} other {# meses}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# segundo} other {# segundos}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr ""
msgid "{0}s"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr "{following} seguindo"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "Non é posíbel enviar mensaxes a {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -860,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Accesibilidade"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Axustes de accesibilidade"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Conta desenmudecida"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Engadir"
@@ -999,8 +1079,8 @@ msgstr "Engadir conta"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Engadir texto alternativo (opcional)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr ""
msgid "Add App Password"
msgstr "Engadir contrasinal de app"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr ""
@@ -1080,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "Engadir palabras silenciadas e etiquetas"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Todas"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Permitir o acceso ás túas mensaxes directas"
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Sesión iniciada como @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Texto alternativo"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "O texto alternativo describe imaxes a persoas cegas ou con baixa visión e axuda a dar máis contexto."
@@ -1387,7 +1467,7 @@ msgstr "Produciuse un erro"
msgid "An error occurred"
msgstr "Ocurreu un erro"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Ocurreu un erro ao comprimir o vídeo."
@@ -1432,11 +1512,11 @@ msgstr "Ocurreu un erro ao gardar o código QR!"
msgid "An error occurred while trying to follow all"
msgstr "Produciuse un erro ao tentar seguir todo"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Un problema non presente nestas opcións"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Ocurreu un erro mentres tentabas abrir as conversas."
msgid "An issue occurred, please try again."
msgstr "Ocurreu un erro. Proba de novo."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Contrasinais da app"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Apelación enviada"
@@ -1632,14 +1716,14 @@ msgstr "Apelar suspensión"
msgid "Appeal Suspension"
msgstr "Apelar suspensión"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Apelar esta decisión"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Tes a certeza de querer eliminar o contrasinal de aplicación \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Tes a certeza de querer desbotar esta publicación?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Reprodución auto. de vídeos e GIFs"
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr "Atrás"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1840,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1877,7 +1963,7 @@ msgstr "Aniversario"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Bloquear conta"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "Bloquear conta?"
msgid "Block accounts"
msgstr "Bloquear contas"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Bloquear estas contas?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Bloquear conta"
@@ -1946,9 +2032,9 @@ msgstr "Bloquear conta"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Bloquear conta"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Bloqueado"
@@ -1964,13 +2050,13 @@ msgstr "Bloqueado"
msgid "Blocked accounts"
msgstr "Contas bloqueadas"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Contas bloqueadas"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Se bloqueas unha conta non poderá responder os teus fíos, mencionarte nin interactuar contigo de ningunha maneira."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky é mellor con amizades!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky elexirá un conxunto de contas recomendadas na túa rede."
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 "Bluesky non amosará o teu perfil ou chíos a persoas que non iniciaran sesión. É posíbel que outras apps non respecten esta solicitude. Isto non fai que a túa conta sexa privada."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2137,23 +2223,30 @@ msgstr "Negocios"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Por {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Por <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Ao crear unha conta, aceptas os <0>Termos de servizo0>."
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Cámara"
@@ -2192,8 +2285,8 @@ msgstr "Cámara"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Cámara"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Cámara"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Cancelar"
@@ -2248,9 +2341,9 @@ msgstr "Cancelar a reactivación e pechar a sesión"
msgid "Cancel search"
msgstr "Cancelar procura"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Non se pode interactuar cunha conta bloqueada"
@@ -2264,7 +2357,7 @@ msgstr "Lexendaxe (.vtt)"
msgid "Captions & alt text"
msgstr "Lexendaxe e texto alternativo"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr "Cambiar alcume"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Conversa"
@@ -2361,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Axustes da conversa"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Axustes da Conversa"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "Elixe esta color como o teu avatar"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr "Preme aquí"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2567,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Preme para reintentar a mensaxe fallida"
@@ -2594,28 +2694,30 @@ msgstr "Preme para reintentar a mensaxe fallida"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Preme para reintentar a mensaxe fallida"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Pechar xanela activa"
msgid "Close alert"
msgstr "Pechar alerta"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Pechar o caixón inferior"
@@ -2657,8 +2763,9 @@ msgstr "Pechar o caixón inferior"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Pechar"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Pechar imaxe"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Pechar esta xanela"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Pecha a alerta de actualización de contrasinal"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Bandas deseñadas"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Directrices da comunidade"
@@ -2740,12 +2855,12 @@ msgstr "Completa o desafío"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Escribir nova publicación"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2753,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr "Redactar resposta"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Comprimindo vídeo..."
@@ -2780,7 +2895,7 @@ msgstr "Configurado en <0>axustes de moderación0>"
msgid "Confirm"
msgstr "Confirmar"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Contido e Multimedia"
msgid "Content and media"
msgstr "Contido e multimedia"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Contido e Multimedia"
@@ -2889,7 +3004,7 @@ msgstr "Fondo do menú contextual, preme para pechar o menú."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "Continuar fío..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Sigue co seguinte paso"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Conversa eliminada"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversa eliminada"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Versión de compilación copiada ao portapapeis"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr ""
msgid "Copy host"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Copiar texto da mensaxe"
@@ -3052,7 +3175,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Política de dereitos de autor"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Non se puido saír deste conversa"
@@ -3094,6 +3217,10 @@ msgstr "Non se puido saír deste conversa"
msgid "Could not load feed"
msgstr "Non se puido cargar esta canle"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Crear"
@@ -3159,7 +3286,7 @@ msgstr "Crear un código QR para o paquete de inicio"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Crea un paquete de inicio"
@@ -3174,13 +3301,14 @@ msgstr "Crea un paquete de inicio para min"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Crea unha conta"
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Crea un avatar"
@@ -3206,7 +3334,7 @@ msgstr "Crea un avatar"
msgid "Create another"
msgstr "Crea outro"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Crear unha conta nova"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Crea un reporte de {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Creado {0}"
@@ -3341,7 +3470,7 @@ msgstr "Por Defecto"
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Eliminar rexistro de declaración de conversa"
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Eliminar conversa"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Borrar para min"
@@ -3399,11 +3528,11 @@ msgstr "Borrar para min"
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Borrar mensaxe"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Borrar mensaxe para min"
@@ -3413,7 +3542,7 @@ msgstr "Borrar a miña conta"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Borrar un chío"
@@ -3434,12 +3563,12 @@ msgstr "Borrar esta listaxe?"
msgid "Delete this post?"
msgstr "Borrar este chío?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Eliminado"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Conta eliminada"
@@ -3507,13 +3636,13 @@ msgstr "Xanela: axustar quen pode interactuar con este chío"
msgid "Dim"
msgstr "Atenuar"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3521,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3534,8 +3663,8 @@ msgstr "Desactivar Correo 2FA"
msgid "Disable haptic feedback"
msgstr "Desactivar a retroalimentación háptica"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Deshabilitado"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Desbotar"
msgid "Discard changes?"
msgstr "Desbotar cambios?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Desbotar borrador?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Desbotar publicación?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Descobre Novas Canles"
msgid "Dismiss"
msgstr "Desbotar"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Desbotar erro"
@@ -3673,7 +3802,7 @@ msgstr "Non inclúe espidos."
msgid "Domain verified!"
msgstr "Dominio verificado!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3681,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Listo"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3741,15 +3873,6 @@ msgstr "Duplo toque para marcar cun \"gústame\""
msgid "Download Bluesky"
msgstr "Descargar Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Descargar ficheiro CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Descargar ficheiro CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Editar"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Editar avatar"
@@ -3847,14 +3978,14 @@ msgstr "Editar avatar"
msgid "Edit Feeds"
msgstr "Editar Canles"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Editar imaxe"
@@ -3868,7 +3999,16 @@ msgstr "Editar axustes de interacción"
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Editar as Miñas Canles"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Editar Persoas"
@@ -3925,7 +4060,7 @@ msgstr "Editar o perfil"
msgid "Edit starter pack"
msgstr "Editar paquete de inicio"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "Editar quen pode responder"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Edita o teu paquete de inicio"
@@ -3971,7 +4106,7 @@ msgstr "Enderezo de correo electrónico"
msgid "Email Resent"
msgstr "Correo electrónico reenviado"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -4006,8 +4141,8 @@ msgstr "Incrusta este chío no teu sitio web. Simplemente copia o seguinte fragm
msgid "Embedded video player"
msgstr "Reprodutor de vídeo incrustado"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Habilitar"
@@ -4025,7 +4160,7 @@ msgstr "Activar contido para persoas adultas"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4038,13 +4173,12 @@ msgstr "Activar medios externos"
msgid "Enable media players for"
msgstr "Reproducir multimedia de"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr "Ingresa un contrasinal"
msgid "Enter a word or tag"
msgstr "Ingresa unha palabra ou etiqueta"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4143,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Erro"
@@ -4185,23 +4319,23 @@ msgstr "Todo o mundo pode responder"
msgid "Everybody can reply to this post."
msgstr "Todo o mundo pode responder a este chío."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Todos"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Todos"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Todos"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "Exclúe ás contas que segues"
msgid "Exit fullscreen"
msgstr "Saír da pantalla completa"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Expandir o texto alt"
@@ -4226,7 +4360,7 @@ msgstr "Expandir o texto alt"
msgid "Expand list of users"
msgstr "Expandir listaxe de persoas"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Expandir ou minimizar o chío completo ao que estás respondendo"
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Esperábase que a URI se resolvera nun rexistro"
@@ -4277,9 +4411,9 @@ msgstr "Medios explícitos ou potencialmente perturbadores."
msgid "Explicit sexual images."
msgstr "Imaxes sexuais explícitas."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4289,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,7 @@ msgstr "Medios externos"
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 "É posíbel que medios externos permitan que outros sitios recopilen datos sobre ti e o teu dispositivo. Non se envía ou solicita ningún tipo de información ata que presiones o botón de \"play\"."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Medios externos"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "Erro ao mudar o nome de usuario. Téntao de novo."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr ""
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Error ao eliminar a mensaxe."
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "Error ao cargar as preferencias das canles."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "Error ao cargar as canles suxeridas."
msgid "Failed to load suggested follows"
msgstr "Error ao cargar as suxerencias de seguimento."
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Error ao fixar o chío."
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Error ao enviar a apelación, por favor, inténtao de novo."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Error ao cambiar o estado de silencio do fío, por favor, inténtao de novo."
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4614,7 +4751,7 @@ msgstr "Error ao actualizar as canles"
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Error ao actualizar os axustes"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Canles"
@@ -4649,7 +4786,7 @@ msgstr "Canles"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Canle por {0}"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Menú de canles"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Canles"
@@ -4739,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "Finalizando"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Procurar contas para seguir"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr "Procurar contas a seguir"
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "Seguido por <0>{0}0> e <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Seguido por <0>{0}0>, <1>{1}1>, e {2, plural, one {# other} other {# others}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Seguidores de @{0} que coñeces"
@@ -4995,19 +5136,16 @@ msgstr "Seguindo a {handle}"
msgid "Following feed preferences"
msgstr "Preferencias das canles de Seguimento"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Preferencias das canles de Seguimento"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Séguete"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Séguete"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Fonte"
@@ -5069,7 +5207,7 @@ msgstr "Esquecéchelo?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr "De <0/>"
msgid "Generate a starter pack"
msgstr "Xera un paquete de inicio"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "Obtén axuda"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Dálle ao teu perfil unha cara bonita"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Volver"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Volver"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Volver ao paso anterior"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Ir ao inicio"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Ir ao inicio"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Ir ao inicio"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Ir á conversa con {0}"
@@ -5299,12 +5440,12 @@ msgstr "Ir ao seguinte"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Ir ao perfil"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "O alcume é longo de máis. Por favor, insire un máis curto."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Cancelo"
@@ -5458,8 +5615,8 @@ msgstr "Cancelo {tag}"
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Axuda"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Axuda a que as persoas saiban que non es un bot subindo unha foto ou creando un avatar."
@@ -5652,18 +5809,18 @@ msgstr "Vaites! Parece que temos problemas para cargar estes datos. Consulta má
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Vaites! Non puidemos cargar ese servizo de moderación."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Espera! Estamos dando acceso a vídeos gradualmente e aínda estás na listaxe de espera. Volve a consultar máis adiante."
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Inicio"
@@ -5721,7 +5878,7 @@ msgstr "Enténdoo"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Se o texto alternativo é longo, alterna o estado expandido do texto alternativo. "
@@ -5757,7 +5914,7 @@ msgstr "Se eliminas esta listaxe, non poderás recuperala."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Se tes o teu propio dominio, podes empregalo como nome de usuario. Isto permíteche auto-verificar a túa identidade. <0>Máis información aquí.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5765,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr "Se eliminas este chío, non poderás recuperalo."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5773,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Se desexas cambiar o teu contrasinal, enviarémosche un código para verificar que esta é a túa conta."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr "Se es desenvolvedor, podes hospedar o teu propio servidor."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Imaxe"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "O código de confirmación 2FA non é válido."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Alcume non válido. Por favor, insire un diferente."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "O Código de Verificación incorrecto"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Por agora só estás ti! Engade máis persoas ao teu paquete inicial buscando arriba."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "Tarefa ID: {0}"
@@ -6083,6 +6257,11 @@ msgstr "Tarefa ID: {0}"
msgid "Jobs"
msgstr "Tarefas"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Tarefas"
msgid "Join Bluesky"
msgstr "Únete a Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Únete á conversa"
msgid "Journalism"
msgstr "Xornalismo"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "Etiquetas na túa conta"
msgid "Labels on your content"
msgstr "Etiquetas no teu contido"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Axustes de Idiomas"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Último"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Aprender máis sobre esta advertencia"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Máis información sobre o que é público en Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "Aprender máis."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Deixar"
@@ -6276,7 +6464,7 @@ msgstr "Deixar conversa"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Deixar conversación"
@@ -6284,13 +6472,13 @@ msgstr "Deixar conversación"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Deixar conversación"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Claro"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -6346,11 +6534,7 @@ msgstr "Dálle «gústame» a 10 chíos"
msgid "Like 10 posts to train the Discover feed"
msgstr "Dálle «gústame» a 10 publicacións para entrenar as canles de Descubrimento."
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Dar «gústame» a esta canle"
@@ -6358,8 +6542,8 @@ msgstr "Dar «gústame» a esta canle"
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Gustoulle a"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Gústame"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Gústame en este chío"
@@ -6409,11 +6589,11 @@ msgstr "Gústame en este chío"
msgid "Linear"
msgstr "Lineal"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Listaxe"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "A listaxe xa non está silenciada"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listaxes"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Cargando..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Rexistro"
@@ -6662,7 +6842,7 @@ msgstr "Parece que che falta unha canle de seguimento. <0>Preme aquí para agreg
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr "Xestiona as túas palabras e etiquetas silenciadas"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
@@ -6698,13 +6877,12 @@ msgstr ""
msgid "Mark as read"
msgstr "Marcar como lido"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Medios que poden resultar perturbadores ou inapropiados para algunhas audiencias."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "persoas mencionadas"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Mencións"
@@ -6775,22 +6949,22 @@ msgstr "Mensaxe {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Mensaxe eliminada"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Mensaxe eliminada"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6813,19 +6987,19 @@ msgstr "A mensaxe é demasiado longa"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Mensaxes"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderación"
@@ -6894,7 +7064,7 @@ msgstr "Listaxe de moderación actualizada"
msgid "Moderation lists"
msgstr "Listaxes de moderación"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Listaxes de Moderación"
@@ -6903,7 +7073,7 @@ msgstr "Listaxes de Moderación"
msgid "moderation settings"
msgstr "axustes de moderación"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Estados de moderación"
@@ -6949,7 +7119,7 @@ msgstr "Filmes"
msgid "Music"
msgstr "Música"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Silenciar"
@@ -6994,7 +7164,7 @@ msgstr "Silenciar a listaxe"
msgid "Mute these accounts?"
msgstr "Silenciar estas contas?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Silenciar fío"
msgid "Mute words & tags"
msgstr "Silenciar palabras e etiquetas"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Contas silenciadas"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Contas Silenciadas"
@@ -7108,8 +7278,8 @@ msgstr "Navega á seguinte pantalla"
msgid "Navigates to your profile"
msgstr "Navega ao teu perfil"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Novo chat"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7174,29 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Novo chío"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Novo chío"
@@ -7262,8 +7428,8 @@ msgstr "Noticias"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "Xa non segues a {0}"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Aínda non hai mensaxes"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "Aínda non hai notificacións!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Sen resultado"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Sen resultados"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Nudez non sexual"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Non se encontrou"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Axustes de notificacións"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Sons de notificacións"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Notificacións"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "agora"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Apagar"
@@ -7623,7 +7772,8 @@ msgstr "Ben"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "en<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Restablecemento da incorporación"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Falta o texto alternativo nun ou máis vídeos."
@@ -7685,6 +7835,26 @@ msgstr "Falta o texto alternativo nun ou máis vídeos."
msgid "Only {0} can reply."
msgstr "Só {0} pode responder."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr "Só se admiten ficheiros de imaxe"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Só se admiten ficheiros WebVTT (.vtt)."
@@ -7712,7 +7892,7 @@ msgstr "Vaites, algo non furrula ben!"
msgid "Oops!"
msgstr "Vaites!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Abrir o creador de avatares"
@@ -7720,12 +7900,17 @@ msgstr "Abrir o creador de avatares"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Abrir as opcións de conversa"
@@ -7739,16 +7924,16 @@ msgstr "Abrir menú lateral"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Abrir o selector de emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Abrir pantalla de información da canle"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Abre o menú de opcións das canles"
@@ -7760,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Abrir ligazón a {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr "Abrir menú de opciones do chío"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr "Abrir pagina de histórico"
msgid "Open system log"
msgstr "Abrir registro do sistema."
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Abre detalles adicionales para una entrada de depuración."
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Abrir cámara do dispositivo"
@@ -7858,22 +8051,24 @@ msgstr "Abrir compositor"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Abrir o fluxo para crear unha nova conta Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
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"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Abrir este perfil"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "O noso equipo de moderación recibiu a túa denuncia."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Os nosos moderadores revisaron os informes e decidiron desactivar o teu acceso ás conversas en Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Os nosos moderadores revisaron os informes e decidiron desactivar o teu
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Non se atopou a páxina"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Non se atopou a páxina"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Pausar vídeo"
msgid "People"
msgstr "Persoas"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Persoas seguidas por @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Persoas siguindo a @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Imaxes pensadas para persoas adultas."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Fixar canle"
@@ -8152,7 +8348,7 @@ msgstr "Fixar canle"
msgid "Pin to home"
msgstr "Fixar no inicio"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fixar no Inicio"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Fixado"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} fixouse á páxina de inicio"
@@ -8236,7 +8432,7 @@ msgstr "Por favor, escolle o teu alcume."
msgid "Please choose your password."
msgstr "Por favor, escolle o teu contrasinal."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "Por favor, completa a verificación CAPTCHA"
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr "Por favor, insire un contrasinal. Este debe ter polo menos 8 caracteres.
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Por favor, insire un nome único para este contrasinal de aplicación ou usa un xerado ao chou por nós."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "Introduce o teu correo electrónico."
msgid "Please enter your invite code."
msgstr "Introduce o teu código de convite."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr "Por favor, insire o teu alcume"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Explica por que cres que esta etiqueta foi aplicada incorrectamente por {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Explica por que cres que se desactivaron incorrectamente as túas conversas"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "Política"
msgid "Porn"
msgstr "Pornografía"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Chiar"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Publicar todo"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Chío de @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Chío eliminado"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Produciuse un erro ao cargar o chío. Comproba a túa conexión a Internet e téntao de novo."
@@ -8454,7 +8650,7 @@ msgstr "Chío ocultado por ti"
msgid "Post interaction settings"
msgstr "Axustes de interacción do chío"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Axustes de interacción da publicación"
@@ -8464,8 +8660,8 @@ msgstr "Axustes de interacción da publicación"
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Chío desfixado"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Os chíos pódense silenciar en función do seu texto, das súas etiquet
msgid "Posts hidden"
msgstr "Chíos ocultos"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "Preme para tentar a conexión"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Preme para reintentar"
@@ -8536,7 +8728,7 @@ msgstr "Preme para reintentar"
msgid "Press to view followers of this account that you also follow"
msgstr "Preme para ver as persoas desta conta que tamén segues"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "Privacidade"
msgid "Privacy and security"
msgstr "Privacidade e seguranza"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privacidade e Seguranza"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Política de privacidade"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Procesando vídeo..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Procesando..."
@@ -8602,8 +8793,8 @@ msgstr "Procesando..."
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "O código QR foi descargado!"
msgid "QR code saved to your camera roll!"
msgstr "O código QR gardouse no carrete da cámara."
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Citas deshabilitadas"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Citas"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Volver a anexar cita"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr "Razón para apelar"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr "Recomendados"
msgid "Reconnect"
msgstr "Reconectar"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Recargar as conversas"
@@ -8896,17 +9087,17 @@ msgstr "Eliminar a conta"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Eliminar anexo"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Eliminar Avatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Eliminar Banner"
@@ -8914,8 +9105,9 @@ msgstr "Eliminar Banner"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Eliminar incrustación"
@@ -8933,8 +9125,8 @@ msgstr "Eliminar canle?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr "Eliminar das túas canles?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Eliminar a imaxe"
@@ -9009,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Eliminado pola persoa autora"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Eliminado por ti"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Respostas"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Responder"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9125,10 +9316,6 @@ msgstr "Resposta oculta pola persoa autora do fío"
msgid "Reply Hidden by You"
msgstr "Resposta ocultada por ti"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "A configuración de resposta é elixida pola persoa autora do fío"
@@ -9146,9 +9333,9 @@ msgstr "Visibilidade da resposta actualizada"
msgid "Reply was successfully hidden"
msgstr "A resposta ocultouse correctamente."
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Denunciar"
@@ -9164,13 +9351,13 @@ msgstr "Denunciar conta"
msgid "Report conversation"
msgstr "Denunciar conversación"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Xanela da denuncia"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Denunciar canle"
@@ -9179,7 +9366,7 @@ msgstr "Denunciar canle"
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Denunciar mensaxe"
@@ -9199,8 +9386,8 @@ msgstr "Denunciar paquete de inicio"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Denuncia enviada"
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Denunciar esta canle"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Denunciar esta listaxe"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Rechouchiar"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Rechouchiado por ti"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "Rechouchíos deste chío"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Require texto alternativo antes de publicar"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Obrigatorio un código de correo para identificarte na túa conta."
@@ -9328,7 +9534,11 @@ msgstr "Obrigatorio para este provedor"
msgid "Required in your region"
msgstr "Obrigatorio na túa rexión"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9393,15 +9603,16 @@ msgstr "Tenta de novo a última acción, que errou"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Tenta de novo a última acción, que errou"
msgid "Retry"
msgstr "Reintentar"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9426,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr "Volver á páxina anterior"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Volve á páxina de inicio"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Volve á páxina anterior"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Gardar cambios"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Gardar código QR"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Gardar nas miñas canles"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "Canles guardadas"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Guardado nas túas canles"
@@ -9551,8 +9764,8 @@ msgstr "Guardado nas túas canles"
msgid "Say hello!"
msgstr "Di ola!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "Desprázate cara arriba"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Buscar"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9667,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Buscar perfís"
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "Selecciona unha cor"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "Seleccionar GIF"
msgid "Select GIF \"{0}\""
msgstr "Seleccionar GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Seleccionar idioma..."
msgid "Select languages"
msgstr "Seleccionar idiomas"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9904,11 +10117,11 @@ msgstr "Seleccione os teus intereses entre as seguintes opcións"
msgid "Select your preferred language for translations in your feed."
msgstr "A que idioma queres traducir os chíos na túa canle."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Enviar correo"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Enviar comentarios"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Enviar mensaxe"
@@ -9952,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr "Enviar chío a..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9960,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Enviar vía mensaxe directa"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Establece o correo electrónico para restablecer o contrasinal"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Axustes"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "Actividade sexual ou nudez erótica."
msgid "Sexually Suggestive"
msgstr "Sexualmente suxestivo"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr "Compartir código QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Compartir esta canle"
@@ -10151,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Probador de Preferencias Compartidas"
@@ -10167,16 +10382,16 @@ msgstr "Ver texto alternativo"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Ver de todas as maneiras"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Mostrar advertencia e filtrar desde as canles"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr "Inicia sesión ou crea a túa conta para unirte á conversa!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Acceder a unha conta que non está na listaxe"
@@ -10337,6 +10558,10 @@ msgstr "Acceder a unha conta que non está na listaxe"
msgid "Sign in to Bluesky or create a new account"
msgstr "Inicia sesión en Bluesky ou crea unha nova conta"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Pechar sesión"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Pechar sesión"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Pechar sesión?"
@@ -10391,7 +10616,7 @@ msgstr "Saltar"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Máis pequeno"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Algo saíu mal"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Algo saíu mal!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Ocorreu un erro? Dínolo."
@@ -10568,7 +10798,7 @@ msgstr "Deportes"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Iniciar un novo chat"
@@ -10582,17 +10812,17 @@ msgstr "Comeza a engadir xente"
msgid "Start adding people!"
msgstr "Comeza a engadir xente!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Iniciar chat con {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Paquete de inicio"
@@ -10654,12 +10884,12 @@ msgstr "O almacenamento borrado, cómpre reiniciar a aplicación agora."
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Libro de contos"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Enviar"
@@ -10684,9 +10914,9 @@ msgstr "Enviar apelación"
msgid "Submit Appeal"
msgstr "Enviar Apelación"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Suscribirse"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Éxito!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Soporte"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Cambiar de conta"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Cambiar de contas"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Cambiar para {0}"
@@ -10828,7 +11062,7 @@ msgstr "Só etiquetas"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Toca para descartar"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Condicións"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Texto e etiquetas"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Campo de entrada de texto"
@@ -11049,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "A Política de Privacidade moveuse a <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "Produciuse un problema ao contactar co servidor"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Houbo un problema ao contactar co servidor. Comproba a túa conexión a Internet e téntao de novo."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Houbo un problema ao recuperar as notificacións. Toca aquí para tentalo de novo."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Houbo un problema ao recuperar os chíos. Toca aquí para tentalo de novo."
@@ -11161,7 +11420,7 @@ msgstr "Houbo un problema recollendo a túa información no servizo"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Produciuse un problema ao eliminar esta canle. Comproba a túa conexión a Internet e téntao de novo."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Esta apelación enviarase a <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Esta apelación enviarase ao servizo de moderación de Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Esta apelación enviarase ao servizo de moderación de Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Este contido non está dispoñíbel porque unha das persoas implicadas b
msgid "This content is not viewable without a Bluesky account."
msgstr "Este contido non se pode ver sen unha conta Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Esta conversa é cunha conta eliminada ou desactivada. Preme para ver as
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr "Esta canle xa non está en liña. No seu lugar, mostramos <0>Descubrir
msgid "This handle is reserved. Please try a different one."
msgstr "Este nome de usuario está reservado. Fai o favor de escoller un diferente."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr "Esta lista está baleira."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "A persoa autora deste chío desactivou os chíos de citas."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Esta resposta ordenarase nunha sección oculta na parte inferior do teu fío e silenciará as notificacións para as respostas posteriores, tanto para ti como para os demais."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr "Esta persoa non ten seguidores."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Esta persoa bloqueoute. Non podes ver o seu contido."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Preferencias de Fíos"
msgid "Threaded"
msgstr "Enfiado"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Preferencias de fíos"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Para desactivar o método 2FA de correo electrónico, verifica o teu acceso ao enderezo de correo electrónico."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11646,12 +11927,12 @@ msgstr "Arriba"
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Tema"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Vídeos en tendencia"
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11763,11 +12044,15 @@ msgstr "Non se puido contactar co teu servizo. Comproba a túa conexión a Inter
msgid "Unable to delete"
msgstr "Non se pode eliminar"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr ""
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11918,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Activar a conversa"
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Desfixar"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Desfixar canle"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Desfixar do inicio"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Desfixar a listaxe de moderación"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} desfixada do Inicio"
@@ -12030,11 +12315,11 @@ msgstr "Cancelar a subscrición a esta etiquetadora"
msgid "Unsubscribed from list"
msgstr "Cancelouse a subscrición da listaxe"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "Actualizar <0>{displayName}0> nas listaxes"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "Actualizar para {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Produciuse un erro ao actualizar a visibilidade das respostas"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Carga unha foto no seu lugar"
@@ -12098,39 +12395,40 @@ msgstr "Carga unha foto no seu lugar"
msgid "Upload a text file to:"
msgstr "Carga un ficheiro de texto a:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Cargar desde a cámara"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Cargar desde ficheiros"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Cargar desde a biblioteca"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Cargando imaxes..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Cargando miniatura da ligazón..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Cargando vídeo..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Listaxe de persoas por {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "persoas seguidas por <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Verificar rexistro DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12349,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr "Vídeo"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Non se puido procesar o vídeo"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Canle de vídeo"
@@ -12419,7 +12717,7 @@ msgstr "Non se encontrou o vídeo."
msgid "Video settings"
msgstr "Axustes do video"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Vídeo cargado"
@@ -12432,18 +12730,18 @@ msgstr "Vídeo: {0}"
msgid "Videos"
msgstr "Vídeos"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Ver o avatar de {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Ver o perfil de {0}"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Ver detalles"
msgid "View full thread"
msgstr "Ver fío completo"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Consulta información sobre estas etiquetas"
@@ -12522,7 +12828,7 @@ msgstr "Ver máis"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "Ver perfil"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Ver o avatar"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "Consulta o servizo de etiquetado proporcionado por @{0}"
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Consulta as persoas ás que lles gusta esta canle"
@@ -12596,8 +12902,8 @@ msgstr "Consulta as túas contas silenciadas"
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12640,8 +12946,8 @@ msgstr "Advertir contido"
msgid "Warn content and filter from feeds"
msgstr "Advirtir contido e filtra desde canles"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr "Non foi posíbel atopar resultados para ese tema."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Non puidemos cargar esta conversa"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Non puidemos determinar se tes permiso para cargar vídeos. Téntao de novo."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "Temos problemas de rede, téntao de novo"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Como queres chamar ao teu paquete de inicio?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Que hai de novo?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12878,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr "Quen pode interactuar con este chío?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Quen pode responder"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Vaia!"
@@ -12939,7 +13249,7 @@ msgstr "Por que se debería revisar este paquete inicial?"
msgid "Why should this user be reviewed?"
msgstr "Por que se debería revisar esta persoa?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Escribe un chío"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Escribe a túa resposta"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "O servidor devolveu un DID incorrecto. Recibido: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr ""
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Non tes permiso para cargar vídeos."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Podes continuar as conversas en curso independentemente da configuración que elixas."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "Podes reactivar a túa conta para continuar iniciando sesión. O teu per
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr "Podes actualizar posteriormente desde as túas preferencias."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "Non tes canles gardadas."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "Debes seguir polo menos a outras sete persoas para xerar un paquete de i
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Sairás da sesión de todas as túas contas."
@@ -13390,7 +13710,7 @@ msgstr "Agora recibirás notificacións deste fío"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Recibirás un correo electrónico cun \"código de restablecemento\". Introduce ese código aquí e, a continuación, introduce o teu novo contrasinal."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Chegaches ao final das túas canles! Busca máis contas que seguir."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Chegaches ao teu límite diario de carga de vídeos (demasiados bytes por hoxe)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr "A túa conta foi suspendida"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "A túa conta aínda non ten suficiente antigüidade para subir vídeos. Por favor, inténtao de novo máis tarde."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "O repositorio da túa conta, que contén todos os rexistros de datos público, pode ser descargado como un ficheiro \"CAR\". Este ficheiro non inclúe ficheiros multimedia incrustados, como imaxes nin os teus datos privados, que deben ser obtidos por separado."
@@ -13519,7 +13847,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "As túas conversas foron deshabilitadas."
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "O teu enderezo electrónico parece non ser válido."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13582,7 +13910,7 @@ msgstr "A seguinte canle está baleira! Sigue a máis persoas para ver o que est
msgid "Your full handle will be <0>@{0}0>"
msgstr "O teu alcume será <0>@{0}0> "
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "As túas palabras silenciadas"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13661,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/haw/messages.po b/src/locale/locales/haw/messages.po
index 6f7deb1e45..d7eb5fb34b 100644
--- a/src/locale/locales/haw/messages.po
+++ b/src/locale/locales/haw/messages.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: haw\n"
"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2026-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Hawaiian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr ""
msgid "{0, plural, one {# month} other {# months}}"
msgstr ""
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr ""
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:203
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:639
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr ""
msgid "{0}s"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr ""
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:850
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:811
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,8 +643,8 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:33
-msgid "{memberCount}/{MEMBER_LIMIT}"
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
+msgid "{memberCount}/{memberLimit}"
msgstr ""
#: src/features/liveNow/utils.ts:10
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:52
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:47
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,6 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -802,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -825,7 +892,11 @@ msgstr ""
msgid "A screenshot of 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:547
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
+msgid "A selected recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -841,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -854,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr ""
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr ""
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -939,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr ""
@@ -993,8 +1079,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1006,16 +1092,16 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1029,7 +1115,7 @@ msgstr ""
msgid "Add App Password"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1037,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1046,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1056,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
+#: src/components/moderation/ReportDialog/index.tsx:528
#: src/components/moderation/ReportDialog/index.tsx:532
-#: src/components/moderation/ReportDialog/index.tsx:536
msgid "Add more details (optional)"
msgstr ""
@@ -1074,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1159,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:550
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1222,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1235,7 +1321,7 @@ msgstr ""
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1272,13 +1358,13 @@ msgstr ""
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1332,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr ""
@@ -1356,7 +1442,7 @@ msgid "Alt Text"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr ""
@@ -1381,7 +1467,7 @@ msgstr ""
msgid "An error occurred"
msgstr ""
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr ""
@@ -1426,11 +1512,11 @@ msgstr ""
msgid "An error occurred while trying to follow all"
msgstr ""
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1455,20 +1541,20 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:56
-msgid "An issue occurred creating the group chat, please try again"
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
+msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:42
-msgid "An issue occurred starting the chat, please try again"
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
+msgid "An issue occurred starting the chat, please try again."
msgstr ""
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
@@ -1484,7 +1570,7 @@ msgstr ""
msgid "An issue occurred, please try again."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1533,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1549,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1591,7 +1681,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr ""
@@ -1612,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr ""
@@ -1626,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr ""
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1669,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1682,23 +1772,23 @@ msgstr ""
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1746,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1761,12 +1851,12 @@ msgstr ""
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1777,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1790,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1834,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:94
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1871,7 +1963,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1881,8 +1973,8 @@ msgstr ""
msgid "Block {displayName}"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:277
-#: src/components/dms/ConvoMenu.tsx:281
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749
#: src/screens/Messages/components/RequestButtons.tsx:149
@@ -1892,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1906,8 +1998,14 @@ msgstr ""
msgid "Block accounts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:147
-msgid "Block and Delete"
+#: src/components/dms/AfterReportDialog.tsx:148
+msgid "Block and delete"
+msgstr ""
+
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:167
+msgctxt "button"
+msgid "Block and leave"
msgstr ""
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
@@ -1922,20 +2020,29 @@ msgstr ""
msgid "Block these accounts?"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:188
-#: src/components/dms/AfterReportDialog.tsx:191
+#: src/components/dms/AfterReportConversationDialog.tsx:221
+#: src/components/dms/AfterReportConversationDialog.tsx:224
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:153
-msgid "Block User"
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:182
+msgctxt "button"
+msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:184
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:196
+#: src/components/dms/AfterReportConversationDialog.tsx:217
+msgid "Block user and/or leave this conversation"
+msgstr ""
+
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr ""
@@ -1943,13 +2050,13 @@ msgstr ""
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -2008,7 +2115,7 @@ msgstr ""
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2032,7 +2139,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:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2116,23 +2223,30 @@ msgstr ""
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:853
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:74
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2160,7 +2274,7 @@ msgstr ""
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr ""
@@ -2171,8 +2285,8 @@ msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2191,10 +2305,10 @@ msgstr ""
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2207,11 +2321,11 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr ""
@@ -2227,9 +2341,9 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -2243,7 +2357,7 @@ msgstr ""
msgid "Captions & alt text"
msgstr ""
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2276,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:449
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2289,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:394
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2323,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr ""
@@ -2340,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2352,31 +2473,35 @@ msgstr ""
msgid "Chat messages - sound"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:199
+#: src/components/dms/ConvoMenu.tsx:216
msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/Navigation.tsx:588
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
+msgid "Chat recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:82
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/components/dms/ConvoMenu.tsx:84
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr ""
@@ -2393,14 +2518,14 @@ msgstr ""
msgid "Chat unlocked"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:201
+#: src/components/dms/ConvoMenu.tsx:218
msgctxt "toast"
msgid "Chat unmuted"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2454,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2508,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2516,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2533,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2542,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2555,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr ""
@@ -2569,24 +2694,30 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
-#: src/components/dms/AfterReportDialog.tsx:93
-#: src/components/dms/AfterReportDialog.tsx:98
+#: src/components/dms/AddMembersFlow.tsx:377
+#: src/components/dms/AfterReportConversationDialog.tsx:91
+#: src/components/dms/AfterReportConversationDialog.tsx:96
+#: src/components/dms/AfterReportConversationDialog.tsx:247
+#: src/components/dms/AfterReportConversationDialog.tsx:252
+#: src/components/dms/AfterReportDialog.tsx:94
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2594,14 +2725,14 @@ msgstr ""
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2618,6 +2749,10 @@ msgstr ""
msgid "Close alert"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr ""
@@ -2628,8 +2763,9 @@ msgstr ""
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr ""
@@ -2643,7 +2779,7 @@ msgid "Close image"
msgstr ""
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2654,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr ""
@@ -2666,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2696,7 +2840,7 @@ msgid "Comics"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr ""
@@ -2711,12 +2855,12 @@ msgstr ""
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr ""
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2724,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr ""
@@ -2751,7 +2895,7 @@ msgstr ""
msgid "Confirm"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2813,7 +2957,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr ""
@@ -2860,7 +3004,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2879,38 +3023,51 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:148
-#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr ""
+#: src/components/dms/AfterReportConversationDialog.tsx:172
+#: src/components/dms/AfterReportConversationDialog.tsx:179
+msgctxt "toast"
+msgid "Conversation left"
+msgstr ""
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2962,6 +3119,7 @@ msgstr ""
msgid "Copy host"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -2992,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr ""
@@ -3017,7 +3175,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr ""
@@ -3030,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3049,8 +3207,9 @@ msgstr ""
msgid "Could not follow all matches. {0}"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:138
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportConversationDialog.tsx:158
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr ""
@@ -3058,13 +3217,17 @@ msgstr ""
msgid "Could not load feed"
msgstr ""
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
msgid "Could not load list"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:205
+#: src/components/dms/ConvoMenu.tsx:222
msgid "Could not mute chat"
msgstr ""
@@ -3103,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr ""
@@ -3123,7 +3286,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr ""
@@ -3138,13 +3301,14 @@ msgstr ""
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3162,7 +3326,7 @@ msgstr ""
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr ""
@@ -3170,7 +3334,7 @@ msgstr ""
msgid "Create another"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3192,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:713
-#: src/components/moderation/ReportDialog/index.tsx:759
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr ""
@@ -3220,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:461
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr ""
@@ -3305,7 +3470,7 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3346,18 +3511,15 @@ msgstr ""
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:194
-#: src/components/dms/AfterReportDialog.tsx:197
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:150
-msgid "Delete Conversation"
-msgstr ""
-
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr ""
@@ -3366,11 +3528,11 @@ msgstr ""
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr ""
@@ -3380,7 +3542,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr ""
@@ -3401,12 +3563,12 @@ msgstr ""
msgid "Delete this post?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:189
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr ""
@@ -3474,13 +3636,13 @@ msgstr ""
msgid "Dim"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3488,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3501,8 +3663,8 @@ msgstr ""
msgid "Disable haptic feedback"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3514,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3527,9 +3689,9 @@ msgstr ""
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3540,19 +3702,19 @@ msgstr ""
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3580,11 +3742,11 @@ msgstr ""
msgid "Dismiss"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr ""
@@ -3640,7 +3802,7 @@ msgstr ""
msgid "Domain verified!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3648,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3667,15 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
-#: src/components/dms/AfterReportDialog.tsx:144
+#: src/components/dms/AfterReportConversationDialog.tsx:164
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3691,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr ""
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3707,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr ""
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr ""
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr ""
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3725,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3789,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3804,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr ""
@@ -3813,14 +3978,14 @@ msgstr ""
msgid "Edit Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr ""
@@ -3834,7 +3999,16 @@ msgstr ""
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3852,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:495
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr ""
@@ -3891,7 +4060,7 @@ msgstr ""
msgid "Edit starter pack"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:494
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3903,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr ""
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr ""
@@ -3937,7 +4106,7 @@ msgstr ""
msgid "Email Resent"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -3972,8 +4141,8 @@ msgstr ""
msgid "Embedded video player"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr ""
@@ -3991,7 +4160,7 @@ msgstr ""
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4004,13 +4173,12 @@ msgstr ""
msgid "Enable media players for"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4057,8 +4225,8 @@ msgstr ""
msgid "Enter a word or tag"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4109,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr ""
@@ -4151,23 +4319,23 @@ msgstr ""
msgid "Everybody can reply to this post."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4183,8 +4351,8 @@ msgstr ""
msgid "Exit fullscreen"
msgstr ""
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr ""
@@ -4192,7 +4360,7 @@ msgstr ""
msgid "Expand list of users"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr ""
@@ -4204,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -4243,9 +4411,9 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4255,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4288,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr ""
@@ -4302,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4320,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4333,7 +4502,7 @@ msgstr ""
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4348,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr ""
@@ -4360,24 +4529,24 @@ msgstr ""
msgid "Failed to delete starter pack"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:343
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4393,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:370
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4422,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4459,16 +4627,15 @@ msgstr ""
msgid "Failed to load suggested follows"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:391
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:357
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4477,7 +4644,7 @@ msgid "Failed to pin post"
msgstr ""
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4491,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4508,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4535,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4546,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr ""
@@ -4555,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:394
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4563,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4580,7 +4751,7 @@ msgstr ""
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr ""
@@ -4607,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr ""
@@ -4615,7 +4786,7 @@ msgstr ""
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr ""
@@ -4628,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr ""
@@ -4652,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr ""
@@ -4705,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4713,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4734,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr ""
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4765,7 +4936,7 @@ msgstr ""
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4910,8 +5081,12 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr ""
@@ -4961,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr ""
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr ""
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr ""
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr ""
@@ -5035,7 +5207,7 @@ msgstr ""
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5052,35 +5224,35 @@ msgstr ""
msgid "Generate a starter pack"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5088,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr ""
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5140,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:180
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr ""
@@ -5179,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr ""
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr ""
@@ -5203,7 +5380,9 @@ msgid "Go back to previous step"
msgstr ""
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr ""
@@ -5213,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr ""
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr ""
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5250,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr ""
@@ -5262,19 +5437,19 @@ msgstr ""
msgid "Go to next"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:255
+#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:251
+#: src/components/dms/ConvoMenu.tsx:268
msgid "Go to user's profile"
msgstr ""
@@ -5286,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5306,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:383
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:350
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:338
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
-#: src/screens/Messages/ConversationSettings/index.tsx:89
+#: src/Navigation.tsx:490
+#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5387,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr ""
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5412,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr ""
@@ -5424,8 +5615,8 @@ msgstr ""
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5449,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr ""
@@ -5618,18 +5809,18 @@ msgstr ""
msgid "Hmmmm, we couldn't load that moderation service."
msgstr ""
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr ""
@@ -5679,7 +5870,6 @@ msgid "I have my own domain"
msgstr ""
#: src/components/dms/BlockedByListDialog.tsx:55
-#: src/components/dms/ReportConversationPrompt.tsx:21
msgid "I understand"
msgstr ""
@@ -5688,7 +5878,7 @@ msgstr ""
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
@@ -5724,7 +5914,7 @@ msgstr ""
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5732,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5740,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5753,23 +5942,33 @@ msgstr ""
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr ""
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5784,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5829,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5848,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5930,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr ""
@@ -5948,6 +6151,10 @@ msgstr ""
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr ""
@@ -5977,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:508
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -5991,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6041,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr ""
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr ""
@@ -6050,6 +6257,11 @@ msgstr ""
msgid "Jobs"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6057,6 +6269,15 @@ msgstr ""
msgid "Join Bluesky"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6066,8 +6287,8 @@ msgstr ""
msgid "Journalism"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6110,7 +6331,7 @@ msgstr ""
msgid "Labels on your content"
msgstr ""
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr ""
@@ -6141,7 +6362,7 @@ msgid "Latest"
msgstr ""
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6196,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr ""
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6206,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6219,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:542
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr ""
@@ -6237,19 +6458,27 @@ msgstr ""
msgid "Leave chat"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:229
-#: src/components/dms/ConvoMenu.tsx:233
-#: src/components/dms/ConvoMenu.tsx:299
-#: src/components/dms/ConvoMenu.tsx:303
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/AfterReportConversationDialog.tsx:229
+#: src/components/dms/AfterReportConversationDialog.tsx:233
+#: src/components/dms/ConvoMenu.tsx:246
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/dms/ConvoMenu.tsx:316
+#: src/components/dms/ConvoMenu.tsx:320
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:174
+msgctxt "button"
+msgid "Leave conversation"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:541
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6286,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -6305,11 +6534,7 @@ msgstr ""
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr ""
@@ -6317,8 +6542,8 @@ msgstr ""
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr ""
@@ -6336,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr ""
@@ -6368,11 +6589,11 @@ msgstr ""
msgid "Linear"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr ""
@@ -6458,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr ""
@@ -6504,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6554,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:522
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:520
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:522
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr ""
@@ -6621,7 +6842,7 @@ msgstr ""
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6646,24 +6867,22 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:241
-#: src/components/dms/ConvoMenu.tsx:245
+#: src/components/dms/ConvoMenu.tsx:258
+#: src/components/dms/ConvoMenu.tsx:262
msgid "Mark as read"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6686,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:28
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr ""
@@ -6734,22 +6949,22 @@ msgstr ""
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6772,19 +6987,19 @@ msgstr ""
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr ""
-#: src/components/dms/MessageItem.tsx:651
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:646
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6797,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6809,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr ""
@@ -6853,7 +7064,7 @@ msgstr ""
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr ""
@@ -6862,7 +7073,7 @@ msgstr ""
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr ""
@@ -6908,7 +7119,7 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:487
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr ""
@@ -6936,8 +7147,8 @@ msgstr ""
msgid "Mute accounts"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:260
-#: src/components/dms/ConvoMenu.tsx:267
+#: src/components/dms/ConvoMenu.tsx:277
+#: src/components/dms/ConvoMenu.tsx:284
msgid "Mute conversation"
msgstr ""
@@ -6953,7 +7164,7 @@ msgstr ""
msgid "Mute these accounts?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:485
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -6991,7 +7202,7 @@ msgstr ""
msgid "Mute words & tags"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:487
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -6999,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr ""
@@ -7067,8 +7278,8 @@ msgstr ""
msgid "Navigates to your profile"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:345
-#: src/components/moderation/ReportDialog/index.tsx:362
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7095,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:107
-#: src/components/dms/dialogs/NewChatDialog.tsx:117
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7133,23 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
-#: src/components/dms/InitiateChatFlow.tsx:715
-#: src/components/dms/InitiateChatFlow.tsx:743
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#. Button used to create a new group chat.
+#. Button used to create a new group chat.
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
+msgctxt "action"
+msgid "New group chat"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7180,7 +7393,7 @@ msgid "New post"
msgstr ""
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr ""
@@ -7215,8 +7428,8 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7288,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7315,7 +7528,7 @@ msgstr ""
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr ""
@@ -7331,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr ""
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7388,8 +7601,8 @@ msgid "No result"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr ""
@@ -7462,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7475,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7501,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr ""
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr ""
@@ -7554,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr ""
@@ -7576,7 +7772,8 @@ msgstr ""
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:658
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7601,27 +7798,35 @@ msgstr ""
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
+msgid "One of the selected recipients does not allow group chats."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
+msgid "One of the selected recipients has blocked you and cannot be messaged."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr ""
@@ -7630,6 +7835,26 @@ msgstr ""
msgid "Only {0} can reply."
msgstr ""
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7640,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr ""
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr ""
@@ -7657,7 +7892,7 @@ msgstr ""
msgid "Oops!"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr ""
@@ -7665,12 +7900,17 @@ msgstr ""
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr ""
@@ -7684,16 +7924,16 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr ""
@@ -7705,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:120
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr ""
@@ -7735,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7762,6 +8006,10 @@ msgstr ""
msgid "Open system log"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7783,7 +8031,7 @@ msgstr ""
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr ""
@@ -7803,22 +8051,24 @@ msgstr ""
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7835,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7864,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr ""
@@ -7940,12 +8190,14 @@ msgstr ""
msgid "Our blog post"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:88
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportConversationDialog.tsx:86
+#: src/components/dms/AfterReportConversationDialog.tsx:213
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
@@ -7953,14 +8205,15 @@ msgstr ""
msgid "Owner"
msgstr ""
-#: src/components/Lists.tsx:205
-#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
-msgid "Page not found"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
msgstr ""
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
+#: src/components/Lists.tsx:205
+#: src/components/Lists.tsx:220
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
+msgid "Page not found"
msgstr ""
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
@@ -8011,34 +8264,34 @@ msgstr ""
msgid "People"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8084,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr ""
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr ""
@@ -8095,7 +8348,7 @@ msgstr ""
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr ""
@@ -8109,8 +8362,8 @@ msgid "Pinned"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr ""
@@ -8179,7 +8432,7 @@ msgstr ""
msgid "Please choose your password."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8187,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr ""
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8208,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8228,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8236,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8249,7 +8502,7 @@ msgstr ""
msgid "Please enter your invite code."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8266,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr ""
@@ -8309,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8326,7 +8579,7 @@ msgstr ""
msgid "Porn"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr ""
@@ -8346,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8360,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr ""
@@ -8372,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr ""
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
@@ -8397,7 +8650,7 @@ msgstr ""
msgid "Post interaction settings"
msgstr ""
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8407,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8434,7 +8687,6 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8448,10 +8700,6 @@ msgstr ""
msgid "Posts hidden"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8471,6 +8719,7 @@ msgstr ""
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr ""
@@ -8479,7 +8728,7 @@ msgstr ""
msgid "Press to view followers of this account that you also follow"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8502,21 +8751,20 @@ msgstr ""
msgid "Privacy and security"
msgstr ""
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8529,15 +8777,15 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr ""
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr ""
@@ -8545,8 +8793,8 @@ msgstr ""
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8578,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8625,10 +8873,6 @@ msgstr ""
msgid "QR code saved to your camera roll!"
msgstr ""
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8654,8 +8898,8 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr ""
@@ -8676,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8688,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8707,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8755,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8784,6 +9028,10 @@ msgstr ""
msgid "Reconnect"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8793,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr ""
@@ -8839,17 +9087,17 @@ msgstr ""
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr ""
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr ""
@@ -8857,8 +9105,9 @@ msgstr ""
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr ""
@@ -8876,8 +9125,8 @@ msgstr ""
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8902,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr ""
@@ -8952,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:224
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr ""
-#: src/components/Post/Embed/index.tsx:222
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr ""
@@ -8978,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9032,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr ""
@@ -9047,14 +9295,14 @@ msgstr ""
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9068,10 +9316,6 @@ msgstr ""
msgid "Reply Hidden by You"
msgstr ""
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
@@ -9089,9 +9333,9 @@ msgstr ""
msgid "Reply was successfully hidden"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:533
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr ""
@@ -9100,21 +9344,20 @@ msgstr ""
msgid "Report account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:287
-#: src/components/dms/ConvoMenu.tsx:291
-#: src/components/dms/ReportConversationPrompt.tsx:17
+#: src/components/dms/ConvoMenu.tsx:304
+#: src/components/dms/ConvoMenu.tsx:308
#: src/screens/Messages/components/RequestButtons.tsx:160
#: src/screens/Messages/components/RequestButtons.tsx:163
msgid "Report conversation"
msgstr ""
#: src/components/moderation/ReportDialog/index.tsx:98
-#: src/components/moderation/ReportDialog/index.tsx:265
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr ""
@@ -9123,7 +9366,7 @@ msgstr ""
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr ""
@@ -9141,12 +9384,15 @@ msgstr ""
msgid "Report starter pack"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:85
-#: src/components/dms/AfterReportDialog.tsx:177
+#: src/components/dms/AfterReportConversationDialog.tsx:83
+#: src/components/dms/AfterReportConversationDialog.tsx:210
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:51
+#: src/components/moderation/ReportDialog/copy.ts:65
msgid "Report this conversation"
msgstr ""
@@ -9154,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:532
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9163,7 +9409,7 @@ msgid "Report this list"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9197,10 +9443,6 @@ msgstr ""
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9223,8 +9465,8 @@ msgid "Reposted by you"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9233,13 +9475,17 @@ msgid "Reposts of this post"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9247,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9269,7 +9534,11 @@ msgstr ""
msgid "Required in your region"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9334,15 +9603,16 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9356,7 +9626,7 @@ msgstr ""
msgid "Retry"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:296
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9367,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr ""
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr ""
@@ -9395,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9420,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:229
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9459,12 +9731,12 @@ msgstr ""
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9475,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr ""
@@ -9492,8 +9764,8 @@ msgstr ""
msgid "Say hello!"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9517,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr ""
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9608,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9618,13 +9890,13 @@ msgstr ""
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9700,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9769,7 +10041,7 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9791,7 +10063,7 @@ msgstr ""
msgid "Select languages"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:434
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9845,11 +10117,11 @@ msgstr ""
msgid "Select your preferred language for translations in your feed."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9862,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr ""
@@ -9880,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr ""
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr ""
@@ -9893,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:824
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9901,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9915,7 +10187,7 @@ msgid "Send via direct message"
msgstr ""
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -9956,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -9971,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10020,10 +10292,12 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
+#: src/components/MediaPreview.tsx:235
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10039,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10065,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10092,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr ""
@@ -10108,16 +10382,16 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10211,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr ""
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10238,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10270,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr ""
@@ -10278,6 +10558,10 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10289,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr ""
@@ -10300,7 +10584,7 @@ msgid "Sign Out"
msgstr ""
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr ""
@@ -10332,7 +10616,7 @@ msgstr ""
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10346,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10354,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10403,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10428,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
-#: src/screens/Messages/ConversationSettings/index.tsx:110
+#: src/screens/Messages/Conversation.tsx:137
+#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:291
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10458,11 +10747,11 @@ msgstr ""
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:239
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr ""
@@ -10509,7 +10798,7 @@ msgstr ""
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:123
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr ""
@@ -10523,17 +10812,17 @@ msgstr ""
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:779
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr ""
@@ -10595,12 +10884,12 @@ msgstr ""
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10612,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr ""
@@ -10625,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:512
-#: src/components/moderation/ReportDialog/index.tsx:573
-#: src/components/moderation/ReportDialog/index.tsx:580
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10636,13 +10925,13 @@ msgid "Subscribe"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:377
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:386
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:385
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10673,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10711,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10721,12 +11014,20 @@ msgstr ""
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
+msgid "Suspended accounts cannot participate in a group chat."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
+msgid "Suspended accounts cannot participate in chat."
+msgstr ""
+
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr ""
@@ -10735,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10761,7 +11062,7 @@ msgstr ""
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10787,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10857,7 +11176,7 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10872,7 +11191,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr ""
@@ -10982,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -10990,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr ""
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11034,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11048,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11059,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -11069,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -11094,7 +11420,7 @@ msgstr ""
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11187,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr ""
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr ""
@@ -11196,7 +11522,7 @@ msgstr ""
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11204,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11243,7 +11574,11 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11251,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11293,7 +11628,7 @@ msgstr ""
msgid "This handle is reserved. Please try a different one."
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11301,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11310,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11343,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr ""
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:624
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:620
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11387,7 +11734,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr ""
@@ -11399,7 +11746,8 @@ msgstr ""
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 ""
-#: src/screens/Messages/ConversationSettings/index.tsx:130
+#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11407,7 +11755,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/features/liveNow/index.tsx:200
+#: src/features/liveNow/index.tsx:203
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -11427,11 +11775,19 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
+msgid "This user has blocked you and cannot be messaged."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
+msgid "This user has disabled chat and cannot be messaged."
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
msgstr ""
@@ -11499,7 +11855,7 @@ msgstr ""
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr ""
@@ -11525,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr ""
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11534,10 +11890,6 @@ msgstr ""
msgid "To log out, <0>click here0>. Or if you’d prefer, you can <1>delete your account1>."
msgstr ""
-#: src/components/dms/ReportConversationPrompt.tsx:19
-msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
-msgstr ""
-
#: src/components/dms/DateDivider.tsx:27
msgid "Today"
msgstr ""
@@ -11575,12 +11927,12 @@ msgstr ""
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11631,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11692,6 +12044,18 @@ msgstr ""
msgid "Unable to delete"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
+msgid "Unable to find the selected recipient."
+msgstr ""
+
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
msgstr ""
@@ -11712,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:662
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11734,8 +12098,8 @@ msgstr ""
msgid "Unblock {displayName}"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:277
-#: src/components/dms/ConvoMenu.tsx:281
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
#: src/view/com/profile/ProfileMenu.tsx:468
#: src/view/com/profile/ProfileMenu.tsx:474
msgid "Unblock account"
@@ -11758,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11793,7 +12157,7 @@ msgstr ""
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:496
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11825,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11839,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:519
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11867,7 +12231,7 @@ msgstr ""
msgid "Unmute account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:265
+#: src/components/dms/ConvoMenu.tsx:282
msgid "Unmute conversation"
msgstr ""
@@ -11876,7 +12240,7 @@ msgstr ""
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:484
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11895,14 +12259,14 @@ msgid "Unpin"
msgstr ""
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr ""
@@ -11917,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr ""
@@ -11951,11 +12315,11 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -11968,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -11986,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12011,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr ""
@@ -12019,39 +12395,40 @@ msgstr ""
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr ""
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr ""
@@ -12094,7 +12471,8 @@ msgstr ""
msgid "user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportConversationDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12131,7 +12509,7 @@ msgid "User list by {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12175,12 +12553,12 @@ msgstr ""
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12197,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12224,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12236,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr ""
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12269,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12300,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr ""
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr ""
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12339,7 +12717,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr ""
@@ -12352,18 +12730,18 @@ msgstr ""
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12375,7 +12753,7 @@ msgstr ""
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12387,17 +12765,17 @@ msgstr ""
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:388
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12423,10 +12801,18 @@ msgstr ""
msgid "View full thread"
msgstr ""
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:42
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr ""
@@ -12442,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12459,10 +12845,10 @@ msgstr ""
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:378
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:389
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12470,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:506
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12483,7 +12869,7 @@ msgstr ""
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr ""
@@ -12516,8 +12902,8 @@ msgstr ""
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12560,8 +12946,8 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12585,11 +12971,15 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:111
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12635,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr ""
@@ -12669,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12699,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12734,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
@@ -12785,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr ""
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12798,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12807,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr ""
@@ -12827,6 +13217,7 @@ msgid "Why are you appealing?"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:52
+#: src/components/moderation/ReportDialog/copy.ts:66
msgid "Why should this conversation be reviewed?"
msgstr ""
@@ -12858,15 +13249,19 @@ msgstr ""
msgid "Why should this user be reviewed?"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:49
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/components/dms/AfterReportConversationDialog.tsx:47
+msgid "Would you like to block this user and/or leave this conversation?"
+msgstr ""
+
#: src/view/com/composer/drafts/DraftsButton.tsx:110
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12875,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr ""
@@ -12893,7 +13288,8 @@ msgstr ""
msgid "Wrong DID returned from server. Received: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:129
+#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -12945,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:635
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -12979,11 +13375,11 @@ msgstr ""
msgid "You are Live"
msgstr ""
-#: src/features/liveNow/index.tsx:368
+#: src/features/liveNow/index.tsx:371
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr ""
@@ -12991,7 +13387,7 @@ msgstr ""
msgid "You are not following anyone yet"
msgstr ""
-#: src/features/liveNow/index.tsx:312
+#: src/features/liveNow/index.tsx:315
msgid "You are now live!"
msgstr ""
@@ -13032,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13046,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13054,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13070,9 +13471,9 @@ msgstr ""
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13081,6 +13482,10 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
+msgid "You cannot create a group chat yet."
+msgstr ""
+
#: src/lib/hooks/useCleanError.ts:54
#: 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."
@@ -13108,6 +13513,10 @@ msgstr ""
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13177,7 +13586,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13247,7 +13656,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13265,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13280,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr ""
@@ -13301,7 +13710,7 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13374,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13386,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr ""
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
@@ -13410,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 ""
@@ -13430,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr ""
@@ -13472,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13493,7 +13910,7 @@ msgstr ""
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13522,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13534,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13546,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13559,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:523
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13572,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po
index 25ad6aa232..7b6ca22ecc 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Hindi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, other {# मिनट}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# महीना} other {# महीने}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, other {# सेकंड}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "{0} का अवतार"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}मि"
msgid "{0}s"
msgstr "{0}से"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr "{following} फ़ॉलोइंग"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "{handle} को संदेश भेजा नहीं जा सकता"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -860,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "सुलभता"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "सुलभता के सेटिंग"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "खाता अनम्यूट किया गया"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "जोड़ें"
@@ -999,8 +1079,8 @@ msgstr "खाता जोड़ें"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "विवरण जोड़ें (वैकल्पिक)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "एक और खाता जोड़ें"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "एक और पोस्ट जोड़ें"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr "ऐप पासवर्ड जोड़ें"
msgid "Add App Password"
msgstr "ऐफ पासवर्ड जोड़ें"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr ""
@@ -1080,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "म्यूट किए गए शब्द और टैग जोड़ें"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "सभी"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "आपके सीधे संदेशों तक पहुँच
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "@{0} द्वारा पहले से साइन इन किया गया है"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "वैकल्पिक पाठ"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "वैकल्पिक पाठ अंधे और कम दृश्य लोगों के लिए छवियों का वर्णन करता है, और सब को संदर्भ देने में मदद करता है।"
@@ -1387,7 +1467,7 @@ msgstr "त्रुटि हुई"
msgid "An error occurred"
msgstr "त्रुटि हुई"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "वीडियो कंप्रेशन के दौरान त्रुटि हुई।"
@@ -1432,11 +1512,11 @@ msgstr "QR कोड सहेजने में त्रुटि हुई!"
msgid "An error occurred while trying to follow all"
msgstr "सभी को फ़ॉलो करते समय त्रुटि हुई"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "समस्या जो इन विकल्पों में से नहीं है"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "बातचीत खोलते समय समस्या हु
msgid "An issue occurred, please try again."
msgstr "कोई समस्या हुई, फिर से प्रयास करें।"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "ऐप पासवर्ड नाम में कम से कम 4
msgid "App passwords"
msgstr "ऐप पासवर्ड"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "ऐप पासवर्ड"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "अपील जमा हुई"
@@ -1632,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "इस निर्णय पर अपील करें"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "क्या आप सच में ऐप पासवर्ड \"{0}\" को मिटाना चाहते हैं?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ msgstr "क्या आप सच में इस स्टार्टर प
msgid "Are you sure you want to discard your changes?"
msgstr "क्या आप सच में अपने बदलाव ख़ारिज करना चाहते हैं?"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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 "क्या आप सच में इस बातचीत को छोड़ना चाहते हैं? आपके संदेश आपके लिए मिट जाएँगे, पर दूसरे प्रतिभागी के लिए नहीं।"
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr "क्या आप सच में इसे अपने फ़ीड से हटाना चाहते हैं?"
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "क्या आप सच में इस पोस्ट को ख़ारिज करना चाहेंगे?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "वीडियो और GIF स्वतः चलाएँ"
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr "वापस"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1840,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1877,7 +1963,7 @@ msgstr "जन्मदिन"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "खाता अवरुद्ध करें"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "खाता अवरुद्ध करें?"
msgid "Block accounts"
msgstr "खाता अवरुद्ध करें"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "खाता ब्लॉक करें?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "उपयोगकर्ता को अवरुद्ध करें"
@@ -1946,9 +2032,9 @@ msgstr "उपयोगकर्ता को अवरुद्ध करें
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "उपयोगकर्ता को अवरुद्ध करें"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "अवरुद्ध"
@@ -1964,13 +2050,13 @@ msgstr "अवरुद्ध"
msgid "Blocked accounts"
msgstr "अवरुद्ध किए गए खाते"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "अवरुद्ध किए गए खाते"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "अवरुद्ध खाते आपके थ्रेड में जवाब नहीं दे सकते, आपका उल्लेख नहीं कर सकते, या अन्यथा आपसे संपर्क नहीं कर सकते।"
@@ -2029,7 +2115,7 @@ msgstr "Bluesky दोस्तों के साथ बेहतर है!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky आपके नेटवर्क से कुछ अनुश
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 "Bluesky लॉग आउट उपयोगकर्ताओं को आपके प्रोफ़ाइल और पोस्ट नहीं दिखाएगा। अन्य ऐप इस अनुरोध का पालन नहीं भी कर सकते हैं। इससे आपका खाता निजी नहीं होगा।"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2137,23 +2223,30 @@ msgstr "व्यवसाय"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "{0} के द्वारा"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "<0>{0}0> के द्वार"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "खाता बनाने से आप <0>सेवा की शर
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "कैमरा"
@@ -2192,8 +2285,8 @@ msgstr "कैमरा"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "कैमरा"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "कैमरा"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "रद्द करें"
@@ -2248,9 +2341,9 @@ msgstr ""
msgid "Cancel search"
msgstr "खोज रद्द करें"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "अवरुद्ध उपयोगकर्ता से संपर्क नहीं कर सकते"
@@ -2264,7 +2357,7 @@ msgstr "अनुशीर्षक (.vtt)"
msgid "Captions & alt text"
msgstr "अनुशीर्षक और वैकल्पिक पाठ"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr "हैंडल बदलें"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "बातचीत"
@@ -2361,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "बातचीत म्यूट किया गया"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "बातचीत सेटिंग"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "बातचीत सेटिंग"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "बातचीत अनम्यूट किया गया"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "इस रंग को अपना अवतार के रूप में चुनें"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr "यहाँ क्लिक करें"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2567,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "असफल संदेश को फिर से भेजने के लिए क्लिक करें"
@@ -2594,28 +2694,30 @@ msgstr "असफल संदेश को फिर से भेजने क
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "असफल संदेश को फिर से भेजने क
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "सक्रिय डायलॉग बंद करें"
msgid "Close alert"
msgstr "सूचना बंद करें"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "निचला ड्रॉयर बंद करो"
@@ -2657,8 +2763,9 @@ msgstr "निचला ड्रॉयर बंद करो"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "डायलॉग बंद करें"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "छवि बंद करें"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "यह डायलॉग बंद करें"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "पासवर्ड अपडेट सूचना बंद करता है"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "कॉमिक"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "समुदाय दिशानिर्देश"
@@ -2740,12 +2855,12 @@ msgstr "चुनौती पूरी करें"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "नया पोस्ट बनाएँ"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2753,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr "जवाब लिखें"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "वीडियो कंप्रेस हो रहा है..."
@@ -2780,7 +2895,7 @@ msgstr "<0>मॉडरेशन सेटिंग0> में व्यव
msgid "Confirm"
msgstr "पुष्टि करें"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "सामाग्री और मीडिया"
msgid "Content and media"
msgstr "सामग्री और मीडिया"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "सामग्री और मीडिया"
@@ -2889,7 +3004,7 @@ msgstr "संदर्भ मेनू पृष्ठभूमि, मेन
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "थ्रेड को जारी रखें..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "अगले चरण पर जाएँ"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "बातचीत मिटा दी गई"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "बातचीत मिटा दी गई"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "बिल्ड संस्कारण क्लिपबोर्ड पर कॉपी की गई"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "DID कॉपी करें"
msgid "Copy host"
msgstr "होस्ट कॉपी करें"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "संदेश पाठ कॉपी करें"
@@ -3052,7 +3175,7 @@ msgstr "TXT रिकॉर्ड मूल्य कॉपी करें "
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "कॉपीराइट नीति"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "बातचीत छोड़ी नहीं जा सकी"
@@ -3094,6 +3217,10 @@ msgstr "बातचीत छोड़ी नहीं जा सकी"
msgid "Could not load feed"
msgstr "फ़ीड लोड नहीं किया जा सका"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "बनाएँ"
@@ -3159,7 +3286,7 @@ msgstr "स्टार्टर पैक के लिए QR कोड बन
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "स्टार्टर पैक बनाएँ"
@@ -3174,13 +3301,14 @@ msgstr "मेरे लिए स्टार्टर पैक बनाए
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "खाता बनाएँ"
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "इसके बदले अवतार बनाएँ"
@@ -3206,7 +3334,7 @@ msgstr "इसके बदले अवतार बनाएँ"
msgid "Create another"
msgstr "एक और बनाएँ"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "नया खाता बनाएँ"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "{0} के लिए शिकायत लिखें"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "{0} बनाया गया"
@@ -3341,7 +3470,7 @@ msgstr "डिफ़ॉल्ट"
msgid "Default icons"
msgstr "डिफ़ॉल्ट आइकॉन"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "बातचीत घोषणा रेकॉर्ड मिटाए
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "मेरे लिए मिटाएँ"
@@ -3399,11 +3528,11 @@ msgstr "मेरे लिए मिटाएँ"
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "संदेश मिटाएँ"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "मेरे लिए संदेश मिटाएँ"
@@ -3413,7 +3542,7 @@ msgstr "मेरा खाता मिटाएँ"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "पोस्ट मिटाएँ"
@@ -3434,12 +3563,12 @@ msgstr "यह सूची मिटाएँ?"
msgid "Delete this post?"
msgstr "यह पोस्ट मिटाएँ?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "मिटाया गया"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "मिटाया गया खाता"
@@ -3507,13 +3636,13 @@ msgstr "डायलॉग: चुनें कि इस पोस्ट से
msgid "Dim"
msgstr "मंद"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3521,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3534,8 +3663,8 @@ msgstr "ईमेल 2FA अक्षम करें"
msgid "Disable haptic feedback"
msgstr "कंपन फीडबैक अक्षम करें"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "अक्षम"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "ख़ारिज करें"
msgid "Discard changes?"
msgstr "बदलाव ख़ारिज करें?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "ड्राफ़्ट ख़ारिज करें?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "पोस्ट ख़ारिज करें?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "नए फ़ीड की खोज करें"
msgid "Dismiss"
msgstr "ख़ारिज करें"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "त्रुटि ख़ारिज करें"
@@ -3673,7 +3802,7 @@ msgstr "नग्नता शामिल नहीं है"
msgid "Domain verified!"
msgstr "डोमेन सत्यापित!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3681,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "हो गया"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3741,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr "Bluesky डाउनलोड करें"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "CAR फ़ाइल डाउनलोड करें "
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "CAR फ़ाइल डाउनलोड करें "
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "संपादित करें"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "अवतार संपादित करें"
@@ -3847,14 +3978,14 @@ msgstr "अवतार संपादित करें"
msgid "Edit Feeds"
msgstr "फ़ीड संपादित करें"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "छवि संपादित करें"
@@ -3868,7 +3999,16 @@ msgstr "संपर्क सेटिंग संपादित करें
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "मेरे फ़ीड संपादित करें"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "लोग संपादित करें"
@@ -3925,7 +4060,7 @@ msgstr "मेरी प्रोफ़ाइल संपादित करे
msgid "Edit starter pack"
msgstr "स्टार्टर पैक संपादित करें"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "संपादित करें कि कौन जवाब दे सकता है"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "अपना स्टार्टर पैक संपादित करें"
@@ -3971,7 +4106,7 @@ msgstr "ईमेल"
msgid "Email Resent"
msgstr "ईमेल फिर से भेजा गया"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -4006,8 +4141,8 @@ msgstr "इस पोस्ट को अपने वेबसाइट मे
msgid "Embedded video player"
msgstr "एम्बेडेड वीडियो प्लेयर"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "सक्षम करें"
@@ -4025,7 +4160,7 @@ msgstr "वयस्क सामग्री सक्षम करें"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4038,13 +4173,12 @@ msgstr "बाहरी मीडिया सक्षम करें"
msgid "Enable media players for"
msgstr "इनके लिए मीडिया प्लेयर सक्षम करें"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr "पासवर्ड दर्ज करें"
msgid "Enter a word or tag"
msgstr "शब्द या टैग दर्ज करें"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4143,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "त्रुटि"
@@ -4185,23 +4319,23 @@ msgstr "सब जवाब दे सकते हैं"
msgid "Everybody can reply to this post."
msgstr "सब इस पोस्ट का जवाब दे सकते हैं"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "सब"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "सब"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "सब"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "आपके फ़ॉलो किए गए उपयोगकर्
msgid "Exit fullscreen"
msgstr "फ़ुलस्क्रीन से निकलें"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "वैकल्पिक पाठ बढ़ाता है"
@@ -4226,7 +4360,7 @@ msgstr "वैकल्पिक पाठ बढ़ाता है"
msgid "Expand list of users"
msgstr "उपयोगकर्ताओं की सूची बढ़ाताा है"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "जिस पोस्ट का जवाब दे रहे हैं उसे बढ़ाता या संक्षिप्त करता है"
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "URI के रिकॉर्ड पर रिसॉल्व होने की अपेक्षा थी"
@@ -4277,9 +4411,9 @@ msgstr "अश्लील या संभावित व्यथित क
msgid "Explicit sexual images."
msgstr "अश्लील यौन छवि"
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4289,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "बाहरी मीडिया प्राथमिकताएँ"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "हैंडल बदलने में असफल। कृपया फिर से प्रयास करें।"
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "ऐप पासवर्ड बनाने में असफल।
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "संदेश मिटाने में असफल"
@@ -4394,24 +4529,24 @@ msgstr "पोस्ट मिटाने में असफल, फिर स
msgid "Failed to delete starter pack"
msgstr "स्टार्टर पैक मिटाने में असफल"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "फ़ीड प्राथमिकताएँ लोड करने में असफल"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "अनुशंसित फ़ीड लोड करने में
msgid "Failed to load suggested follows"
msgstr "अनुशंसित फ़ॉलो लोड करने में असफल"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "पोस्ट को पिन करने में असफल"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "अपील जमा करने में असफल, फिर से प्रयास करें"
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "थ्रेड म्यूट स्थिति बदलने में असफल, फिर से प्रयास करें"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4614,7 +4751,7 @@ msgstr "फ़ीड अपडेट करने में असफल"
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "सेटिंग अपडेट करने में असफल"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "फ़ीड"
@@ -4649,7 +4786,7 @@ msgstr "फ़ीड"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "{0} द्वारा फ़ीड"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "फ़ीड मेनू"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "फ़ीड"
@@ -4739,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "अंतिम रूप दिया जा रहा"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "फ़ॉलो करने के लिए खाते खोजें"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr "फ़ॉलो करने के लिए लोग खोजें"
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "<0>{0}0> और <1>{1}1> फ़ॉलो करते हैं"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "<0>{0}0>, <1>{1}1>, और {2, plural, one {# अन्य} other {# अन्य}} फ़ॉलो करते हैं"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "@{0} के फ़ॉलोअर जिन्हें आप जानते हैं"
@@ -4995,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr "फ़ॉलोइंग फ़ीड प्राथमिकताएँ"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "फ़ॉलोइंग फ़ीड प्राथमिकताएँ"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "आपको फ़ॉलो करते हैं"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "आपको फ़ॉलो करते हैं"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "फ़ॉन्ट"
@@ -5069,7 +5207,7 @@ msgstr "भूल गए?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr "<0/> से"
msgid "Generate a starter pack"
msgstr "स्टार्टर पाक उत्पन्न करें"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "सहायता लें"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "अपने प्रोफ़ाइल को एक चेहरा दें"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "वापस जाएँ"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "वापस जाएँ"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "पिछले चरण पर वापस जाएँ"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "होम जाएँ"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "होम जाएँ"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "होम जाएँ"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "{0} के साथ बातचीत पर जाएँ"
@@ -5299,12 +5440,12 @@ msgstr "अगले पर जाएँ"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "प्रोफ़ाइल पर जाएँ"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "हैंडल बहुत अधिक लंबा है। कृपया कुछ छोटा चुनें।"
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "हैशटैग"
@@ -5458,8 +5615,8 @@ msgstr "हैशटैग {tag}"
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "सहायता"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "तस्वीर अपलोड कर के या अवतार बनाकर लोगों को जताएँ की आप एक रोबोट नहीं हैं।"
@@ -5652,18 +5809,18 @@ msgstr "अरे, लगता है हमें यह डेटा लो
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "अरे, हम उस मॉडरेशन सेवा को लोड नहीं कर सके।"
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "कृपया रुकिए। हम धीरे-धीरे वीडियो तक पहुँच दे रहें हैं, और आप अभी भी पंक्ति में हैं। बाद में प्रयास करें!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "होम फ़ीड"
@@ -5721,7 +5878,7 @@ msgstr "मैं समझा"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "यदि वैकल्पिक पाठ लंबा है, बड़े आकार का वैकल्पिक पाठ लागू कर्ता है"
@@ -5757,7 +5914,7 @@ msgstr "यदि आप इस सूची को मिटते हैं,
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "यदि आपका अपना डोमेन है, आप उसे अपने हैंडल के तौर पर उपयोग कर सकते हैं। इसे आप ख़ुद अपने पहचान की पुष्टि कर सकते हैं। <0>यहाँ अधिक जानें।0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5765,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr "यदि आप इस पोस्ट को मिटाते हैं, आप उसे वापस नहीं ला पाएँगे।"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5773,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "यदि आप अपना पासवर्ड बदलना चाहते हैं, हम आपको एक कोड भेजेंगे यहा सत्यापित करने के किए कि यह आपका खाता है।"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr ""
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "यदि आप अपना हैंडल या ईमेल बदलने का प्रयास कर रहे हैं, ऐसा निष्क्रिय करने से पहले करें।"
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "छवि"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "अमान्य 2FA पुष्टिकरण कोड"
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "अमान्य हैंडल। कृपया कुछ और चुनें।"
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "अमान्य सत्यापन कोड"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "अभी इसमें बस आप ही हैं! ऊपर खोजकर अपने स्टार्टर पैक में और लोगों को जोड़ें।"
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "काम आईडी: {0}"
@@ -6083,6 +6257,11 @@ msgstr "काम आईडी: {0}"
msgid "Jobs"
msgstr "काम"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "काम"
msgid "Join Bluesky"
msgstr "Bluesky में शामिल हों"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "बातचीत में शामिल हों"
msgid "Journalism"
msgstr "पत्रकारिता"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "आपके खाते पर लेबल"
msgid "Labels on your content"
msgstr "आपकी सामग्री पर लेबल"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "भाषा सेटिंग"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "नए"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "इस चेतावनी के बारे में अधिक जानें"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Bluesky पर क्या सार्वजनिक है, इसके के बारे में अधिक जानें"
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "अधिक जानें।"
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "निकलें"
@@ -6276,7 +6464,7 @@ msgstr "बातचीत से निकलें"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "बातचीत से निकलें"
@@ -6284,13 +6472,13 @@ msgstr "बातचीत से निकलें"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "बातचीत से निकलें"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "रोशन"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "पसंद करें ({0, plural, one {# पसंद} other {# पसंद}})"
@@ -6346,11 +6534,7 @@ msgstr "10 पोस्ट पसंद करें"
msgid "Like 10 posts to train the Discover feed"
msgstr "डिस्कवर फ़ीड को प्रशिक्षित करने के लिए 10 पोस्ट पसंद करें"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "इस फ़ीड को पसंद करें"
@@ -6358,8 +6542,8 @@ msgstr "इस फ़ीड को पसंद करें"
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "इन्होनें पसंद किया"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "{0, plural, one {# उपयोगकर्ता} other {# उपयोगकर्ताओं}} ने पसंद किया"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "{likeCount, plural, one {# उपयोगकर्ता} other {# उपयोगकर्ताओं}} ने पसंद किया"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "पसंद"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "इस पोस्ट पर पसंद"
@@ -6409,11 +6589,11 @@ msgstr "इस पोस्ट पर पसंद"
msgid "Linear"
msgstr "रेखीय"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "सूची"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "सूची अनम्यूट की गई"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "सूची"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "लोड हो रहा है..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "लॉग"
@@ -6662,7 +6842,7 @@ msgstr "लगता है आप फ़ॉलोइंग फ़ीड भूल
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr "अपने म्यूट किए गए शब्द और टैग प्रबंधित करें"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
@@ -6698,13 +6877,12 @@ msgstr ""
msgid "Mark as read"
msgstr "पढ़ा हुआ मार्क करें"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "मीडिया जो कुछ दर्शकों के लिए भयावह या अनुचित हो सकता है"
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "उल्लेखित उपयोगकर्ता"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "उल्लेख"
@@ -6775,22 +6949,22 @@ msgstr "संदेश {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "संदेश मिटाई गई"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "संदेश मिटाई गई"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6813,19 +6987,19 @@ msgstr "संदेश बहुत लंबा है"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "संदेश"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "मॉडरेशन"
@@ -6894,7 +7064,7 @@ msgstr "मॉडरेशन सूची अपडेट की गई"
msgid "Moderation lists"
msgstr "मॉडरेशन सूचियाँ"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "मॉडरेशन सूचियाँ"
@@ -6903,7 +7073,7 @@ msgstr "मॉडरेशन सूचियाँ"
msgid "moderation settings"
msgstr "मॉडरेशन सेटिंग"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "मॉडरेशन स्थिति"
@@ -6949,7 +7119,7 @@ msgstr "सिनेमा"
msgid "Music"
msgstr "संगीत"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "म्यूट"
@@ -6994,7 +7164,7 @@ msgstr "सूची म्यूट करें"
msgid "Mute these accounts?"
msgstr "इन खातों को म्यूट करें?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "थ्रेड म्यूट करें"
msgid "Mute words & tags"
msgstr "शब्द और टैग म्यूट करें"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "म्यूट किए गए खाते"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "म्यूट किए गए खाते"
@@ -7108,8 +7278,8 @@ msgstr "अगले स्क्रीन पर जाता है"
msgid "Navigates to your profile"
msgstr "आपके प्रोफ़ाइल पर जाता है"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "नया बातचीत"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7174,29 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "नया पोस्ट"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "नया पोस्ट"
@@ -7262,8 +7428,8 @@ msgstr "समाचार"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "{0} को और फ़ॉलो नहीं कर रहे"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "अभी तक कोई संदेश नहीं"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "अभी तक कोई अधिसूचनाएँ नहीं!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "कोई परिणाम नहीं"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "कोई परिणाम नहीं"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "ग़ैर-यौन नग्नता"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "नहीं मिला"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "अधिसूचना सेटिंग"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "अधिसूचना ध्वनि"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "अधिसूचनाएँ"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "अभी"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "कुछ नहीं"
@@ -7623,7 +7772,8 @@ msgstr "ठीक"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "ज्ञानप्राप्ति रीसेट"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "एक या अधिक GIF के विवरण नहीं हैं।"
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "एक या अधिक छवियों पर वैकल्पिक पाठ नहीं है।"
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "एक या अधिक वीडियो के विवरण नहीं हैं।"
@@ -7685,6 +7835,26 @@ msgstr "एक या अधिक वीडियो के विवरण न
msgid "Only {0} can reply."
msgstr "केवल {0} जवाब दे सकता है"
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr "केवल छवि फाइलें समर्थित हैं"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "केवल वेबवीटीटी (.vtt) फ़ाइलें समर्थित हैं"
@@ -7712,7 +7892,7 @@ msgstr "अरे, कोई गड़बड़ हुई!"
msgid "Oops!"
msgstr "अरे!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "अवतार निर्माता खोलें"
@@ -7720,12 +7900,17 @@ msgstr "अवतार निर्माता खोलें"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "बातचीत विकल्प खोलें"
@@ -7739,16 +7924,16 @@ msgstr "ड्रॉअर मेनू खोलें"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "इमोजी चयन खोलें"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "फ़ीड जानकारी स्क्रीन खोलें"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "फ़ीड विकल्प मेनू खोलें"
@@ -7760,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "{niceUrl} का लिंक खोलें"
@@ -7790,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr "पोस्ट विकल्प मेनू खोलें"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr "कहानी की किताब का पृष्ठ खोल
msgid "Open system log"
msgstr "सिस्टम लॉग खोलें"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "डीबग प्रविष्टि के लिए अतिर
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "उपकरण कर कैमरा खोलता है"
@@ -7858,22 +8051,24 @@ msgstr "रचयिता खोलता है"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "नया Bluesky खाता बनाने का साधन खोलता है"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "अपने मौजूदा Bluesky खाते में साइन इन करने का साधन खोलता है"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "यह प्रोफ़ाइल खोलता है"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "हमारे मॉडरेटर ने शिकायतें देखी और Bluesky पर आपकी बातचीत तक पहुँच को अक्षम करने का निर्णय लिया।"
@@ -8010,16 +8205,17 @@ msgstr "हमारे मॉडरेटर ने शिकायतें
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "पृष्ठ नहीं मिला"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "पृष्ठ नहीं मिला"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "वीडियो रोकें"
msgid "People"
msgstr "लोग"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "@{0} द्वारा फ़ॉलो किए गए लोग"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "@{0} को फ़ॉलो करते लोग"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "वयस्कों के लिए छवि।"
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "फ़ीड पिन करें"
@@ -8152,7 +8348,7 @@ msgstr "फ़ीड पिन करें"
msgid "Pin to home"
msgstr "होम में पिन करें"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "होम में पिन करें"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "पिन किया गया"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "होम में {0} पिन किया गया"
@@ -8236,7 +8432,7 @@ msgstr "कृपया अपना हैंडल चुनें"
msgid "Please choose your password."
msgstr "कृपया अपना पासवर्ड चुनें"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "कृपया सत्यापन कैपचा समाप्त करें"
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "कृपया इस ऐप पासवर्ड के लिए एक अद्वितीय नाम दर्ज करें या हमारे द्वारा उत्पन्न यादृच्छिक नाम का उपयोग करें"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "कृपया अपना ईमेल दर्ज करें।"
msgid "Please enter your invite code."
msgstr "कृपया अपना ईमेल दर्ज करें।"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "कृपया व्याख्या करें कि क्यों आपको लगता है {0} ने यह लेबल ग़लती से लगाई"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "कृपया व्याख्या करें कि क्यों आपको लगता है कि आपके बातचीत ग़लती से अक्षम की गई"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "राजनीति"
msgid "Porn"
msgstr "अश्लील"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "पोस्ट करें"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "सभी पोस्ट करें"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "@{0} द्वारा पोस्ट"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "पोस्ट मिटाया गया"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "पोस्ट अपलोड करने में असफल। कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।"
@@ -8454,7 +8650,7 @@ msgstr "पोस्ट आपके द्वारा छिपाया ग
msgid "Post interaction settings"
msgstr "पोस्ट संपर्क सेटिंग"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8464,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "पोस्ट पिन से हटाया गया"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "पोस्ट को उनके पाठ, उनके टैग,
msgid "Posts hidden"
msgstr "पोस्ट छिपाए गए"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "फिर कनेक्ट करने का प्रयास क
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "फिर प्रयास करने के लिए दबाएँ"
@@ -8536,7 +8728,7 @@ msgstr "फिर प्रयास करने के लिए दबाए
msgid "Press to view followers of this account that you also follow"
msgstr "इस खाते के फ़ॉलोअर देखने के लिए दबाएँ जिन्हें आप भी फ़ॉलो करते हैं"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "गोपनीयता"
msgid "Privacy and security"
msgstr "गोपनियता और सुरक्षा"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "गोपनियता और सुरक्षा"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "गोपनीयता नीति"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "वीडियो प्रसंस्करण हो रहा है..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "प्रसंस्करण हो रहा है..."
@@ -8602,8 +8793,8 @@ msgstr "प्रसंस्करण हो रहा है..."
msgid "profile"
msgstr "प्रोफ़ाइल"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "QR कोड डाउनलोड की गई!"
msgid "QR code saved to your camera roll!"
msgstr "QR कोड आपके कैमरा रोल में सहेजी गई!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "क्वोट पोस्ट अक्षम किए गए"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "क्वोट"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "क्वोट को फिर जोड़ें"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr "अनुशंसित"
msgid "Reconnect"
msgstr "फिर कनेक्ट करें"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "बातचीत फिर लोड करें"
@@ -8896,17 +9087,17 @@ msgstr "खाता हटाएँ"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "अटैचमेंट हटाएँ"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "अवतार हटाएँ"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "बैनर हटाएँ"
@@ -8914,8 +9105,9 @@ msgstr "बैनर हटाएँ"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "एंबेड हटाएँ"
@@ -8933,8 +9125,8 @@ msgstr "फ़ीड हटाएँ?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "छवि हटाएँ"
@@ -9009,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "लेखक द्वारा हटाया गया"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "आपके द्वारा हटाया गया"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "जवाब"
@@ -9104,14 +9295,14 @@ msgstr "जवाब अक्षम"
msgid "Replies to this post are disabled."
msgstr "इस पोस्ट पर जवाब अक्षम है"
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "जवाब दें"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "जवाब दें ({0, plural, one {# जवाब} other {# जवाब}})"
@@ -9125,10 +9316,6 @@ msgstr "जवाब थ्रेड लेखक द्वारा छिप
msgid "Reply Hidden by You"
msgstr "जवाब आपके द्वारा छिपाया गया"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "जवाब सेटिंग थ्रेड का लेखक चुनता है"
@@ -9146,9 +9333,9 @@ msgstr "जवाब दृश्यता अपडेट की गई"
msgid "Reply was successfully hidden"
msgstr "जवाब सफलतापूर्वक छिपाई गई"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "शिकायत करें"
@@ -9164,13 +9351,13 @@ msgstr "खाते की शिकायत करें"
msgid "Report conversation"
msgstr "बातचीत की शिकायत करें"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "शिकायत डायलॉग"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "फ़ीड की शिकायत करें"
@@ -9179,7 +9366,7 @@ msgstr "फ़ीड की शिकायत करें"
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "संदेश की शिकायत करें"
@@ -9199,8 +9386,8 @@ msgstr "स्टार्टर पैक की शिकायत करे
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "इस फ़ीड की शिकायत करें"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "इस सूची की शिकायत करें"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "रीपोस्ट करें"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "रीपोस्ट करें ({0, plural, one {# रीपोस्ट} other {# रीपोस्ट}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "आपने रीपोस्ट किया"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "इस पोस्ट के रीपोस्ट"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "पोस्ट करने से पहले वैकल्पिक पाठ आवश्यक करें"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9328,7 +9534,11 @@ msgstr "इस प्रदाता के लिए आवश्यक"
msgid "Required in your region"
msgstr "आपके क्षेत्र में आवश्यक"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9393,15 +9603,16 @@ msgstr "पिछली क्रिया का फिर से प्रय
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "पिछली क्रिया का फिर से प्रय
msgid "Retry"
msgstr "फिर प्रयास करें"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9426,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr "पिछले पृष्ठ पर वापस जाएँ"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "होम पृष्ठ पर वापस जाता है"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "पिछले पृष्ठ पर वापस जाता है"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "बदलाव सहेजें"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "QR कोड सहेजें"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "मेरे फ़ीड में सहेजें"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "सहेजे गए फ़ीड"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "आपके फ़ीड में सहेजा गया"
@@ -9551,8 +9764,8 @@ msgstr "आपके फ़ीड में सहेजा गया"
msgid "Say hello!"
msgstr "नमस्ते कहें!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "ऊपर जाएँ"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "खोजें"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9667,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "प्रोफ़ाइल खोजें"
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "रंग चुनें"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "GIF चुनें"
msgid "Select GIF \"{0}\""
msgstr "\"{0}\" GIF चुनें"
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "भाषा चुनें..."
msgid "Select languages"
msgstr "भाषाएँ चुनें"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9904,11 +10117,11 @@ msgstr "नीचे दिए विकल्पों में अपनी
msgid "Select your preferred language for translations in your feed."
msgstr "अपने फ़ीड में अनुवाद के लिए अपनी पसंदीदा भाषा चुनें।"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "ईमेल भेजें"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "प्रतिक्रिया भेजें"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "संदेश भेजें"
@@ -9952,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr "इन्हें पोस्ट भेजें"
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9960,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "सीधा संदेश द्वारा भेजें"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "पासवर्ड रीसेट करने के लिए ईमेल चुनता है"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "सेटिंग"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "यौन गतिविधि या कामुक नग्नत
msgid "Sexually Suggestive"
msgstr "यौन रूप से भड़काऊ"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr "QR कोड साझा करें"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "इस फ़ीड को साझा करें"
@@ -10151,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "साझा की गई प्राथमिकताओं का परीक्षक"
@@ -10167,16 +10382,16 @@ msgstr "वैकल्पिक पाठ दिखाएँ"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "फिर भी दिखाएँ"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "चेतावनी दिखाएँ और फ़ीड से फ़िल्टर करें"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr "बातचीत में जुड़ने के लिए साइन इन करें या अपना खाता बनाएँ"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr ""
@@ -10337,6 +10558,10 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr "Bluesky में साइन इन करें या नया खाता बनाएँ"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "साइन आउट करें"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "साइन आउट करें"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "साइन आउट करें?"
@@ -10391,7 +10616,7 @@ msgstr "छोड़ें"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "छोटा"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "कोई गड़बड़ हुई"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "कोई गड़बड़ हुई!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "कुछ गड़बड़ है? हमें बताएँ।"
@@ -10568,7 +10798,7 @@ msgstr "खेल"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "नया बातचीत शुरू करें"
@@ -10582,17 +10812,17 @@ msgstr "लोगों को जोड़ना शुरू करें"
msgid "Start adding people!"
msgstr "लोगों को जोड़ना शुरू करें!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "{displayName} से बातचीत शुरू करें"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "स्टार्टर पैक"
@@ -10654,12 +10884,12 @@ msgstr "स्टोरेज खाली की गई, आपको ऐप
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "कहानी की किताब"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "जमा करें"
@@ -10684,9 +10914,9 @@ msgstr "अपील जमा करें"
msgid "Submit Appeal"
msgstr "अपील जमा करें"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "सदस्यता लें"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "सफल!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "सहायता"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "खाता बदलें"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "खाता बदलें"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10828,7 +11062,7 @@ msgstr "केवल टैग"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "ख़ारिज करने के लिए दबाएँ"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "शर्तें"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "पाठ और टैग"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "पाठ दर्ज करने की फ़ील्ड"
@@ -11049,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "गोपनीयता नीति को <0/> पर स्थानांतरित किया गया है"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "सर्वर से संपर्क करने में समस्या हुई"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "सर्वर से संपर्क करने में समस्या हुई, कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।"
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "अधिसूचनाएँ लाने में समस्या हुई। फिर प्रयास करने के लिए यहाँ दबाएँ।"
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "पोस्ट लाने में समस्या हुई। फिर प्रयास करने के लिए यहाँ दबाएँ।"
@@ -11161,7 +11420,7 @@ msgstr "आपके सेवा जानकारी को लाने म
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "इस फ़ीड को हटाने में समस्या हुई। कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "यह अपील <0>{sourceName}0> को भेजी जाएगी।"
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "यह अपील Bluesky की मॉडरेशन सेवा को भेजी जाएगी।"
@@ -11263,7 +11522,7 @@ msgstr "यह अपील Bluesky की मॉडरेशन सेवा
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "यह सामग्री उपलब्ध नहीं है क
msgid "This content is not viewable without a Bluesky account."
msgstr "यह सामग्री Bluesky खाते के बिना देखी नहीं जा सकती।"
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11318,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr "यह फ़ीड और ऑनलाइन नहीं है। हम
msgid "This handle is reserved. Please try a different one."
msgstr "यह हैंडल सुरक्षित है। कृपया कुछ और चुनें।"
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr "यह सूची खाली है।"
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "इस पोस्ट को फ़ीड और थ्रेड से छिपा दिया जाएगा। इसे पूर्ववत नहीं किया जा सकता।"
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "इस पोस्ट के लेखक ने क्वोट पोस्ट अक्षम किए हैं।"
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "इस जवाब को आपके थ्रेड के नीचे एक छिपे अनुभाग में डाल दिया जाएगा और उत्तरवर्ती जवाबों के अधिसूचनाओं को सभी के लिए म्यूट किया जाएगा।"
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr "इस उपयोगकर्ता के कोई फ़ॉलोअर नहीं हैं"
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "इस उपयोगकर्ता ने आपको अवरुद्ध किया है। आप उनके सामग्री नहीं देख सकते।"
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "थ्रेड प्राथमिकताएँ"
msgid "Threaded"
msgstr "थ्रेड"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "थ्रेड प्राथमिकताएँ"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "ईमेल 2FA विधि अक्षम करने के लिए, कृपया ईमेल पते तक पहुँच को सत्यापित करें।"
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11646,12 +11927,12 @@ msgstr "बहतरीन"
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "विषय"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11763,11 +12044,15 @@ msgstr "आपकी सेवा से संपर्क करने मे
msgid "Unable to delete"
msgstr "मिटाने में असमर्थ"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr "खाता अनफ़ॉलो करें"
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr "नापसंद करें"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "नापसंद करें ({0, plural, one {# पसंद} other {# पसंद}})"
@@ -11918,7 +12203,7 @@ msgstr "नापसंद करें ({0, plural, one {# पसंद} other
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "बातचीत अनम्यूट करें"
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "पिन से हटाएँ"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "फ़ीड को पिन से हटाएँ"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "होम से पिन से हटाएँ"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "मॉडरेशन सूची को पिन से हटाएँ"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} को होम पिन से हटाया गया"
@@ -12030,11 +12315,11 @@ msgstr "इस लेबलकर्ता की सदस्यता छो
msgid "Unsubscribed from list"
msgstr "सूची की सदस्यता छोड़ी गई"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "सूची में <0>{displayName}0> अपडेट करें"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "{domain} को अपडेट करें"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "जवाब दृश्यता का अपडेट असफल"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "इसके बदले फ़ोटो अपलोड करें"
@@ -12098,39 +12395,40 @@ msgstr "इसके बदले फ़ोटो अपलोड करें"
msgid "Upload a text file to:"
msgstr "यहाँ पाठ फ़ाइल अपलोड करें:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "कैमरा से अपलोड करें"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "फ़ाइलों से अपलोड करें"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "लाइब्रेरी से अपलोड करें"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "छवि अपलोड हो रहा है..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "लिंक थंबनेल अपलोड हो रहा है..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "वीडियो अपलोड हो रहा है..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "{0} द्वारा उपयोगकर्ता सूची"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "<0>@{0}0> द्वारा फ़ॉलो किए गए उप
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "DNS रिकॉर्ड सत्यापित करें"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12349,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr "वीडियो"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "वीडियो संसाधित करने में असफल"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12419,7 +12717,7 @@ msgstr "वीडियो नहीं मिला"
msgid "Video settings"
msgstr "वीडियो सेटिंग"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "वीडियो अपलोड किया गया"
@@ -12432,18 +12730,18 @@ msgstr "वीडियो: {0}"
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "{0} का अवतार देखें"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "{0} का प्रोफ़ाइल देखें"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "विवरण देखें"
msgid "View full thread"
msgstr "पूरा थ्रेड देखें"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "इन लेबलों के बारे में जानकारी देखें"
@@ -12522,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "प्रोफ़ाइल देखें"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "अवतार देखें"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "@{0} द्वारा दी गई लेबल सेवा दे
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "इस फ़ीड को पसंद करने वाले उपयोगकर्ता देखें"
@@ -12596,8 +12902,8 @@ msgstr "अपने म्यूट किए गए खाते देखे
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12640,8 +12946,8 @@ msgstr "सामग्री की चेतावनी दें"
msgid "Warn content and filter from feeds"
msgstr "सामग्री की चेतावनी दें और फ़ीड से फ़िल्टर करें"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr "उस विषय से जुड़े हमें कोई परिणाम नहीं मिले।"
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "हम इस बातचीत को लोड नहीं कर सके"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "हम तय नहीं कर पाए कि आपको वीडियो आपलोग करने की अनुमति है या नहीं। कृपया फिर प्रयास करें।"
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "हमें नेटवर्क समस्याएँ हो रही हैं, फिर प्रयास करें।"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "हमें क्षमा करें! आप जिस पोस्ट को जवाब दे रहे हैं उसे मिटा दिया गया है।"
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "हमें क्षमा करें! हमें वह पृष्ठ नहीं मिल रहा जिसे आप ढूँढ रहे थे।"
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "आप अपने स्टार्टर पैक को क्या नाम देना चाहते हैं?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "क्या चल रहा है?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12878,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr "इस पोस्ट से कौन संपर्क कर सकता है?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "कौन जवाब दे सकता है"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "उफ़!"
@@ -12939,7 +13249,7 @@ msgstr "इस स्टार्टर पैक की समीक्षा
msgid "Why should this user be reviewed?"
msgstr "इस उपयोगकर्ता की समीक्षा क्यों होनी चाहिए?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "पोस्ट लिखें"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "अपना जवाब दें"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "सर्वर से ग़लत DID प्राप्त हुआ। प्राप्त: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr ""
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "आपको वीडियो अपलोड करने की अनुमति नहीं है।"
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "कोई भी सेटिंग चुनने पर भी आप चल रहे बातचीत को जारी रख सकते हैं।"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "अब आप अपने नए पासवर्ड के साथ साइन इन कर सकते हैं।"
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "आप लॉग इन जारी रखने के लिए अ
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr "आप इसे बाद में अपने सेटिंग में बदल सकते हैं।"
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "आपकी कोई सहेजे गए फ़ीड नहीं
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "आप अस्थायी रूप से वीडियो अपलोड की सीमा तक पहुँच गए हैं। कृपया बाद मे फिर प्रयास करें।"
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "स्टार्टर पैक उत्पन्न करने
msgid "You must grant access to your photo library to save a QR code"
msgstr "QR कोड सहेजने के लिए आपको फ़ोटो लाइब्रेरी तक पहुँच देनी पड़ेगी।"
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "आप अपने सभी खातों से साइन आउट हो जाएँगे।"
@@ -13390,7 +13710,7 @@ msgstr "आपको अब इस थ्रेड के लिए अधिस
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "आपको \"रीसेट कोड\" के साथ एक ईमेल मिलेगा। उस कोड को यहाँ दर्ज करें, फिर अपना नया पासवर्ड दर्ज करें।"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "आप अपने फ़ीड के अंत तक पहुँच गए! कुछ और खातों को फ़ॉलो करें!"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "आप वीडियो अपलोड करने की दैनिक सीमा तक पहुँच गए (अत्यधिक बाइट)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "आप वीडियो अपलोड करने की दैनिक सीमा तक पहुँच गए (अत्यधिक वीडियो)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "आपका खाता वीडियो अपलोड करने के जितना पुराना नहीं है। कृपया बाद मे फिर प्रयास करें।"
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "आपका खाता रेपोसीटोरी को एक \"CAR\" फ़ाइल के रूप में डाउनलोड किया जा सकता है, जिसमें सभी सार्वजनिक डेटा रेकॉर्ड है। इस फ़ाइल में मीडिया एंबेड (जैसे छवियाँ), या आपका निजी डेटा नहीं है जिसे अलग से लाने की आवश्यकता है। "
@@ -13519,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr "आपकी जन्मतिथि"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "आपके बतचिक अक्षम किए गए हैं।"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "आपका ईमेल अमान्य प्रतीत हो रहा है।"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13582,7 +13910,7 @@ msgstr "आपका फ़ॉलोइंग फ़ीड खाली है! क
msgid "Your full handle will be <0>@{0}0>"
msgstr "आपका पूरा हैंडल <0>@{0}0> होगा"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "आपके म्यूट किए गए शब्द"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13661,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/hu/messages.po b/src/locale/locales/hu/messages.po
index 4338e669ab..bbd6a469d5 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# perce} other {# perce}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# hónapja} other {# hónapja}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr "{0, plural, one {#} other {#}} új csatlakozási kérelem"
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, other {#}} személy reagált – {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# másodperce} other {# másodperce}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# olvasatlan} other {# olvasatlan}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr "{0, plural, one {#} other {#}} perc"
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} követett"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr "{0} letiltott Téged"
@@ -264,7 +269,7 @@ msgstr "50/{0}"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} {1} emojival reagált"
@@ -309,16 +314,38 @@ msgstr "{0} – szerző: {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "{0} profilképe"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "{0} profilképe"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr "{1}/{0}"
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr "{1}/{0}{2, plural, one {} other {}} személy"
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr "{1}/{0} személy"
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0} perce"
msgid "{0}s"
msgstr "{0} másodperce"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr "{count, plural, =0 {Nincsenek csatlakozási kérelmek} one {# csatlakozási kérelem} other {# csatlakozási kérelem}}"
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr "{count, plural, one {#} other {#}} új esemény a csevegésben"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr "{count, plural, one {#} other {#}} új csatlakozási kérelem"
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, one {#} other {#}} kérelem"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# olvasatlan} other {# olvasatlan}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr "{count, plural, one {A megtekintéshez frissítsd a lapot.} other {A megtekintéshez frissítsd a lapot.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr "Ehhez a bejegyzéshez {count, plural, one {#} other {#}} fényképet csatoltak."
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr "{count, plural, one {A megtekintéshez frissítsd az alkalmazást.} other {A megtekintéshez frissítsd az alkalmazást.}}"
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr "Több, mint {count, plural, one {#} other {#}} csatlakozási kérelem"
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "{count}+"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "Több, mint {count} kérelem"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} hitelesített Téged"
msgid "{following} following"
msgstr "{following} követett"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "{handle} nem vehető fel a csoportba"
@@ -547,7 +599,7 @@ msgstr "{handle} nem vehető fel a csoportba"
msgid "{handle} can't be messaged"
msgstr "{handle} jelenleg nem fogad üzeneteket"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "{handle} jelenleg nem fogad üzeneteket"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# óra {minutesString}} other {# óra {minutesStrin
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# óra} other {# óra}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "Több, mint {JOIN_REQUESTS_THRESHOLD} új csatlakozási kérelem"
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "Több, mint {JOIN_REQUESTS_THRESHOLD} új csatlakozási kérelem"
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,9 +643,9 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, other {Legfeljebb # választ lehet elrejteni.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
-msgstr ""
+msgstr "{memberLimit}/{memberCount}"
#: src/features/liveNow/utils.ts:10
msgid "{minutes, plural, one {# minute} other {# minutes}}"
@@ -607,7 +669,7 @@ msgstr "{name} kedvenc hírfolyamai és személyei – csatlakozz!"
msgid "{name}'s starter pack"
msgstr "{name} kezdőcsomagja"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# olvasatlan értesítés} other {# olvasatlan értesítés}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, other {# felkérés}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "Több, mint {requestCount} kérelem"
@@ -795,8 +857,11 @@ msgstr "Hálózati hiba történt. Ellenőrizd az internetkapcsolatot"
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Hálózati hiba történt. Ellenőrizd az internetkapcsolatot."
@@ -804,7 +869,7 @@ msgstr "Hálózati hiba történt. Ellenőrizd az internetkapcsolatot."
msgid "A new code has been sent"
msgstr "Új kód elküldve"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "A hitelesítés egy új formája"
@@ -827,11 +892,11 @@ msgstr "Képernyőkép egy felhasználói profilról, amelyen egy harang ikon l
msgid "A screenshot of 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 "A bejegyzésíró felületet ábrázoló képernyőkép, amelyen egy új, „Piszkozatok” feliratú gomb található, szivárványos tűzijátékok mellett. A szövegmezőben – magyarra fordítva – a következő szöveg olvasható: „Hallottátok már? A Blueskyon mostantól piszkozatokat is lehet menteni!!!”."
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
-msgstr ""
+msgstr "Az egyik címzettet nem követi a feladó."
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Abuzív vagy diszkriminatív viselkedés"
msgid "Accept"
msgstr "Elfogadás"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Elfogadás"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Csevegési kérelem elfogadása"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr "Csatlakozási kérelem elfogadása"
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Kérelem elfogadása"
@@ -860,17 +935,26 @@ msgstr "Kérelem elfogadása"
msgid "Accept this language suggestion"
msgstr "Javasolt nyelv elfogadása"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr "Elfogadott beszélgetések"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr "Kérelem elküldve. Az elfogadást csoport tulajdonosa fogja bírálni."
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Akadálymentesítés"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Akadálymentesítés"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Fiók némítása feloldva"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Másokat hitelesíteni csak a <0><1/>0> recés pipával rendelkező fiókok képesek. Ezeket a megbízható hitelesítőket a Bluesky jelöli ki."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Mások tevékenységei"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Tevékenységértesítések"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Felvesz"
@@ -999,8 +1079,8 @@ msgstr "Fiók felvétele a listára"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Helyettesítő szöveg hozzáadása (nem kötelező)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Fiók felvétele a listára"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Válaszlánc folytatása"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Válaszlánc bővítése"
@@ -1035,7 +1115,7 @@ msgstr "Alkalmazásjelszó létrehozása"
msgid "Add App Password"
msgstr "Alkalmazásjelszó létrehozása"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "Automatizálási feljegyzés alkalmazása"
@@ -1043,7 +1123,7 @@ msgstr "Automatizálási feljegyzés alkalmazása"
msgid "Add emoji reaction"
msgstr "Emoji-reakció hozzáfűzése"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Tagok felvétele"
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Médiatartalom csatolása a bejegyzéshez"
@@ -1062,8 +1142,8 @@ msgstr "Médiatartalom csatolása a bejegyzéshez"
msgid "Add members"
msgstr "Tagok hozzáadása"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "További részletek megadása (nem kötelező)"
@@ -1080,8 +1160,8 @@ msgstr "Szó elnémítása a megadott beállításokkal"
msgid "Add muted words and tags"
msgstr "Elnémított szavak és címkék felvétele"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "Listatagok felvétele folyamatban…"
msgid "Additional details (limit 1000 characters)"
msgstr "További részletek (legfeljebb 1000 karakter)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "További részletek (legfeljebb 300 karakter)"
@@ -1228,12 +1308,12 @@ msgstr "Az életkor-igazolási kérelem küldése sikeresen megtörtént"
msgid "Age assurance only takes a few minutes"
msgstr "Az életkor-igazolás általában csupán néhány percet vesz igénybe"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "janos@pelda.hu"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,9 +1321,9 @@ msgstr "Mind"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
-msgstr ""
+msgstr "Mind {0, selectordinal, one {az #} other {a #}}"
#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:97
#: src/screens/StarterPack/StarterPackScreen.tsx:400
@@ -1278,15 +1358,15 @@ msgstr "Hozzáférés megadása a személyes üzenetekhez"
msgid "Allow anyone to reply"
msgstr "Bárki válaszolhat"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "Bejövő üzenetek fogadása"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
-msgstr "Csevegőcsoportos meghívók fogadása"
+msgstr "Csoportbeszélgetéses meghívók fogadása"
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:128
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:134
@@ -1338,12 +1418,12 @@ msgstr "Már van fiókod?"
msgid "Already signed in as @{0}"
msgstr "Már bejelentkeztél, mint @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "HLYT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Helyettesítő szöveg"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "A helyettesítő szöveg segít leírni egy képet vak vagy gyengén látó felhasználók számára, és mindenki más számára is további információval szolgálhat."
@@ -1387,7 +1467,7 @@ msgstr "Hiba történt"
msgid "An error occurred"
msgstr "Hiba történt"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "A videó tömörítése meghiúsult."
@@ -1432,11 +1512,11 @@ msgstr "A QR-kód mentése meghiúsult!"
msgid "An error occurred while trying to follow all"
msgstr "Az összes felhasználó követése meghiúsult"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "A videó feltöltése meghiúsult. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "A videó feltöltése meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra."
@@ -1461,21 +1541,21 @@ msgstr "Illusztráció, amely számos Bluesky-bejegyzést ábrázol megosztási-
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "A megbízható hitelesítőket a Bluesky jelöli ki, akik ezután képesek más személyeket hitelesíteni."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "Meghívóval bárki csatlakozhat anélkül, hogy kézileg hozzá kelljen adni őt a csevegőcsoporthoz. A hivatkozás lehet korlátozott felhasználású és a csatlakozás lehet jóváhagyandó. A hivatkozás bármikor érvényteleníthető."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr "Meghívóval bárki csatlakozhat anélkül, hogy kézileg hozzá kelljen adni őt a csoportbeszélgetéshez. A meghívó érvényességi köre személyre szabható és bármikor érvényteleníthető."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Olyan probléma, amit nem lehet a többi kategóriába sorolni"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
-msgstr ""
+msgstr "Hiba történt a csoportbeszélgetés létrehozása közben. Próbáld újra."
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
-msgstr ""
+msgstr "Hiba történt a csevegés indítása közben. Próbáld újra."
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
msgid "An issue occurred while trying to open the chat"
@@ -1490,7 +1570,7 @@ msgstr "A csevegés megnyitása meghiúsult"
msgid "An issue occurred, please try again."
msgstr "Hiba történt. Próbáld újra."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Egy kék pipával rendelkező felhasználó, az iPhone-os Bluesky alkalmazásban megjelenítve."
@@ -1539,13 +1619,17 @@ msgstr "Bárki"
msgid "Anyone can interact"
msgstr "Bárki kapcsolatba léphet"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr "Bárki csatlakozhat"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "Bárki azonnal csatlakozhat"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "Bárki kérelmezheti a csatlakozást"
@@ -1555,11 +1639,11 @@ msgstr "Bárki kérelmezheti a csatlakozást"
msgid "Anyone who follows me"
msgstr "Bármelyik követőtől"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr "A jelenlegi meghívó érvényét veszti és a jövőben már nem használhatják a csatlakozáshoz. Új meghívót bármikor létrehozhatsz."
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Egy alkalmazásjelszónak legalább 4 karakter hosszúnak kell lennie"
msgid "App passwords"
msgstr "Alkalmazásjelszók"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Alkalmazásjelszók"
@@ -1618,7 +1702,7 @@ msgstr "Felfüggesztés fellebbezése"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Fellebbezés elküldve"
@@ -1632,14 +1716,14 @@ msgstr "Felfüggesztés fellebbezése"
msgid "Appeal Suspension"
msgstr "Felfüggesztés fellebbezése"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Döntés fellebbezése"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "Egészen biztos vagy benne?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Biztosan törölni akarod a(z) „{0}” nevű alkalmazásjelszót?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Biztosan törölni akarod ezt az üzenetet? Az üzenet a Te nézőpontodból el lesz távolítva, de a többi fél számára nem."
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "Biztosan el akarod hagyni a(z) {groupName} csoportot?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
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: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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr "Biztosan el akarod hagyni ezt a csoportbeszélgetést? Már nem fogsz tudni hozzáférni az üzeneteidhez, a többiek viszont igen."
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Biztosan el akarod vetni ezt a bejegyzést?"
@@ -1752,7 +1836,7 @@ msgstr "Automatikus fiók"
msgid "Automation label"
msgstr "Automatizálási feljegyzés"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "Automatizálási feljegyzés"
@@ -1767,12 +1851,12 @@ msgstr "Videók és GIF-ek automatikus lejátszása"
msgid "Available"
msgstr "Elérhető"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Elérhető"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Elérhető"
msgid "Back"
msgstr "Vissza"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Vissza a csevegésekhez"
@@ -1840,12 +1926,12 @@ msgstr "Az üzenetfogadás előtt ellenőriznünk kell az e-mail-címedet."
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "A feliratkozás előtt vissza kell igazolnod az e-mail-címedet."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Az üzenetküldés előtt ellenőriznünk kell az e-mail-címedet."
@@ -1877,7 +1963,7 @@ msgstr "Születésnap"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "{displayName} letiltása"
msgid "Block account"
msgstr "Fiók letiltása"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Fiók letiltása"
@@ -1912,15 +1998,15 @@ msgstr "Fiók letiltása"
msgid "Block accounts"
msgstr "Fiókok letiltása"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
-msgstr ""
+msgstr "Letiltás és törlés"
#. After-report action for a conversation
#: src/components/dms/AfterReportConversationDialog.tsx:167
msgctxt "button"
msgid "Block and leave"
-msgstr ""
+msgstr "Letiltás és csevegés elhagyása"
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
msgid "Block list"
@@ -1936,9 +2022,9 @@ msgstr "Fiókok letiltása"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Felhasználó letiltása"
@@ -1946,17 +2032,17 @@ msgstr "Felhasználó letiltása"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Felhasználó letiltása"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "A másik fél letiltása és/vagy a beszélgetés törlése"
#: src/components/dms/AfterReportConversationDialog.tsx:217
msgid "Block user and/or leave this conversation"
-msgstr ""
+msgstr "A másik fél letiltása és/vagy a beszélgetés elhagyása"
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Letiltva"
@@ -1964,13 +2050,13 @@ msgstr "Letiltva"
msgid "Blocked accounts"
msgstr "Letiltott fiókok"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Letiltott fiókok"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Az Általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled."
@@ -2029,7 +2115,7 @@ msgstr "A Bluesky ismerősökkel még jobb!"
msgid "Bluesky is more fun with friends"
msgstr "A Bluesky ismerősökkel még mókásabb"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "A Bluesky ismerősökkel még mókásabb! Importáld a névjegyeidet, hogy könnyebben megtalálhasd a barátaidat!"
@@ -2053,7 +2139,7 @@ msgstr "A Bluesky egy javasolt felhasználócsoportot fog kijelölni a hálózat
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 "A Bluesky nem fogja megjeleníteni a profilodat és a bejegyzéseidet a kijelentkezett felhasználók számára. Lehetséges, hogy ezt a kérést nem minden alkalmazás fogja tiszteletben tartani. Ez a beállítás nem teszi priváttá a profilodat."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "A Bluesky mostantól hitelesíti a jelentős és megbízható fiókokat."
@@ -2137,23 +2223,30 @@ msgstr "Honlap"
msgid "Button to go back to the home timeline"
msgstr "Gomb a kezdőoldali idővonalra ugráshoz"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Szerző: {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Szerző: <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr "Szerző: <0>{ownerDisplayName}0>"
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr "szerző: <0>@{0}0>"
@@ -2181,7 +2274,7 @@ msgstr "A fiók létrehozásával elfogadod a <0>felhasználási feltételeket
msgid "By you"
msgstr "Saját"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Kamera"
@@ -2192,8 +2285,8 @@ msgstr "Kamera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Kamera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Mégse"
@@ -2248,9 +2341,9 @@ msgstr "Újraaktiválás megszakítása és kilépés"
msgid "Cancel search"
msgstr "Keresés megszakítása"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Egy letiltott felhasználóval nem léphetsz kapcsolatba"
@@ -2264,7 +2357,7 @@ msgstr "Feliratok (.vtt)"
msgid "Captions & alt text"
msgstr "Feliratok és helyettesítő szöveg"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "diavetítés"
@@ -2297,7 +2390,7 @@ msgstr "Alkalmazás nyelvének megváltoztatása"
msgid "Change Handle"
msgstr "Felhasználónév megváltoztatása"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Címzett megváltoztatása"
@@ -2310,11 +2403,11 @@ msgstr "Jelszó megváltoztatása"
msgid "Change password dialog"
msgstr "Jelszó-megváltoztatási párbeszédablak"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Jelentési kategória megváltoztatása"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Jelentési ok megváltoztatása"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "A létrehozandó lista egy másolat a kezdőcsomag jelenlegi állapotáról. A kezdőcsomagban történt későbbi változtatások nem lesznek automatikusan szinkronizálva a listára is."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Csevegés"
@@ -2361,6 +2454,13 @@ msgstr "Csevegés törölve"
msgid "Chat ended"
msgstr "A csevegés véget ért"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr "Ez a meghívó már nem érvényes"
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "A csevegést zárolták."
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Csevegés elnémítva"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
-msgstr ""
+msgstr "A címzettet nem követi a feladó."
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Csevegési kérelmek"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Csevegési kérelmek"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Csevegések"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Csevegések"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Csevegés némítása feloldva"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Csevegések"
@@ -2479,7 +2579,7 @@ msgstr "Válaszd ki a megjelenítendő bejegyzések nyelvét"
msgid "Choose this color as your avatar"
msgstr "Szín használata profilképként"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "Add meg a csatlakozás köreit és módját."
@@ -2533,7 +2633,7 @@ msgstr "További információ"
msgid "click here"
msgstr "kattints ide"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "Új csoporttagok felvételéhez kattints ide"
@@ -2541,7 +2641,7 @@ msgstr "Új csoporttagok felvételéhez kattints ide"
msgid "Click here to contact our support team"
msgstr "Kattints ide az ügyfélszolgálattal történő kapcsolatfelvételhez"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "A meghívó létrehozásához vagy szerkesztéséhez kattints ide"
@@ -2558,7 +2658,7 @@ msgstr "Kattints ide a kijelentkezéshez"
msgid "Click here to resend the email"
msgstr "Az e-mail újraküldéséhez kattints ide"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Hitelesítés most."
@@ -2567,11 +2667,11 @@ msgstr "Hitelesítés most."
msgid "Click here to update your birthdate"
msgstr "Kattints ide a születési dáumod frissítéséhez"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "E-mail-cím frissítése"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "A meghívó megtekintéséhez kattints ide"
@@ -2580,7 +2680,7 @@ msgstr "A meghívó megtekintéséhez kattints ide"
msgid "Click to open tag menu for {0}"
msgstr "A(z) {0} címke menüjének megnyitása"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Üzenetküldés megkísérlése ismét"
@@ -2594,28 +2694,30 @@ msgstr "Üzenetküldés megkísérlése ismét"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Üzenetküldés megkísérlése ismét"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Az előtérben lévő párbeszédablak bezárása"
msgid "Close alert"
msgstr "Figyelmeztetés bezárása"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Alsó kinyíló menü bezárása"
@@ -2657,8 +2763,9 @@ msgstr "Alsó kinyíló menü bezárása"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Párbeszédablak bezárása"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Kép bezárása"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Képnézegető bezárása"
@@ -2683,6 +2790,14 @@ msgstr "Képnézegető bezárása"
msgid "Close menu"
msgstr "Menü bezárása"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Párbeszédablak bezárása"
@@ -2695,7 +2810,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:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "A bejegyzésíró bezárása és a piszkozat elvetése"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Képregények"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Közösségi irányelvek"
@@ -2740,12 +2855,12 @@ msgstr "Biztonsági kihívás"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Új bejegyzés írása"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Egy bejegyzés legfeljebb {0, plural, other{#}} karakter hosszú lehet"
@@ -2753,11 +2868,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:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "GIF tömörítése folyamatban…"
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Videó tömörítése folyamatban…"
@@ -2780,7 +2895,7 @@ msgstr "A <0>moderálási beállításokban0> módosítható."
msgid "Confirm"
msgstr "Megerősítés"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Tartalom és média"
msgid "Content and media"
msgstr "Tartalom és média"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Tartalom és média"
@@ -2889,7 +3004,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:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Válaszlánc folytatása"
msgid "Continue thread..."
msgstr "Válaszlánc folytatása…"
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Csoportnév megadása"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Következő lépés"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Beszélgetés"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Beszélgetés törölve"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Beszélgetés törölve"
@@ -2939,13 +3054,20 @@ msgstr "Beszélgetés törölve"
#: src/components/dms/AfterReportConversationDialog.tsx:179
msgctxt "toast"
msgid "Conversation left"
-msgstr ""
+msgstr "Beszélgetés elhagyva"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr "A csoportbeszélgetés nem található."
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Buildszám a vágólapra helyezve"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "DID másolása"
msgid "Copy host"
msgstr "Gazda másolása"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Profil hivatkozásának másolása"
msgid "Copy link to starter pack"
msgstr "Kezdőcsomag hivatkozásának másolása"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Üzenet szövegének másolása"
@@ -3052,7 +3175,7 @@ msgstr "TXT-rekord értékének másolása"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Jogi irányelvek"
@@ -3065,7 +3188,7 @@ msgstr "Megszakadt a kapcsolat az egyéni hírfolyammal"
msgid "Could not connect to feed service"
msgstr "Megszakadt a kapcsolat a hírfolyam-szolgáltatóval"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr "A bejegyzés lekérése meghiúsult"
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Az ismerőseid követése meghiúsult. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "A csevegés elhagyása meghiúsult"
@@ -3094,6 +3217,10 @@ msgstr "A csevegés elhagyása meghiúsult"
msgid "Could not load feed"
msgstr "A hírfolyam betöltése meghiúsult"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr "A meghívó betöltése meghiúsult"
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Országhívószám"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Létrehozás"
@@ -3159,7 +3286,7 @@ msgstr "QR-kód létrehozása egy kezdőcsomaghoz"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Kezdőcsomag létrehozása"
@@ -3174,13 +3301,14 @@ msgstr "Automatikus létrehozás"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Regisztráció"
msgid "Create an account without using this starter pack"
msgstr "Fiók létrehozása a kezdőcsomag igénybevétele nélkül"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Profilkép létrehozása"
@@ -3206,9 +3334,9 @@ msgstr "Profilkép létrehozása"
msgid "Create another"
msgstr "Másik létrehozása"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
-msgstr "Csevegőcsoport létrehozása"
+msgstr "Csoportbeszélgetés létrehozása"
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:180
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:188
@@ -3228,19 +3356,20 @@ msgstr "Lista létrehozása a kezdőcsomag alapján"
msgid "Create moderation list"
msgstr "Moderálólista létrehozása"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Regisztráció"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
-msgstr "Meghívó létrehozása vagy szerkesztése a csevegőcsoporthoz"
+msgstr "Meghívó létrehozása vagy szerkesztése a csoportbeszélgetéshez"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Jelentés neki: {0}"
@@ -3256,8 +3385,8 @@ msgstr "Felhasználólista létrehozása"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Létrehozás dátuma: {0}"
@@ -3341,7 +3470,7 @@ msgstr "Alapértelmezett"
msgid "Default icons"
msgstr "Alapértelmezett ikonok"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Csevegéskijelentési jegyzőkönyv ürítése"
msgid "Delete contacts"
msgstr "Névjegyek törlése"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Beszélgetés törlése"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Törlés helyileg"
@@ -3399,11 +3528,11 @@ msgstr "Törlés helyileg"
msgid "Delete list"
msgstr "Lista törlése"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Üzenet törlése"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Üzenet törlése helyileg"
@@ -3413,7 +3542,7 @@ msgstr "Fiók törlése"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Bejegyzés törlése"
@@ -3434,12 +3563,12 @@ msgstr "Lista törlése"
msgid "Delete this post?"
msgstr "Bejegyzés törlése"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Törölt tartalom"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Törölt fiók"
@@ -3507,13 +3636,13 @@ msgstr "Párbeszédablak: A bejegyzés kapcsolatbalépési jogosultságainak tes
msgid "Dim"
msgstr "Félhomályos"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Letiltás"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Kétlépcsős azonosítás kikapcsolása"
@@ -3521,7 +3650,7 @@ msgstr "Kétlépcsős azonosítás kikapcsolása"
msgid "Disable captions"
msgstr "Feliratok ki"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "E-mailes kétlépcsős azonosítás kikapcsolása"
@@ -3534,8 +3663,8 @@ msgstr "Kétlépcsős azonosítás kikapcsolása"
msgid "Disable haptic feedback"
msgstr "Rezgés letiltása"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr "Meghívó letiltása"
@@ -3547,7 +3676,7 @@ msgstr "A bejegyzés idézésének letiltása"
msgid "Disable replies entirely"
msgstr "Válaszadás letiltása"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "Meghívó letiltása"
@@ -3560,9 +3689,9 @@ msgstr "Letiltva"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Elvetés"
msgid "Discard changes?"
msgstr "Változtatások elvetése"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Piszkozat elvetése"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Bejegyzés elvetése"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "A Germ DM szétkapcsolása"
@@ -3613,11 +3742,11 @@ msgstr "Új hírfolyamok felfedezése"
msgid "Dismiss"
msgstr "Bezárás"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Reklámcsík bezárása"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Hiba bezárása"
@@ -3673,7 +3802,7 @@ msgstr "Nem ábrázol meztelenséget."
msgid "Domain verified!"
msgstr "A tartományellenőrzés kész."
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Ha nem rendelkezel kóddal vagy újra van szükséged, <0>kattints ide0>."
@@ -3681,7 +3810,7 @@ msgstr "Ha nem rendelkezel kóddal vagy újra van szükséged, <0>kattints ide
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Ha nem kaptad meg, <0>kattints ide0> egy új kód küldéséhez."
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Ha nem kaptad meg, <0>kattints ide0> egy új e-mail küldéséhez."
@@ -3700,16 +3829,19 @@ msgstr "Ne aggódj! A korábbi üzeneteid és beállításaid nem vesztek el és
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Kész"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Koppints kétszer vagy tartsd lenyomva az üzenetet egy reakció hozzáfűzéséhez."
@@ -3741,15 +3873,6 @@ msgstr "Koppints kétszer a kedveléshez"
msgid "Download Bluesky"
msgstr "A Bluesky letöltése"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "CAR fájl letöltése"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "CAR fájl letöltése"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Csevegési adatok letöltése"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Csevegési adatok letöltése"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Kép letöltése"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr "Profiladatok letöltése"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr "Profiladatok letöltése"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Személyes információ kiszivárogtatása"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "pl.: Akik folyton csak reklámokkal válaszolnak."
msgid "Eating disorders"
msgstr "Étkezési zavar"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Szerkesztés"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Profilkép szerkesztése"
@@ -3847,14 +3978,14 @@ msgstr "Profilkép szerkesztése"
msgid "Edit Feeds"
msgstr "Hírfolyamok szerkesztése"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Csoportnév szerkesztése"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Kép szerkesztése"
@@ -3868,7 +3999,16 @@ msgstr "Kapcsolatbalépési beállítások szerkesztése"
msgid "Edit interests"
msgstr "Érdeklődési körök szerkesztése"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr "Meghívó szerkesztése"
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr "Meghívó szerkesztése"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "Meghívó beállításai"
@@ -3886,20 +4026,15 @@ msgstr "Élőadásos állapot szerkesztése"
msgid "Edit moderation list"
msgstr "Moderálólista szerkesztése"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Hírfolyamgyűjtemény szerkesztése"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "Név szerkesztése"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "{0} értesítéseinek szerkesztése"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Személyek szerkesztése"
@@ -3925,7 +4060,7 @@ msgstr "Profil szerkesztése"
msgid "Edit starter pack"
msgstr "Kezdőcsomag szerkesztése"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "A csoport nevének szerkesztése"
@@ -3937,7 +4072,7 @@ msgstr "Felhasználólista szerkesztése"
msgid "Edit who can reply"
msgstr "Válaszjogosultsági beállítások szerkesztése"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Kezdőcsomag szerkesztése"
@@ -3971,7 +4106,7 @@ msgstr "E-mail-cím"
msgid "Email Resent"
msgstr "E-mail újraküldve"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "E-mail elküldve!"
@@ -4006,8 +4141,8 @@ msgstr "Jelenítsd meg ezt a bejegyzést a honlapodon! Másold ki az alábbi kó
msgid "Embedded video player"
msgstr "Beágyazott videólejátszó"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Engedélyezés"
@@ -4025,7 +4160,7 @@ msgstr "Felnőtt tartalmak megjelenítése"
msgid "Enable captions"
msgstr "Feliratok be"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "E-mailes kétlépcsős azonosítás kikapcsolása"
@@ -4038,13 +4173,12 @@ msgstr "Külső médiatartalmak engedélyezése"
msgid "Enable media players for"
msgstr "Az alábbi külső médialejátszók vannak engedélyezve:"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Egy fiók értesítéseit a profilján, a <0>harang ikonon0> <1/> keresztül elérhető menüben módosíthatod."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Leküldéses értesítések engedélyezése"
@@ -4091,8 +4225,8 @@ msgstr "Jelszó megadása"
msgid "Enter a word or tag"
msgstr "Szó vagy címke megadása"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Kód megadása"
@@ -4143,7 +4277,7 @@ msgstr "Teljes képernyős mód"
msgid "Entertainment"
msgstr "Szórakozás"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Hiba"
@@ -4185,23 +4319,23 @@ msgstr "Bárki válaszolhat"
msgid "Everybody can reply to this post."
msgstr "Bárki válaszolhat erre a bejegyzésre."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Bárkitől"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Bárkitől"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Bárkitől"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Minden más"
@@ -4217,8 +4351,8 @@ msgstr "A követett felhasználók bejegyzéseit nem szűri"
msgid "Exit fullscreen"
msgstr "Kilépés a teljes képernyős módból"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Helyettesítő szöveg folytatásának megjelenítése"
@@ -4226,7 +4360,7 @@ msgstr "Helyettesítő szöveg folytatásának megjelenítése"
msgid "Expand list of users"
msgstr "Lista kibontása"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "A válasz forrásaként származó bejegyzés kibontása/összecsukása"
@@ -4238,7 +4372,7 @@ msgstr "Továbbiak"
msgid "Expands or collapses post text"
msgstr "Bejegyzés teljes szövegének kibontása/összecsukása"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Az URI nem old fel egy rekordot"
@@ -4277,9 +4411,9 @@ msgstr "A nyugalom megzavarására alkalmas képek és videók."
msgid "Explicit sexual images."
msgstr "Szexuális tartalmakat ábrázoló képek."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Felfedezés"
@@ -4289,11 +4423,8 @@ msgstr "Felfedezés"
msgid "Explore the app"
msgstr "Az alkalmazás felfedezése"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr "Csevegési adatok exportálása"
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "Csevegési adatok exportálása"
@@ -4322,7 +4453,7 @@ msgstr "Külső médiatartalom"
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 "A külső médiatartalmak engedélyezése lehetővé teszi más honlapok számára az adatgyűjtést Rólad vagy az eszközödről. A „Lejátszás” gomb megnyomásáig semmilyen adatot sem küldünk vagy kérünk le."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Külső médiatartalmak"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "A csevegési kérelem elfogadása meghiúsult"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr "A csatlakozási kérelem elfogadása meghiúsult"
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Az emoji-reakció hozzáfűzése meghiúsult"
@@ -4354,7 +4489,7 @@ msgstr "A kezdőcsomag bővítése meghiúsult"
msgid "Failed to change handle. Please try again."
msgstr "A felhasználónév megváltoztatása meghiúsult. Próbáld újra."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "A hivatkozás másolása meghiúsult"
@@ -4367,7 +4502,7 @@ msgstr "Az alkalmazásjelszó létrehozása meghiúsult. Próbáld újra."
msgid "Failed to create conversation"
msgstr "A csevegés törlése meghiúsult"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "A meghívó létrehozása meghiúsult"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "A csevegés törlése meghiúsult"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Az üzenet törlése meghiúsult"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "A meghívó letiltása meghiúsult"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "A Germ DM szétkapcsolása meghiúsult. Hibaüzenet: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
-msgstr "A csevegőcsoport átnevezése meghiúsult"
+msgstr "A csoportbeszélgetés átnevezése meghiúsult"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "A meghívó szerkesztése meghiúsult"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "A meghívó engedélyezése meghiúsult"
@@ -4427,19 +4562,27 @@ msgstr "Az ismerőseid követése meghiúsult. Próbáld újra"
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "A javaslat elrejtése meghiúsult. Ellenőrizd az internetkapcsolatot"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr "A csatlakozási kérelem figyelmen kívül hagyása meghiúsult"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr "A csatlakozás meghiúsult. Próbáld újra később."
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "Az SMS-alkalmazás megnyitása meghiúsult"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
-msgstr "A csevegőcsoport elhagyása meghiúsult"
+msgstr "A csoportbeszélgetés elhagyása meghiúsult"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "A csevegések betöltése meghiúsult"
@@ -4456,17 +4599,8 @@ msgstr "A hírfolyamok betöltése meghiúsult"
msgid "Failed to load feeds preferences"
msgstr "A hírfolyambeállítások betöltése meghiúsult"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Az értesítési beállítások betöltése meghiúsult."
@@ -4493,25 +4627,24 @@ msgstr "Az ajánlott hírfolyamok betöltése meghiúsult"
msgid "Failed to load suggested follows"
msgstr "A javasolt személyek betöltése meghiúsult"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
-msgstr "A csevegőcsoport zárolása meghiúsult"
+msgstr "A csoportbeszélgetés zárolása meghiúsult"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "A kérelmek megjelölése olvasottként meghiúsult"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
-msgstr "A csevegőcsoport elnémítása meghiúsult"
+msgstr "A csoportbeszélgetés elnémítása meghiúsult"
#: src/state/queries/pinned-post.ts:75
msgid "Failed to pin post"
msgstr "A bejegyzés kitűzése meghiúsult"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "A Germ DM újra összekapcsolása meghiúsult. Hibaüzenet: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Az adatok eltávolítása meghiúsult. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Az emoji-reakció eltávolítása meghiúsult"
@@ -4542,15 +4675,19 @@ msgstr "A csoporttag eltávolítása meghiúsult"
msgid "Failed to remove verification"
msgstr "A hitelesítés eltávolítása meghiúsult"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr "A kérelem visszavonása meghiúsult. Próbáld újra később."
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
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:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "A piszkozat mentése meghiúsult"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "A kép mentése meghiúsult"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Az érdeklődési körök mentése meghiúsult."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Az e-mail elküldése meghiúsult. Próbáld újra."
@@ -4580,7 +4717,7 @@ msgstr "A jelentés elküldése meghiúsult"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "A fellebbezés elküldése meghiúsult. Próbáld újra."
@@ -4589,20 +4726,20 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "A beszélgetés némításának be-/kikapcsolása meghiúsult. Próbáld újra."
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
-msgstr "A csevegőcsoport zárolásának feloldása meghiúsult"
+msgstr "A csoportbeszélgetés zárolásának feloldása meghiúsult"
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107
msgid "Failed to unpin list"
msgstr "A lista kitűzésének feloldása meghiúsult"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "A kétlépcsős azonosítási beállítások mentése meghiúsult"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Az e-mail-cím frissítése meghiúsult. Próbáld újra."
@@ -4614,7 +4751,7 @@ msgstr "A hírfolyamok frissítése meghiúsult"
msgid "Failed to update notification declaration"
msgstr "Az értesítési beállítások frissítése meghiúsult"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "A beállítások mentése meghiúsult"
@@ -4641,7 +4778,7 @@ msgstr "Hamis vagy automatikusan üzemeltetett fiók"
msgid "False information about elections"
msgstr "Választási dezinformáció"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Hírfolyam"
@@ -4649,7 +4786,7 @@ msgstr "Hírfolyam"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Hírfolyam – Szerző: {0}"
@@ -4662,7 +4799,7 @@ msgstr "Hírfolyamszerző"
msgid "Feed identifier"
msgstr "Hírfolyam-azonosító"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Hírfolyammenü"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Elküldtük a visszajelzést az üzemeltetőnek"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Hírfolyamok"
@@ -4739,7 +4876,7 @@ msgstr "Szűrés nyelv alapján (Jelenlegi: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "A saját tevékenységekről szóló értesítések engedélyeinek megszabása"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Értesítések forrásainak szűrése"
@@ -4747,11 +4884,11 @@ msgstr "Értesítések forrásainak szűrése"
msgid "Finalizing"
msgstr "Befejezés folyamatban…"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Végre!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Pénzügy"
msgid "Find accounts to follow"
msgstr "Követendő fiókok felfedezése"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Ismerősök felkutatása"
@@ -4799,7 +4936,7 @@ msgstr "Követendő személyek felfedezése"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Bejegyzések, felhasználók és hírfolyamok felfedezése a Blueskyon"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Ismerősök felkutatása"
@@ -4944,8 +5081,12 @@ msgstr "<0>{0}0> és <1>{1}1> követi"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "<0>{0}0>, <1>{1}1> és {2, plural, one {#} other {#}} további személy követi"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr "Csak követők csatlakozhatnak"
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "@{0} Általad ismert követői"
@@ -4995,19 +5136,16 @@ msgstr "Mostantól követed: {handle}"
msgid "Following feed preferences"
msgstr "Követett hírfolyam"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Követett hírfolyam"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Követ Téged"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Követ Téged"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Betűtípus"
@@ -5069,7 +5207,7 @@ msgstr "Elfelejtetted?"
msgid "Free your feed"
msgstr "Szabadítsd fel a hírfolyamodat!"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "Forrás"
@@ -5086,35 +5224,35 @@ msgstr "A(z) <0/> hírfolyamból"
msgid "Generate a starter pack"
msgstr "Kezdőcsomag létrehozása"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Meghívó létrehozása"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Új meghívó létrehozása"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Új meghívó létrehozása"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "A Germ DM szétkapcsolva"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Germ DM-hivatkozás"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "A Germ DM újra összekapcsolva"
@@ -5122,46 +5260,50 @@ msgstr "A Germ DM újra összekapcsolva"
msgid "Get help"
msgstr "Súgó"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr "Értesítés, ha valaki regisztrál a kezdőcsomagoddal, megváltozik a hitelesítési állapotod vagy más egyéb esemény történik."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Értesítés, ha valaki követni kezd Téged."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Értesítés, ha valaki kedvel egy bejegyzést, amelyet megosztottál."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Értesítés, ha valaki kedveli az egyik bejegyzésedet."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr "Értesítés, ha valaki kedveli az egyik megosztott bejegyzésedet."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Értesítés, ha valaki megemlít Téged."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Értesítés, ha valaki idézi az egyik bejegyzésedet."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Értesítés, ha valaki válaszol az egyik bejegyzésedre."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Értesítés, ha valaki megoszt egy bejegyzést, amelyet megosztottál."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Értesítés, ha valaki megosztja az egyik bejegyzésedet."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr "Értesítés, ha valaki megosztja az egyik megosztott bejegyzésedet."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr "Értesítés, ha egy követett bejegyzéssel kapcsolatban történik valami."
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Feliratkozás értesítésekre"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Értesülhetsz kívánt fiókok új tevékenységeiről."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Feliratkozás {name} új bejegyzéseire"
@@ -5174,27 +5316,27 @@ msgstr "Feliratkozás a fiók tevékenységeire"
msgid "Get notified when {name} posts"
msgstr "Feliratkozás {name} új bejegyzéseire"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Feliratkozás egy fiók új bejegyzéseire"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Rendben"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIF sikeresen feltöltve"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Adj arcot a profilodnak!"
@@ -5213,20 +5355,21 @@ msgstr "Az erőszak népszerűsítése"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Vissza"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Vissza"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Vissza az előző lépéshez"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Ugrás a kezdőoldalra"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Ugrás a kezdőoldalra"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Ugrás a kezdőoldalra"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Ugrás a fiókbeállításokhoz"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Ugrás a beszélgetéshez vele: {0}"
@@ -5299,14 +5440,14 @@ msgstr "Tovább"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Profil megnyitása"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
-msgstr "A(z) {chatName} megnevezésű csevegőcsoport megnyitása"
+msgstr "A(z) {chatName} megnevezésű csoportbeszélgetés megnyitása"
#: src/components/dms/ConvoMenu.tsx:268
msgid "Go to user's profile"
@@ -5320,8 +5461,8 @@ msgstr "Ugrás a felhasználó profiljára"
msgid "Going live is currently disabled for your account"
msgstr "A fiókodról jelenleg nem képes élő adást indítani"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Rendben"
@@ -5340,59 +5481,75 @@ msgstr "Az erőszak látványos megjelenítése"
msgid "Grooming or predatory behavior"
msgstr "Kiskorúak kizsákmányolása vagy szexuális ragadozás"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr "Csoportbeszélgetés"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "Csoportmeghívó-kezelési párbeszédablak"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "Csoport zárolva"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
-msgstr "Csevegőcsoport elnémítva"
+msgstr "Csoportbeszélgetés elnémítva"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
-msgstr "Átnevezték a csevegőcsoportot"
+msgstr "Átnevezték a csoportbeszélgetést"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
-msgstr "Csevegőcsoport beállításai"
+msgstr "Csoportbeszélgetés beállításai"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "Csoport zárolása feloldva"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
-msgstr "Csevegőcsoport némítása feloldva"
+msgstr "Csoportbeszélgetés némítása feloldva"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
-msgstr "A csevegőcsoportok még nem elérhetők."
+msgstr "A csoportbeszélgetés funkció még nem elérhető."
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
-msgstr "A csevegőcsoportok mostantól elérhetők."
+msgstr "A csoportbeszélgetés funkció mostantól elérhető."
+
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr "Egy csoportbeszélgetésnek legfeljebb {0, plural, one {#} other {#}} tagja lehet."
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "A csoport zárolva van"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Csoportnév"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr "A csoportnév túl hosszú. A korlát {MAX_GROUP_NAME_GRAPHEME_LENGTH} karakter."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Informatikai rendszerek feltörése (hackelés) vagy támadása"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Ez a felhasználónév túl hosszú. Adj meg egy rövidebbet."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "Folyamatban lévő események"
@@ -5446,7 +5603,7 @@ msgstr "Veszélyes vagy káros tevékenységek"
msgid "Harming or endangering minors"
msgstr "Kiskorúak veszélyeztetése vagy károsítása"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Címke"
@@ -5458,8 +5615,8 @@ msgstr "Címke: {tag}"
msgid "Hate speech"
msgstr "Gyűlöletbeszéd"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Ha már rendelkezel kóddal, <0>kattints ide0>."
@@ -5483,7 +5640,7 @@ msgstr "A visszaélések elkerülése érdekében a Bluesky 7 napig megtartja, m
msgid "Help"
msgstr "Súgó"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Segíts másoknak megbizonyosodni arról, hogy valódi személy vagy egy profilkép létrehozásával!"
@@ -5547,7 +5704,7 @@ msgstr "Testreszabási lehetőségek elrejtése"
#: src/components/dms/SystemMessageGroup.tsx:57
msgid "Hide group chat updates"
-msgstr ""
+msgstr "Csoportbeszélgetéses események elrejtése"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:533
msgid "Hide lists"
@@ -5652,18 +5809,18 @@ msgstr "Hmmmm… Az adatok betöltése meghiúsult. A részleteket alább látha
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmmm… Ez a moderálási szolgáltatás nem található."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Egy pillanat! A videófeltöltés lehetősége még nem mindenki számára elérhető. Próbáld újra később."
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Hátra az agarakkal! Ez a funkció Számodra még nem elérhető. Próbáld újra később."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Kezdőoldal"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Hosszabb helyettesítő szövegek megjelenítése/levágása"
@@ -5757,7 +5914,7 @@ msgstr "A lista törlése nem vonható vissza."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Ha rendelkezel saját tartománnyal, akkor az is lehet a felhasználóneved. Így magadtól is hitelesítheted a kiléted. <0>További információ0>."
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Ha frissítened kell az e-mail-címedet, <0>kattints ide0>."
@@ -5765,7 +5922,7 @@ msgstr "Ha frissítened kell az e-mail-címedet, <0>kattints ide0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "A bejegyzés törlése nem vonható vissza."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Ha frissíted az e-mail-címedet, akkor a jelenleg beállított kétlépcsős azonosítás ki lesz kapcsolva."
@@ -5773,7 +5930,6 @@ msgstr "Ha frissíted az e-mail-címedet, akkor a jelenleg beállított kétlép
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "A jelszó megváltoztatásához egy ellenőrzőkódot fogunk küldeni, hogy igazolhasd a kiléted."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "A saját fiókodra vonatkozó értesítési beállításokat a <0>Beállítások menü Adatvédelem és biztonság almenüjében0> szabhatod személyre."
@@ -5786,23 +5942,33 @@ msgstr "Ha fejlesztő vagy, saját kiszolgálót is üzemeltethetsz."
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!"
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr "Figyelmen kívül hagyás"
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr "Csatlakozási kérelem figyelmen kívül hagyása"
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Kép"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "{0}. kép"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "{1}/{0}. kép"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "{imageCount}/{0}. kép"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Képgyorsítótár kiürítve. {0} hely felszabadult."
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "Galéria – {0} kép"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "A kép a jelenlegi moderálási beállításaid miatt el van rejtve."
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "A kép nem elérhető."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Képlehetőségek"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Megszemélyesítés"
msgid "Import contacts"
msgstr "Névjegyek importálása"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Névjegyek importálása"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Importáld a névjegyeidet és találd meg az ismerőseidet!"
@@ -5881,40 +6047,40 @@ msgstr "Importálás dátuma: {0}"
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 "Az életkorodnak megfelelő tartalmak megjelenítése érdekében tudnunk kell a születési dátumodat. Ezt az adatot csak egyszer fogjuk elkérni Tőled és bizalmasan kezeljük."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "Alkalmazáson belüli"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Alkalmazáson belüli értesítések"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr "Alkalmazáson belüli, mindenkitől"
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr "Alkalmazáson belüli, az Általad követett személyektől"
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr "Alkalmazáson belüli, leküldéses"
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr "Alkalmazáson belüli, leküldéses, mindenkitől"
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr "Alkalmazáson belüli, leküldéses, az Általad követett személyektől"
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "Nincsenek beérkező üzenetek"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Elfogytak a beérkező üzenetek."
@@ -5963,6 +6129,10 @@ msgstr "Bejegyzések mentése (más néven: könyvjelzők)"
msgid "Invalid 2FA confirmation code."
msgstr "Érvénytelen kétlépcsős azonosítási kód."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr "Érvénytelen meghívó."
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Érvénytelen felhasználónév. Adj meg egy másikat."
@@ -5977,10 +6147,14 @@ msgstr "Érvénytelen kapcsolatbalépési beállítások."
msgid "Invalid phone number"
msgstr "Ez a telefonszám érvénytelen"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Érvénytelen jelentési ok"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr "Érvénytelen visszavonási kérelem."
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Érvénytelen ellenőrzőkód"
@@ -6010,12 +6184,12 @@ msgstr "Ismerősök meghívása"
msgid "Invite friends <0/>"
msgstr "Ismerősök meghívása <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Meghívó"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "Meghívó létrehozva."
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "Meghívó letiltva."
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Még csak Te szerepelsz a kezdőcsomagban. A fenti keresővel másokat is hozzáadhatsz."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "Állásazonosító: {0}"
@@ -6083,6 +6257,11 @@ msgstr "Állásazonosító: {0}"
msgid "Jobs"
msgstr "Karrier"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr "Csatlakozás"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Karrier"
msgid "Join Bluesky"
msgstr "Csatlakozz a Blueskyhoz!"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr "Csatlakozás a csoportbeszélgetéshez"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr "Csatlakozási kérelem visszavonva."
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Csatlakozz hozzánk!"
msgid "Journalism"
msgstr "Sajtó"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Szerkesztés folytatása"
@@ -6143,7 +6331,7 @@ msgstr "A fiókodra helyezett feljegyzések"
msgid "Labels on your content"
msgstr "A tartalmadra helyezett feljegyzések"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Nyelvi beállítások"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Legújabb"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "További információ erről a figyelmeztetésről"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "További információ a Blueskyos hitelesítésől"
@@ -6239,7 +6427,7 @@ msgstr "További információ a Blueskyos hitelesítésől"
msgid "Learn more about what is public on Bluesky."
msgstr "További információ a Bluesky-tartalmak nyilvánosságáról."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "További információ a Germ DM-hivatkozásokról"
@@ -6252,8 +6440,8 @@ msgstr "További információ a <0>fiókbeállításokban0>."
msgid "Learn more."
msgstr "További információ."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Elhagyás"
@@ -6276,7 +6464,7 @@ msgstr "Csevegés elhagyása"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Beszélgetés elhagyása"
@@ -6284,15 +6472,15 @@ msgstr "Beszélgetés elhagyása"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Beszélgetés elhagyása"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
-msgstr "Csevegőcsoport elhagyása"
+msgstr "Csoportbeszélgetés elhagyása"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
-msgstr "Csevegőcsoport elhagyása"
+msgstr "Csoportbeszélgetés elhagyása"
#: src/components/dialogs/LinkWarning.tsx:83
#: src/components/dialogs/LinkWarning.tsx:91
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Világos"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Tetszik ({0, plural, one {# kedvelés} other {# kedvelés}})"
@@ -6346,11 +6534,7 @@ msgstr "Kedvelj 10 megjegyzést!"
msgid "Like 10 posts to train the Discover feed"
msgstr "Kedvelj 10 megjegyzést a Követett hírfolyam idomításához!"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Értesítések kedvelésekről"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Hírfolyam kedvelése"
@@ -6358,8 +6542,8 @@ msgstr "Hírfolyam kedvelése"
msgid "Like this labeler"
msgstr "Feljegyző kedvelése"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Kedvelők"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "{0, plural, one {#} other {#}} felhasználó kedveli"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "{likeCount, plural, one {#} other {#}} felhasználó kedveli"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Kedvelések"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Megosztott bejegyzések kedvelése"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Értesítések megosztott bejegyzések kedveléséről"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "A bejegyzést kedvelők"
@@ -6409,11 +6589,11 @@ msgstr "A bejegyzést kedvelők"
msgid "Linear"
msgstr "Egyszerű"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "Vágólapra helyezve"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Lista"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Feloldottad a listán szereplő személyek némítását"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listák"
@@ -6545,7 +6725,7 @@ msgstr "Élő esemény ismét megjelenítve"
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."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "Az élő adások kísérleti fázisban vannak"
@@ -6595,27 +6775,27 @@ msgstr "Kapcsolatbalépési beállítások betöltése…"
msgid "Loading..."
msgstr "Betöltés…"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "Zárolás"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
-msgstr "Csevegőcsoport zárolása"
+msgstr "Csoportbeszélgetés zárolása"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
-msgstr "Csevegőcsoport zárolása"
+msgstr "Csoportbeszélgetés zárolása"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
-msgstr "A csevegőcsoport zárolása"
+msgstr "A csoportbeszélgetés zárolása"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "Zárolva"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Napló"
@@ -6662,7 +6842,7 @@ msgstr "Úgy tűnik, hogy hiányzik a Követett hírfolyamod. <0>Kattints ide, h
msgid "Love GIFs"
msgstr "Szerelmes GIF-ek"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "A fiók e-mail-beállításainak testreszabása"
@@ -6687,9 +6867,8 @@ msgstr "Hitelesítési beállítások"
msgid "Manage your muted words and tags"
msgstr "Elnémított szavak és címkék kezelése"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Összes megjelölése olvasottként"
@@ -6698,13 +6877,12 @@ msgstr "Összes megjelölése olvasottként"
msgid "Mark as read"
msgstr "Megjelölés olvasottként"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Összes üzenet megjelölve olvasottként"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Talán később"
@@ -6727,25 +6905,21 @@ 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."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Tagok"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "A tagok továbbra is képesek lesznek az üzenetek elolvasására, de újakat nem tudnak küldeni."
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Megemlítési értesítések"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "a megemlített felhasználók"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Említések"
@@ -6775,22 +6949,22 @@ msgstr "Üzenetküldés neki: {0}"
msgid "Message {displayName}"
msgstr "Üzenetküldés neki: {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Törölt üzenet"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Üzenet törölve"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Az üzenet elküldése meghiúsult."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "@{0} üzenete: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Az üzenet túl hosszú"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "Az üzenet túl hosszú ({MAX_DM_GRAPHEME_LENGTH}/{graphemeCount})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Üzenetlehetőségek"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Üzenetek"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr "A másik fél üzenetei el vannak rejtve, mivel letiltott Téged."
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr "A másik fél üzenetei el vannak rejtve, mivel letiltottad őt."
@@ -6838,10 +7012,6 @@ msgstr "Éjfél"
msgid "Minor harassment or bullying"
msgstr "Kiskorúak zaklatása"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Egyéb értesítések"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Félrevezető tartalom"
@@ -6850,7 +7020,7 @@ msgstr "Félrevezető tartalom"
msgid "Missing media"
msgstr "Hiányzó médiatartalmak"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderálás"
@@ -6894,7 +7064,7 @@ msgstr "Moderálólista frissítve"
msgid "Moderation lists"
msgstr "Moderálólisták"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Moderálólisták"
@@ -6903,7 +7073,7 @@ msgstr "Moderálólisták"
msgid "moderation settings"
msgstr "moderálási beállítások"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Moderálási állapotok"
@@ -6949,7 +7119,7 @@ msgstr "Filmek"
msgid "Music"
msgstr "Zene"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Elnémítás"
@@ -6994,9 +7164,9 @@ msgstr "Lista elnémítása"
msgid "Mute these accounts?"
msgstr "Biztosan el akarod némítani az alábbi fiókokat?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
-msgstr "Csevegőcsoport elnémítása"
+msgstr "Csoportbeszélgetés elnémítása"
#: src/components/dialogs/MutedWords.tsx:194
msgid "Mute this word for 24 hours"
@@ -7032,7 +7202,7 @@ msgstr "Válaszlánc elnémítása"
msgid "Mute words & tags"
msgstr "Szavak és címkék elnémítása"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "Elnémítva"
@@ -7040,7 +7210,7 @@ msgstr "Elnémítva"
msgid "Muted accounts"
msgstr "Elnémított fiókok"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Elnémított fiókok"
@@ -7108,8 +7278,8 @@ msgstr "Ugrás a következő képernyőre"
msgid "Navigates to your profile"
msgstr "Ugrás a profilodra"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Szerzői jogsértést, jogi követelést vagy szabályzatszegést jelentenél?"
@@ -7136,34 +7306,34 @@ msgstr "{firstAuthorLink} új {postsCount, plural, one {bejegyzést} other {beje
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{firstAuthorName} új {postsCount, plural, one {bejegyzést} other {bejegyzéseket}} tett közzé"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Új csevegés"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "Új csevegés vele: {0}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "Új csevegés velük: {0} és {1}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "Új csevegés velük: {0}, {1} és {memberCount, plural, other {{memberCount}}} további személy."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Új e-mail-cím"
@@ -7174,31 +7344,27 @@ msgstr "Új e-mail-cím"
msgid "New Feature"
msgstr "Új funkció"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Értesítések új követőkről"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Új követők"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
-msgstr "Csevegőcsoport létrehozása"
+msgstr "Csoportbeszélgetés létrehozása"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "Csoportbeszélgetés létrehozása"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
-msgstr "Új csevegőcsoport az alábbi személyekkel:"
+msgstr "Új csoportbeszélgetés az alábbi személyekkel:"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:228
#: src/screens/Settings/components/ChangeHandleDialog.tsx:236
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Új bejegyzés"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Új bejegyzés"
@@ -7262,8 +7428,8 @@ msgstr "Hírek"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "A(z) „{query}” kifejezésre nincs találat."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "A GIF-ek megjelenítése meghiúsult. Próbáld újra később."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Nincs előnézet"
@@ -7362,7 +7528,7 @@ msgstr "Abbahagytad {0} követését"
msgid "No media yet"
msgstr "Még nincsenek médiatartalmak"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Még nem rendelkezel üzenetekkel"
@@ -7378,12 +7544,12 @@ msgstr "Névtelen"
msgid "No notifications yet!"
msgstr "Még nincsenek értesítéseid."
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Senkitől"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Senkitől"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Nincs találat"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Nincs találat"
@@ -7509,10 +7675,6 @@ msgstr "Intim területeket ábrázoló nem szexuális képek"
msgid "Non-sexual Nudity"
msgstr "Nemszexuális meztelenség"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Nincs"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "Ezen a platformon nem elérhető."
msgid "Not followed by anyone you’re following"
msgstr "Nincsenek ismert követők"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Ez a tartalom nem található"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Még nem állsz készen a közzétételre? Gyűjtsd össze a gondolataidat piszkozatok formájában és várd meg a tökéletes pillanatot!"
@@ -7548,44 +7710,31 @@ msgstr "Megjegyzés: Ez a bejegyzés csak a bejelentkezett felhasználók szám
msgid "Nothing saved yet"
msgstr "Még semmit sem mentettél"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Értesítési beállítások"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Értesítési hangok"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Értesítések"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Értesítés egyéb történésekről; pl.: ha valaki az egyik kezdőcsomagoddal regisztrál."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "épp most"
@@ -7601,7 +7750,7 @@ msgstr "Ennek a számnak telefonszámnak kell lennie"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Ki"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "a <0><1/>0> Blueskyon"
msgid "Onboarding reset"
msgstr "Regisztrációs varázslót alaphelyzetbe állítva"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
-msgstr ""
+msgstr "Az egyik címzett nem kíván részt venni csoportbeszélgetésekben."
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Az egyik címzett letiltott Téged, ezért nem veheted fel vele a kapcsolatot."
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr "A kiválasztott fájlok közül legalább egy túl nagy. A korlát {VIDEO_MAX_SIZE_MB} MB."
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Legalább egy piszkozat túl hosszú. {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {Korlát: # karakter.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Legalább egy videóról hiányzik a helyettesítő szöveg."
@@ -7685,6 +7835,26 @@ msgstr "Legalább egy videóról hiányzik a helyettesítő szöveg."
msgid "Only {0} can reply."
msgstr "Csak {0} válaszolhatnak."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr "Csatlakozási kérelmeket csak adminisztrátorok hagyhatnak jóvá."
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr "Csatlakozási kérelmeket csak adminisztrátorok hagyhatnak figyelmen kívül."
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr "Ehhez a csoportbeszélgetéshez csak követők csatlakozhatnak."
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Csak a kölcsönös követőktől"
msgid "Only image files are supported"
msgstr "Csak a képfájlok támogatottak"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr "Csak a(z) {0} által követett személyek csatlakozhatnak."
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr "Csak a csoportbeszélgetés tulajdonosa által követett személyek csatlakozhatnak"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Csak a WebVTT (.vtt) formátum támogatott"
@@ -7712,7 +7892,7 @@ msgstr "Hoppá! Valami balul sült el!"
msgid "Oops!"
msgstr "Hoppá!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Profilképkészítő megnyitása"
@@ -7720,12 +7900,17 @@ msgstr "Profilképkészítő megnyitása"
msgid "Open camera"
msgstr "Kamera megnyitása"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr "Csevegés megnyitása"
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "{displayName} beállításainak megtekintése"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Beszélgetési beállítások megnyitása"
@@ -7739,16 +7924,16 @@ msgstr "Oldalsó menü megnyitása"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Emojiválasztó megnyitása"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Hírfolyam tulajdonságainak megnyitása"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Hírfolyambeállítások megnyitása"
@@ -7760,13 +7945,17 @@ msgstr "Teljes emojilista megnyitása"
msgid "Open Germ DM"
msgstr "A Germ DM megnyitása"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
-msgid "Open group chat settings"
-msgstr "Csevegőcsoport beállításainak megnyitása"
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr "Csoportbeszélgetés megnyitása"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
+msgid "Open group chat settings"
+msgstr "Csoportbeszélgetés beállításainak megnyitása"
+
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "A(z) {niceUrl} hivatkozás megnyitása"
@@ -7790,8 +7979,8 @@ msgstr "Csomag megnyitása"
msgid "Open post options menu"
msgstr "Bejegyzéslehetőségek megnyitása"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Profil megnyitása"
@@ -7817,6 +8006,10 @@ msgstr "Mesekönyv-oldal megnyitása"
msgid "Open system log"
msgstr "Rendszernapló megnyitása"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr "Csoportbeszélgetés megnyitása"
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Hibakeresési bejegyzés részleteinek megnyitása"
msgid "Opens alt text dialog"
msgstr "Helyettesítő szöveget tartalmazó ablak megnyitása"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Az eszköz kamerájának megnyitása"
@@ -7858,22 +8051,24 @@ msgstr "Bejegyzésíró megnyitása"
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: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ó."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_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_GALLERY_IMAGES, plural, other {# kép}}, vagy egy videó vagy GIF csatolható."
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Regisztrációs varázsló indítása"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Bejelentkezési varázsló megnyitása"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Teljes kép megtekintése"
@@ -7890,7 +8085,7 @@ msgstr "Fényképválasztó megnyitása"
msgid "Opens link {0}"
msgstr "A(z) „{0}” hivatkozás megnyitása"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Élőadásos állapoti párbeszédablak megnyitása"
@@ -7919,9 +8114,9 @@ msgstr "Bejegyzésíró felület megnyitása"
msgid "Opens this draft in the composer"
msgstr "Piszkozat szerkesztése a bejegyzésíró felületen"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Saját profil megnyitása"
@@ -7997,12 +8192,12 @@ msgstr "Blogbejegyzés"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Megkaptuk a jelentésedet."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "A fiókod ellen jelentések érkeztek, és miután a moderátoraink felülvizsgálták őket, úgy döntöttek, hogy megfosztanak a csevegési jogosultságoktól a Blueskyon."
@@ -8010,16 +8205,17 @@ msgstr "A fiókod ellen jelentések érkeztek, és miután a moderátoraink fel
msgid "Owner"
msgstr "Tulajdonos"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr "A tulajdonosnak zárolnia kell a csoportot kilépés előtt."
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Az oldal nem található"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Az oldal nem található"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Videó szüneteltetése"
msgid "People"
msgstr "Személyek"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "A(z) {ownerName} által követett személyek csatlakozását nem kell jóváhagyni"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "A(z) {ownerName} által követett személyek kérelmezhetik a csatlakozást"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "A(z) @{0} által követett személyek"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Az őt követő személyek: @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Követett személyektől"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "Az Általad követett személyek kézi jóváhagyás nélkül csatlakozhatnak"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "Az Általad követett személyek kérelmezhetik a csatlakozást"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Felnőtteknek szánt képek."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Hírfolyam kitűzése"
@@ -8152,7 +8348,7 @@ msgstr "Hírfolyam kitűzése"
msgid "Pin to home"
msgstr "Kitűzés a kezdőoldalra"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Kitűzés a kezdőoldalra"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Kitűzve"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "A(z) {0} hírfolyam kitűzve"
@@ -8236,7 +8432,7 @@ msgstr "Válassz egy felhasználónevet."
msgid "Please choose your password."
msgstr "Válassz egy jelszót."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Kérjük, kattints a tőlünk kapott e-mailben található hivatkozásra a címed visszaigazolásához. Ez fontos, ha továbbra is használni kívánod a Bluesky összes funkcióját."
@@ -8244,7 +8440,7 @@ msgstr "Kérjük, kattints a tőlünk kapott e-mailben található hivatkozásra
msgid "Please complete the verification captcha."
msgstr "Végezd el a captchás ellenőrzést."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "A videófeltöltéshez először hitelesítened kell az e-mail-címedet."
@@ -8265,14 +8461,14 @@ msgstr "Adj meg egy jelszót! A jelszónak legalább 8 karakter hosszúnak kell
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Nevezd el egyedien az alkalmazásjelszót vagy használd a véletlenszerűen létrehozottat."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "A megadott kód érvénytelen."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "A megadott e-mail-cím érvénytelen."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Kérjük, egy érvényes és nem átmeneti e-mail-címet adj meg. Lehetséges, hogy a jövőben is szükséged lesz rá."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Add meg a(z) <0>{0}0> címre küldött kódot."
@@ -8293,7 +8489,7 @@ msgstr "Add meg a(z) <0>{0}0> címre küldött kódot."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Add meg a megerősítőkódot és az új jelszót."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Add meg a korábbi e-mail-címedre küldött kódot."
@@ -8306,7 +8502,7 @@ msgstr "Add meg az e-mail-címedet."
msgid "Please enter your invite code."
msgstr "Add meg a meghívókódodat."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Add meg az új e-mail-címedet."
@@ -8323,7 +8519,7 @@ msgstr "Add meg a felhasználónevedet"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Magyarázd el, hogy miért gondolod úgy, hogy a(z) {0} helytelenül alkalmazta ezt a feljegyzést"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Magyarázd el, hogy miért gondolod úgy, hogy jogtalanul fosztottak meg a csevegési jogosultságodtól"
@@ -8366,7 +8562,7 @@ msgstr "Névjegyek importálásához a natív alkalmazást kell használnod."
msgid "Please use the native app to sync your contacts."
msgstr "Névjegyek szinkronizálásához a natív alkalmazást kell használnod."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "E-mail-cím visszaigazolása"
@@ -8383,7 +8579,7 @@ msgstr "Politika"
msgid "Porn"
msgstr "Pornó"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Közzététel"
@@ -8403,12 +8599,12 @@ msgstr "Fénykép közzététele"
msgid "Post a video"
msgstr "Videó közzététele"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Összes közzététele"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Közzététel mégis"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Letiltott bejegyzés"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "@{0} bejegyzése"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Törölted a bejegyzést"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "A bejegyzés közzététele meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra."
@@ -8454,7 +8650,7 @@ msgstr "Elrejtetted a bejegyzést"
msgid "Post interaction settings"
msgstr "Kapcsolatbalépési beállítások"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Kapcsolatbalépési beállítások"
@@ -8464,8 +8660,8 @@ msgstr "Kapcsolatbalépési beállítások"
msgid "Post language selection"
msgstr "Bejegyzés nyelvének megadása"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Meghívó közzététele"
@@ -8491,7 +8687,6 @@ msgstr "Bejegyzés kitűzése felolva"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "A különböző bejegyzéseket a szövegük, címkéik vagy mindkettő
msgid "Posts hidden"
msgstr "Rejtett bejegyzések"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Bejegyzések, válaszok"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Potenciálisan félrevezető hivatkozás"
@@ -8528,6 +8719,7 @@ msgstr "Az újracsatlakozáshoz kattints ide."
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Az újrapróbálkozáshoz kattints ide."
@@ -8536,7 +8728,7 @@ msgstr "Az újrapróbálkozáshoz kattints ide."
msgid "Press to view followers of this account that you also follow"
msgstr "Kattints ide a fiók azon követőinek megjelenítéséhez, akiket Te is követsz."
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Előnézet"
@@ -8559,21 +8751,20 @@ msgstr "Adatvédelem"
msgid "Privacy and security"
msgstr "Adatvédelem és biztonság"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Adatvédelem és biztonság"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Adatvédelmi- és biztonsági beállítások"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ 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:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "GIF feldolgozása folyamatban…"
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Videó feldolgozása folyamatban…"
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Feldolgozás folyamatban…"
@@ -8602,8 +8793,8 @@ msgstr "Feldolgozás folyamatban…"
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
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:1672
+#: src/view/com/composer/Composer.tsx:1721
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:1661
+#: src/view/com/composer/Composer.tsx:1710
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:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Válasz közzététele"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Leküldéses"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Leküldéses értesítések"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr "Leküldéses, mindenkitől"
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr "Leküldéses, az Általad követett személyektől"
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "A QR-kód letöltése megtörtént"
msgid "QR code saved to your camera roll!"
msgstr "A QR-kód fényképalbumba mentése megtörtént"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Értesítések idézésekről"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Idézés letiltva"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Idézések"
@@ -8733,11 +8920,11 @@ msgstr "Korlát átlépve. Próbáld újra később."
msgid "Re-attach quote"
msgstr "Idézet visszakapcsolása"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Meghívó letiltásának feloldása"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Meghívó letiltásának feloldása"
@@ -8745,8 +8932,8 @@ msgstr "Meghívó letiltásának feloldása"
msgid "React with {emoji}"
msgstr "Reagálás a(z) {emoji}-emojival"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Reakciók"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "További információ a keresésszűrőkről (angol nyelven)"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Blogbejegyzés megtekintése (angolul)"
@@ -8812,11 +8999,11 @@ msgstr "Valódi emberek."
msgid "Reason for appeal"
msgstr "Fellebbezési ok"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Alkalmazáson belüli értesítések fogadása"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Leküldéses értesítések fogadása"
@@ -8841,6 +9028,10 @@ msgstr "Javasolt"
msgid "Reconnect"
msgstr "Újracsatlakozás"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr "A megtekintéshez frissítsd a lapot."
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Elutasítás"
msgid "Reject chat request"
msgstr "Csevegési kérelem elutasítása"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Beszélgetések újratöltése"
@@ -8872,7 +9063,7 @@ msgstr "Eltávolítás"
#: src/components/dms/ChatProfileTabs.tsx:153
msgid "Remove {displayName} from group chat"
-msgstr "{displayName} eltávolítása a csevegőcsoportból"
+msgstr "{displayName} eltávolítása a csoportbeszélgetésből"
#: src/components/StarterPack/Wizard/WizardListCard.tsx:62
msgid "Remove {displayName} from starter pack"
@@ -8880,7 +9071,7 @@ msgstr "{displayName} eltávolítása a kezdőcsomagból"
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229
msgid "Remove {displayName} from this group chat"
-msgstr "{displayName} eltávolítása a csevegőcsoportból"
+msgstr "{displayName} eltávolítása a csoportbeszélgetésből"
#: src/screens/Search/components/SearchHistory.tsx:105
msgid "Remove {historyItem}"
@@ -8896,17 +9087,17 @@ msgstr "Fiók eltávolítása"
msgid "Remove all contacts"
msgstr "Az összes névjegy eltávolítása"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Melléklet eltávolítása"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Profilkép eltávolítása"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Borítókép eltávolítása"
@@ -8914,8 +9105,9 @@ msgstr "Borítókép eltávolítása"
msgid "Remove caption file"
msgstr "Feliratfájl eltávolítása"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Beágyazott tartalom eltávolítása"
@@ -8933,8 +9125,8 @@ msgstr "Hírfolyam eltávolítása"
msgid "Remove from chat"
msgstr "Eltávolítás a csevegésből"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Eltávolítás a mentett bejegyzések közül"
msgid "Remove from your feeds?"
msgstr "Eltávolítás a hírfolyamgyűjteményből"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Kép eltávolítása"
@@ -9009,11 +9201,11 @@ msgstr "Hitelesítés eltávolítása"
msgid "Remove your verification for this account?"
msgstr "Biztosan el akarod távolítani a hitelesítésedet erről a fiókról?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Eltávolította a szerző"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Eltávolítottad ezt a tartalmat"
@@ -9035,7 +9227,7 @@ msgstr "Eltávolítva a mentett bejegyzések közül"
msgid "Removed from starter pack"
msgstr "Profil eltávolítva a kezdőcsomagból"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Válasz a bejegyzésedre"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Válaszok"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
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
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Válasz írása ({0, plural, one {# válasz} other {# válasz}})"
@@ -9125,10 +9316,6 @@ msgstr "Elrejtve a válaszlánc szerzője által"
msgid "Reply Hidden by You"
msgstr "Elrejtve Általad"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Értesítések válaszokról"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "A teljes válaszlánc beállításait az eredeti szerző kezeli"
@@ -9146,9 +9333,9 @@ msgstr "Frissítetted a válasz láthatóságát"
msgid "Reply was successfully hidden"
msgstr "Elrejtetted a választ"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Jelentés"
@@ -9164,13 +9351,13 @@ msgstr "Fiók jelentése"
msgid "Report conversation"
msgstr "Beszélgetés jelentése"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Párbeszédablak jelentése"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Hírfolyam jelentése"
@@ -9179,7 +9366,7 @@ msgstr "Hírfolyam jelentése"
msgid "Report list"
msgstr "Lista jelentése"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Üzenet jelentése"
@@ -9199,8 +9386,8 @@ msgstr "Kezdőcsomag jelentése"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "A jelentést megkaptuk"
@@ -9213,16 +9400,16 @@ msgstr "Beszélgetés jelentése"
msgid "Report this feed"
msgstr "Hírfolyam jelentése"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
-msgstr "Csevegőcsoport jelentése"
+msgstr "Csoportbeszélgetés jelentése"
#: src/components/moderation/ReportDialog/copy.ts:31
msgid "Report this list"
msgstr "Lista jelentése"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Élő adás jelentése"
@@ -9256,10 +9443,6 @@ msgstr "Megosztás"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Megosztás ({0, plural, one {# megosztás} other {# megosztás}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Értesítések megosztásokról"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Megosztottad"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Megosztások"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "A bejegyzés megosztásai"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Megosztott bejegyzések megosztása"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Értesítések megosztott bejegyzések megosztásáról"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr "Csatlakozási kérelem küldése"
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr "Kérelem jóváhagyva."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Kód kérelmezése"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr "Kérelem figyelmen kívül hagyva."
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr "Csatlakozási kérelem"
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr "Kérelem elküldve"
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "Kérelmek"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr "Csatlakozási kérelmek"
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Helyettesítő szöveg hozzáadásának megkövetelése közzététel előtt"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "E-mailben kapott kód megkövetelése a bejelentkezéshez."
@@ -9328,7 +9534,11 @@ msgstr "Szükséges a tárhelyszolgáltatóhoz"
msgid "Required in your region"
msgstr "Szükséges ebben a régióban"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr "Kérelem visszavonása"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Újraküldés"
@@ -9393,15 +9603,16 @@ msgstr "A legutóbb meghiúsult folyamat újrapróbálása"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "A legutóbb meghiúsult folyamat újrapróbálása"
msgid "Retry"
msgstr "Újra"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Jelentési lehetőségégek betöltésének újrapróbálása"
@@ -9426,14 +9637,14 @@ msgstr "Jelentési lehetőségégek betöltésének újrapróbálása"
msgid "Return to previous page"
msgstr "Vissza az előző oldalra"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Vissza a kezdőoldalra"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Vissza az előző oldalra"
@@ -9454,7 +9665,7 @@ msgstr "Szomorú GIF-ek"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Születési dátum mentése"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Változtatások mentése"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Változtatások mentése"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Mentés"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Piszkozat mentése"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "QR-kód mentése"
msgid "Save these options for next time"
msgstr "Beállítások megjegyzése"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Mentés a hírfolyamgyűjteménybe"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Mentett"
msgid "Saved Feeds"
msgstr "Mentett hírfolyamok"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Mentett bejegyzések"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Hírfolyam elmentve"
@@ -9551,8 +9764,8 @@ msgstr "Hírfolyam elmentve"
msgid "Say hello!"
msgstr "Köszönj!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "Írj valakinek!"
@@ -9576,18 +9789,18 @@ msgstr "Görgetés jobbra"
msgid "Scroll to top"
msgstr "Vissza a tetejére"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Keresés"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Keresés @{0} bejegyzései között"
@@ -9667,7 +9880,7 @@ msgstr "Keresés a saját bejegyzések között"
msgid "Search posts"
msgstr "Keresés a bejegyzések között"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Profilok keresése"
msgid "Search..."
msgstr "Keresés…"
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Profilok keresése"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Biztonsági lépés szükséges"
@@ -9759,7 +9972,7 @@ msgstr "{langName} kiválasztása"
msgid "Select a color"
msgstr "Szín kiválasztása"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Indok megadása"
@@ -9828,9 +10041,9 @@ msgstr "GIF kiválasztása"
msgid "Select GIF \"{0}\""
msgstr "„{0}” GIF kiválasztása"
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
-msgstr "Csevegőcsoport tagjainak megadása"
+msgstr "Csoportbeszélgetés tagjainak megadása"
#: src/components/dialogs/MutedWords.tsx:151
msgid "Select how long to mute this word for."
@@ -9850,7 +10063,7 @@ msgstr "Nyelv kiválasztása…"
msgid "Select languages"
msgstr "Nyelvek kiválasztása"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Moderálási szolgáltatás kiválasztása"
@@ -9904,11 +10117,11 @@ msgstr "Válaszd ki az érdeklődési köreidet az alábbi lehetőségek közül
msgid "Select your preferred language for translations in your feed."
msgstr "Add meg, hogy milyen nyelvre szeretnéd lefordítani a bejegyzéseket."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Kívánt értesítési csatornák megadása"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "Egy bejegyzéshez csak egyféle médiatartalom csatolható."
@@ -9921,9 +10134,9 @@ msgstr "Önkárosítás vagy veszélyes viselkedés"
msgid "Send code"
msgstr "Kód küldése"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "E-mail küldése"
@@ -9939,7 +10152,7 @@ msgstr "Hibajelentés küldése"
msgid "Send feedback"
msgstr "Visszajelzés küldése"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Üzenet küldése"
@@ -9952,7 +10165,7 @@ msgstr "Bejegyzés küldése neki: {name}"
msgid "Send post to..."
msgstr "Címzett kiválasztása"
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Jelentés küldése neki: {title}"
@@ -9960,7 +10173,7 @@ msgstr "Jelentés küldése neki: {title}"
msgid "Send the message from your phone"
msgstr "Üzenet küldése a telefonról"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Továbbítás személyes üzenetben"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr "Add meg a születési dátumodat és seperc alatt folytathatod a böngé
msgid "Sets email for password reset"
msgstr "E-mail cím beállítása jelszóvisszaállításhoz"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Beállítások"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Saját tevékenységértesítési beállítások"
@@ -10030,39 +10243,39 @@ msgstr "Saját tevékenységértesítési beállítások"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Mások Tőled érkező értesítéseit érintő beállítások"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Kedveléses értesítések beállításai"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Megemlítéses értesítések beállításai"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Új követős értesítések beállításai"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Egyéb értesítések beállításai"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Megosztott bejegyzések kedveléséses értesítéseinek beállításai"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Megosztott bejegyzések megosztásos értesítéseinek beállításai"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Idézéses értesítések beállításai"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Válaszos értesítések beállításai"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Megosztásos értesítések beállításai"
@@ -10079,10 +10292,12 @@ msgstr "Szexuális aktusok vagy erotikus meztelenség."
msgid "Sexually Suggestive"
msgstr "Szexuális tartalom"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Szerző DID-jének továbbítása"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Kép továbbítása"
@@ -10124,7 +10339,7 @@ msgstr "Bejegyzés „at://” URI-jének továbbítása"
msgid "Share QR code"
msgstr "QR-kód továbbítása"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Hírfolyam továbbítása"
@@ -10151,7 +10366,7 @@ msgstr "Továbbítás…"
msgid "Share your contacts to find friends"
msgstr "Oszd meg velünk a névjegyeidet és kutatsd fel az ismerőseidet"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "„Megosztott beállítások” tesztelő"
@@ -10167,16 +10382,16 @@ msgstr "Helyettesítő szöveg megjelenítése"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Megjelenítés mégis"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "Automatizálási feljegyzés megjelenítése"
@@ -10195,7 +10410,7 @@ msgstr "Testreszabási lehetőségek megjelenítése"
#: src/components/dms/SystemMessageGroup.tsx:57
msgid "Show group chat updates"
-msgstr ""
+msgstr "Csoportbeszélgetéses események megjelenítése"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Figyelmeztetés és kiszűrés a hírfolyamokból"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Saját élő állapot megjelenítése"
@@ -10297,15 +10512,17 @@ msgstr "Tartalom megjelenítése"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Jelentkezz be vagy regisztrálj"
msgid "Sign in or create your account to join the conversation!"
msgstr "Jelentkezz be vagy regisztrálj a csatlakozáshoz!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr "A meghívó elfogadásához bejelentkezés szükséges."
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Bejelentkezés egy másik felhasználói fiókba"
@@ -10337,6 +10558,10 @@ msgstr "Bejelentkezés egy másik felhasználói fiókba"
msgid "Sign in to Bluesky or create a new account"
msgstr "Jelentkezz be vagy hozz létre egy Bluesky-fiókot."
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr "A csoportbeszélgetés megtekintéséhez bejelentkezés szükséges."
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "A megtekintéshez bejelentkezés szükséges"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Kijelentkezés"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Kijelentkezés"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Kijelentkezés"
@@ -10391,7 +10616,7 @@ msgstr "Kihagyás"
msgid "Skip contact sharing and continue to the app"
msgstr "Kihagyás és az alkalmazás használatának folytatása"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Üres bejegyzések kihagyása"
@@ -10405,7 +10630,7 @@ msgstr "Bevezető kihagyása és fiók használatának megkezdése"
msgid "Skip to next step"
msgstr "Lépés kihagyása"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "csúszka"
@@ -10413,7 +10638,7 @@ msgstr "csúszka"
msgid "Smaller"
msgstr "Kisebb"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Emlékeztető elhalasztása"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "Valaki elhagyta a csoportot."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Valaki {0} emojival reagált"
@@ -10487,17 +10712,22 @@ msgstr "Valakit eltávolítottak a csoportból"
msgid "Someone was removed from the group"
msgstr "Valaki el lett távolítva a csoportból."
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr "Ezen a helyen egy új funkció kapott helyet"
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Valami nem stimmel a beküldendő adatokkal. Vedd fel a kapcsolatot az ügyfélszolgálattal."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Valami balul sült el"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Valami balul sült el!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Valami balul sült el. Próbáld újra."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Valami balul sült el. Próbáld újra."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Valami nem stimmel? Vedd fel velünk a kapcsolatot!"
@@ -10568,7 +10798,7 @@ msgstr "Sport"
msgid "Start a conversation, and it will appear here."
msgstr "A megkezdett beszélgetések itt fognak megjelenni."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Új csevegés indítása"
@@ -10582,17 +10812,17 @@ msgstr "Személyek felvétele"
msgid "Start adding people!"
msgstr "Vegyél fel személyeket!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Csevegés létrehozása"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Csevegés indítása vele: {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Kezdőcsomag"
@@ -10654,12 +10884,12 @@ msgstr "Adatok törölve. Indítsd újra az alkalmazást."
msgid "Stored as part of a secure code for matching with others"
msgstr "Ezeket az adatokat egy titkosított kód részeként tároljuk ismerősfelkutatás céljából"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Mesekönyv"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 "Szoktál a Twitchen közvetíteni? Ha igen, akkor lehetőséged van az élő állapotodat a blueskyos profilodon is megjeleníteni. A jelvényre koppintva egy felhasználó megnyithatja az élő adásodat."
@@ -10671,8 +10901,8 @@ msgstr "Szoktál a Twitchen közvetíteni? Ha igen, akkor lehetőséged van az
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Küldés"
@@ -10684,9 +10914,9 @@ msgstr "Fellebbezés beküldése"
msgid "Submit Appeal"
msgstr "Fellebbezés beküldése"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Jelentés küldése"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Feliratkozás"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Siker"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Siker!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr "Sikeres csatlakozás."
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Fiók hitelesítve"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Javasolt"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Szürkület"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,20 +11014,20 @@ msgstr "Támogatás"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Ez a funkció a Te országodban még nem támogatott. Próbáld újra később."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
-msgstr ""
+msgstr "Egy felfüggesztett fiók nem vehet részt csoportbeszélgetésekben."
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
-msgstr ""
+msgstr "Egy felfüggesztett fiók nem vehet részt csevegésekben."
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Fiókváltás"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Fiókváltás"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Váltás rá: {0}"
@@ -10828,7 +11062,7 @@ msgstr "Csak címkék"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Koppints az alábbi gombra, hogy hozzáférést biztosíts a Blueskynak a tartózkodási helyedhez. Ezzel az információval automatikusan és pontosan meghatározhatjuk a régiódban megjeleníthető tartalmakat és beállításokat."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr "Részletek"
@@ -10854,33 +11088,51 @@ msgstr "A Blueskyt érintő változtatások megértésének jelzéséhez és elf
msgid "Tap to close context menu"
msgstr "Koppints ide a helyi menü bezárásához"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr "Koppints ide a meghívó hivatkozásának másolásához"
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Koppints ide a bezáráshoz"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr "Koppints ide az azonnali csatlakozáshoz"
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr "Koppints ide a csoportbeszélgetés megnyitásához"
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Koppints ide az eltávolításhoz"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "Koppints ide a(z) „{0}” reakció eltávolításához"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr "Koppints ide a csatlakozási kérelem küldéséhez"
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Koppints ide az újrapróbálkozáshoz"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "Koppints ide a(z) {0} reakció megtekintéséhez"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Koppints ide az összes reakció megtekintéséhez"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Koppints ide a reakciók megtekintéséhez"
@@ -10926,7 +11178,7 @@ msgstr "Feltételek"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10941,7 +11193,7 @@ msgstr "Szöveg és címkék"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Szövegbeviteli mező"
@@ -11051,6 +11303,11 @@ msgstr "Új bejegyzéseknél az alábbi beállítások lesznek az alapértelmeze
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "A régiódban érvényes törvények szerint bizonyos funkciók használatához igazolnod kell a felnőttlétedet. További információért koppints ide."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr "A tagkorlát elérve."
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "Az eredeti bejegyzést a szerzője <0>{suggestedLanguageName}0> nyelvűnek jelölte meg. Szeretnél Te is ezen a nyelven válaszolni?"
@@ -11059,10 +11316,10 @@ msgstr "Az eredeti bejegyzést a szerzője <0>{suggestedLanguageName}0> nyelv
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Az adatvédelmi irányelvek elköltöztek: <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
-msgstr ""
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
+msgstr "A kiválasztott fájl meghaladja {VIDEO_MAX_SIZE_MB, selectordinal, one {az #} other {a #}} MB-os korlátot. Válassz ki egy kisebb videót."
#: src/lib/hooks/useCleanError.ts:41
#: src/lib/strings/errors.ts:19
@@ -11103,9 +11360,9 @@ 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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
-msgstr "Ez a csevegőcsoport jelenleg nem rendelkezik meghívóval."
+msgstr "Ez a csoportbeszélgetés jelenleg nem rendelkezik meghívóval."
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
msgid "There is no time limit for account deactivation, come back any time."
@@ -11117,10 +11374,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "A GIF-ek betöltése meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "Hálózati hiba történt. Próbáld újra"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11128,7 +11387,7 @@ msgstr "Hálózati hiba történt. Próbáld újra"
msgid "There was an issue contacting the server"
msgstr "Megszakadt a kapcsolat a kiszolgálóval"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Megszakadt a kapcsolat a kiszolgálóval. Ellenőrizd az internetkapcsolatot, majd próbáld újra."
@@ -11138,7 +11397,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Az értesítések frissítése meghiúsult. Koppints ide az újrapróbálkozáshoz."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "A bejegyzések lekérése meghiúsult. Koppints ide az újrapróbálkozáshoz."
@@ -11163,7 +11422,7 @@ msgstr "A kiszolgálód adatainak lekérése meghiúsult"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "A hírfolyam eltávolítása meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11256,7 +11515,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "A fellebbezés címzettje: <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Ez a fellebbezés a Bluesky moderálási szolgáltatásához lesz elküldve."
@@ -11265,7 +11524,7 @@ msgstr "Ez a fellebbezés a Bluesky moderálási szolgáltatásához lesz elkül
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "Ez a szerző csak a bejelentkezett felhasználók számára kívánja megtekinthetővé tenni a bejegyzéseit."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "Ezzel a gombbal mások megnyithatják a Germ DM-profilodat üzenetküldés céljából. Az elérhetőség láthatósága a Germ DM-alkalmazásban kezelheő. Ha szét kívánod választani a Bluesky- és Germ DM-fiókjaidat, azt az alábbi gombbal teheted meg."
@@ -11273,7 +11532,12 @@ msgstr "Ezzel a gombbal mások megnyithatják a Germ DM-profilodat üzenetküld
msgid "This chat has ended"
msgstr "A csevegés véget ért"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr "A csoportbeszélgetés megtelt"
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "A csevegés zárolva van"
@@ -11312,7 +11576,11 @@ msgstr "Ez a tartalom jelenleg nem elérhető, mert az egyik kapcsolódó felhas
msgid "This content is not viewable without a Bluesky account."
msgstr "Ezt a tartalmat bejelentkezés nélkül nem tekintheted meg."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr "A csoportbeszélgetés zárolva van."
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11320,7 +11588,7 @@ msgstr "Ez a beszélgetés egy már törölt vagy deaktivált fiókkal történt
msgid "This draft will be permanently deleted."
msgstr "Ez a művelet nem vonható vissza."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Ez az e-mail-cím már hozzá van rendelve a fiókodhoz."
@@ -11362,7 +11630,7 @@ msgstr "Ez a hírfolyam már nem elérhető. Helyette a <0>Felfedezés0> hírf
msgid "This handle is reserved. Please try a different one."
msgstr "Ez a felhasználónév le van foglalva. Adj meg egy másikat."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "A megadott kép nem használható. Javasolt formátumok: JPG és PNG."
@@ -11370,6 +11638,18 @@ msgstr "A megadott kép nem használható. Javasolt formátumok: JPG és PNG."
msgid "This information is private and not shared with other users."
msgstr "Ez az információ privát és nem osztjuk meg más felhasználókkal."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr "A meghívót letiltották."
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr "A meghívó lejárt"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr "A meghívó érvénytelen"
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "Üres állapot"
@@ -11379,7 +11659,7 @@ msgstr "Üres állapot"
msgid "This is not a valid link"
msgstr "Érvénytelen hivatkozás"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "Ezzel a feljegyzéssel közölheted azt, hogy a fiók automatikusan működik. A feljegyzés a fiók profilján és minden bejegyzésén megjelenik, a neve mellett. Ezt a beállítást bármikor módosíthatod."
@@ -11412,13 +11692,13 @@ msgstr "Ennek az Általad létrehozott listának a címe vagy leírása lehetsé
msgid "This list is empty."
msgstr "Ez a lista üres."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr "Az üzenet el van rejtve, mivel a másik fél letiltott Téged."
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr "Az üzenet el van rejtve, mivel letiltottad a másik felet."
@@ -11456,7 +11736,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "A szerző letiltotta az idézést."
@@ -11469,8 +11749,9 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Ez a válasz egy rejtett részlegbe lesz sorolva a válaszláncok legalján és se Te, sem pedig mások nem fognak értesítéseket kapni a jövőbeli válaszokról."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
-msgstr "Ez az oldal csak csevegőcsoportoknál elérhető."
+msgstr "Ez az oldal csak csoportbeszélgetéseknél elérhető."
#: src/screens/Signup/StepInfo/Policies.tsx:32
msgid "This service has not provided terms of service or a privacy policy."
@@ -11496,18 +11777,18 @@ msgstr "Ez a felhasználó nem rendelkezik megjelenítendő névvel, ezért nem
msgid "This user doesn't have any followers."
msgstr "Ezt a felhasználót még senki sem követi."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
-msgstr ""
+msgstr "A címzett letiltott Téged, ezért nem veheted fel vele a kapcsolatot."
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr "Ez a felhasználó letiltott Téged, ezért nem tekintheted meg a tartalmait."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
-msgstr ""
+msgstr "A címzett nem fogad üzeneteket, ezért nem veheted fel vele a kapcsolatot."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
@@ -11576,7 +11857,7 @@ msgstr "Válaszláncok"
msgid "Threaded"
msgstr "Egymásba ágyazott"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Válaszlánc-beállítások"
@@ -11602,8 +11883,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "A kétlépcsős azonosítás kikapcsolásához vissza kell igazolnod az e-mail-címedet."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "A kétlépcsős azonosítás kikapcsolásához vissza kell igazolnod az e-mail-címedet: <0>{0}0>"
@@ -11648,12 +11929,12 @@ msgstr "Felkapott"
msgid "Top replies first"
msgstr "A legjobbra értékelt válaszok elöl"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Témakör"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11704,7 +11985,7 @@ msgstr "Felkapott videók"
msgid "Trolling"
msgstr "Provokálás („trollkodás”)"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "A bizalom kapcsolatok, közösségek és egy megosztott környezet útján alakul ki, ezért bevezetjük a <0>megbízható hitelesítők0> rendszerét is – ezek olyan egyesületek, amelyek közvetlenül is képesek hitelesíteni másokat."
@@ -11765,13 +12046,17 @@ msgstr "A szolgáltatással való kapcsolatfelvétel meghiúsult. Ellenőrizd az
msgid "Unable to delete"
msgstr "A törlés meghiúsult"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
-msgid "Unable to find a selected recipient."
-msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr "A csatlakozási kérelmek lekérdezése meghiúsult."
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr "Az egyik címzett nem található."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
-msgstr ""
+msgstr "A címzett nem található."
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
@@ -11793,7 +12078,7 @@ msgstr "Nem elérhető"
msgid "Unavailable feed information"
msgstr "Nincs elérhető hírfolyam-információ"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11839,8 +12124,8 @@ msgstr "Lista tiltásának feloldása"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Visszavonás"
@@ -11874,7 +12159,7 @@ msgstr "Fiók követésének megszüntetése"
msgid "Unfollows the user"
msgstr "Követés megszüntetése"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "A feljegyzőid közül egyik sem támogatja ezt a jelentési típust."
@@ -11906,13 +12191,13 @@ msgstr "Nem megfelelően megjelölt felnőtt tartalom"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Nem megfelelően megjelölt, abuzív vagy kölcsönös beleegyezés nélküli felnőtt tartalom"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Kedvelés visszavonása ({0, plural, one {# kedvelés} other {# kedvelés}})"
@@ -11920,9 +12205,9 @@ msgstr "Kedvelés visszavonása ({0, plural, one {# kedvelés} other {# kedvelé
msgid "Unlock chat"
msgstr "Zárolás feloldása"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
-msgstr "A csevegőcsoport zárolásának feloldása"
+msgstr "A csoportbeszélgetés zárolásának feloldása"
#: src/screens/ProfileList/components/Header.tsx:180
#: src/screens/ProfileList/components/Header.tsx:187
@@ -11957,9 +12242,9 @@ msgstr "Beszélgetés némításának feloldása"
msgid "Unmute list"
msgstr "Lista némításának feloldása"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
-msgstr "Csevegőcsoport némításának feloldása"
+msgstr "Csoportbeszélgetés némításának feloldása"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624
@@ -11976,14 +12261,14 @@ msgid "Unpin"
msgstr "Kitűzés feloldása"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Kitűzés feloldása"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Kitűzés feloldása a kezdőoldalról"
@@ -11998,7 +12283,7 @@ msgid "Unpin moderation list"
msgstr "Moderálólista kitűzésének feloldása"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "A(z) {0} hírfolyam kitűzése feloldva"
@@ -12032,11 +12317,11 @@ msgstr "Leiratkozás a feljegyzőről"
msgid "Unsubscribed from list"
msgstr "Leiratkoztál a listáról"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "A vágólap tartalma nem támogatott."
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Nem támogatott videóformátum: {mimeType}"
@@ -12049,16 +12334,20 @@ msgstr "Frissítés"
msgid "Update <0>{displayName}0> in Lists"
msgstr "<0>{displayName}0> listatagságának frissítése"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr "Alkalmazás frissítése"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "E-mail-cím frissítése"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Meghívó frissítése"
@@ -12067,11 +12356,19 @@ msgstr "Meghívó frissítése"
msgid "Update to {domain}"
msgstr "Frissítés erre: {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr "Frissítsd az alkalmazást"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr "A megtekintéshez frissítsd az alkalmazást."
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "A csatlakozáshoz az alkalmazás frissítése szükséges."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "E-mail-cím frissítése"
@@ -12092,7 +12389,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "A válasz láthatóságának frissítése meghiúsult"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Fénykép feltöltése"
@@ -12100,39 +12397,40 @@ msgstr "Fénykép feltöltése"
msgid "Upload a text file to:"
msgstr "Tölts fel ide egy szöveges fájlt:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Feltöltés a kamerából"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Feltöltés a fájlkezelőből"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Feltöltés a galériából"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "GIF feltöltése folyamatban…"
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Képek feltöltése folyamatban…"
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Hivatkozás indexképének feltöltése folyamatban…"
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Videó feltöltése folyamatban…"
@@ -12176,7 +12474,7 @@ msgid "user"
msgstr "felhasználó"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Letiltottad a felhasználót"
@@ -12213,7 +12511,7 @@ msgid "User list by {0}"
msgstr "Felhasználólista – Szerző: {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "Felhasználólista – Szerző: {0}"
@@ -12257,12 +12555,12 @@ msgstr "a(z) <0>@{0}0> által követett felhasználók"
msgid "users following <0>@{0}0>"
msgstr "a(z) <0>@{0}0> személyt követett felhasználók"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "Csak a követett személyektől"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Csak a követett személyektől"
@@ -12279,7 +12577,7 @@ msgstr "A hitelesítés meghiúsult. Próbáld újra."
msgid "Verification settings"
msgstr "Hitelesítési beállítások"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Hitelesítési beállítások"
@@ -12306,8 +12604,8 @@ msgstr "Igazolás ismét"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Kód megerősítése"
@@ -12318,7 +12616,7 @@ msgid "Verify DNS Record"
msgstr "DNS-rekord ellenőrzése"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "E-mailes kód megerősítése"
@@ -12351,7 +12649,7 @@ msgstr "Fiók hitelesítése"
msgid "Verify your age"
msgstr "Életkor igazolása"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12382,11 +12680,11 @@ msgstr "Verziószám: {0}"
msgid "Video"
msgstr "Videó"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "A videó feldolgozása meghiúsult"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Videófolyam"
@@ -12421,7 +12719,7 @@ msgstr "A videó nem található."
msgid "Video settings"
msgstr "Videóbeállítások"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "A videó feltöltése sikeresen befejeződött"
@@ -12434,18 +12732,18 @@ msgstr "Videó: {0}"
msgid "Videos"
msgstr "Videók"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
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:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Megtekintés"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr "A(z) {0} megtekintése"
@@ -12457,7 +12755,7 @@ msgstr "{0} profilképének megtekintése"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12469,17 +12767,17 @@ msgstr "{0} profiljának megtekintése"
msgid "View {0}’s profile"
msgstr "{0} profiljának megtekintése"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "{displayName} profiljának megtekintése"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr "A(z) {publicationTitle} megtekintése"
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr "@{0} profiljának megtekintése"
@@ -12505,9 +12803,17 @@ msgstr "Részletek"
msgid "View full thread"
msgstr "Teljes válaszlánc megtekintése"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
-msgstr "Bejövő csevegőcsoporti kérelmek megtekintése"
+msgstr "Bejövő csoportbeszélgetéses kérelmek megtekintése"
+
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr "Bejövő kérelmek megtekintése"
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr "Bejövő csatlakozási kérelmek megtekintése"
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
@@ -12524,7 +12830,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:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Bejegyzés megtekintése"
@@ -12541,10 +12847,10 @@ msgstr "Profil megtekintése"
msgid "View profile banner"
msgstr "Borítókép megtekintése"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr "Kiadvány megtekintése"
@@ -12552,9 +12858,9 @@ msgstr "Kiadvány megtekintése"
msgid "View the avatar"
msgstr "Profilkép megtekintése"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
-msgstr "A csevegőcsoport meghívójának megtekintése"
+msgstr "A csoportbeszélgetések meghívójának megtekintése"
#. placeholder {0}: labeler.creator.handle
#: src/components/LabelingServiceCard/index.tsx:164
@@ -12565,7 +12871,7 @@ msgstr "A(z) {0} által kínált feljegyzési szolgáltatás megtekintése"
msgid "View this user's verifications"
msgstr "Felhasználó hitelesítéseinek megtekintése"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "A hírfolyamot kedvelő felhasználók megtekintése"
@@ -12598,8 +12904,8 @@ msgstr "Elnémított fiókok megjelenítése"
msgid "View your verifications"
msgstr "Saját hitelesítések megtekintése"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Teljes kép megtekintése"
@@ -12642,8 +12948,8 @@ msgstr "Figyelmeztetés"
msgid "Warn content and filter from feeds"
msgstr "Figyelmeztetés és kiszűrés a hírfolyamokból"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Élő adás megnyitása"
@@ -12667,10 +12973,14 @@ msgstr "Erre a címkére nincs találat."
msgid "We couldn't find any results for that topic."
msgstr "Erre a témakörre nincs találat."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Ez a beszélgetés nem található"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr "A beszélgetés csatlakozási kérelemeinek betöltése meghiúsult"
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "A beszélgetés beállításainak betöltése meghiúsult"
@@ -12717,11 +13027,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Legalább két érdeklődési kör megadása ajánlott."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Küldtünk egy e-mailt a(z) <0>{0}0> címre. Kattints rá a benne található hivatkozásra a visszaigazoláshoz."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "A videófeltöltési jogosultságod ellenőrzése meghiúsult. Próbáld újra."
@@ -12751,7 +13061,7 @@ msgid "We will notify you when we find your friends."
msgstr "Éresíteni fogunk, ha megtaláljuk az ismerőseidet."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Küldünk egy e-mailt a(z) <0>{0}0> címre. Kattints rá a benne található hivatkozásra a visszaigazoláshoz."
@@ -12781,12 +13091,12 @@ msgstr "Hiba történt az életkor-igazolási folyamat elindítása közben. Ha
msgid "We're having network issues, try again"
msgstr "Hálózati hiba történt. Próbáld újra."
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "Hálózati hiba történt. Próbáld újra."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Bevezetjük a hitelesítés egy új formáját: egy könnyen látható jelvényt."
@@ -12816,12 +13126,12 @@ msgstr "Sajnáljuk, de a keresés meghiúsult. Próbáld újra pár percen belü
msgid "We're sorry, you cannot access this screen at this time."
msgstr "Sajnáljuk, de jelenleg nem férhetsz hozzá ehhez az oldalhoz."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Sajnáljuk, de a keresett oldal nem található."
@@ -12867,12 +13177,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Milyen címet adnál a kezdőcsomagodnak?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Mi a helyzet?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Ha rákoppintasz a jelvényre, akkor megtekintheted egy fiók hitelesítőit."
@@ -12880,7 +13190,7 @@ msgstr "Ha rákoppintasz a jelvényre, akkor megtekintheted egy fiók hitelesít
msgid "Who can interact with this post?"
msgstr "Kapcsolatbalépési információ"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "A csatlakozás körei és módja"
@@ -12889,13 +13199,13 @@ msgstr "A csatlakozás körei és módja"
msgid "Who can reply"
msgstr "Ki válaszolhat?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Ki hitelesíthet?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Hoppá!"
@@ -12941,19 +13251,19 @@ msgstr "Miért kell ezt a kezdőcsomagot átvizsgálni?"
msgid "Why should this user be reviewed?"
msgstr "Miért kell ezt a felhasználót átvizsgálni?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
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/components/dms/AfterReportConversationDialog.tsx:47
msgid "Would you like to block this user and/or leave this conversation?"
-msgstr ""
+msgstr "Szeretnéd letiltani ezt a felhasználót és/vagy elhagyni a beszélgetést?"
#: src/view/com/composer/drafts/DraftsButton.tsx:110
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:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr "Szeretnéd piszkozatként menteni ezt a bejegyzést?"
@@ -12962,12 +13272,12 @@ msgstr "Szeretnéd piszkozatként menteni ezt a bejegyzést?"
msgid "Write a post"
msgstr "Bejegyzés írása"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Bejegyzés írása"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Válasz írása"
@@ -12981,6 +13291,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "A kiszolgáló helytelen DID-t adott vissza. Válasz: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "Helytelen csevegéstípus"
@@ -13032,7 +13343,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "A helyi törvények szerint a Bluesky haszálata előtt igazolnod kell az életkorodat."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr "{0} le van tiltva"
@@ -13070,7 +13381,7 @@ msgstr "Élő adásban vagy"
msgid "You are no longer live"
msgstr "Az élő adásod véget ért"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Nincs jogosultságod a videófeltöltésre."
@@ -13119,12 +13430,12 @@ msgstr "Ezt az engedélyt bármikor visszavonhatod és törölheted az adataidat
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "A csevegési értesítések hangosítását/némítását az alkalmazáson belüli csevegési beállításokban szabhatod személyre"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "A már létező csevegéseket a fenti beállításoktól függetlenül folytathatod."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Mostantól feliratkozhatsz egyes személyek tevékenységeire. Ha van olyasvalaki, akinek a bejegyzéseiről szeretnél értesítéseket kapni, akkor nyisd meg a profilját és kattints a Követés gomb mellett található harang ikonra."
@@ -13133,7 +13444,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr "Egy bejegyzéshez csak {MAX_GALLERY_IMAGES, plural, other {# fénykép}} csatolható"
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "Egy piszkozat legfeljebb 1000 karakter hosszú lehet."
@@ -13141,11 +13457,11 @@ msgstr "Egy piszkozat legfeljebb 1000 karakter hosszú lehet."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "Egy piszkozat legfeljebb 1000 karakter hosszú lehet. Szeretnéd elvetni ezt a bejegyzést, mielőtt megnyitod a további piszkozataidat?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr "Egy bejegyzéshez csak egy GIF csatolható."
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Egy bejegyzéshez csak egy videó csatolható."
@@ -13157,10 +13473,10 @@ msgstr "A bejelentkezés folytatásához újraaktiválhatod a fiókodat. Ezek ut
msgid "You can read chat history but can’t send new messages."
msgstr "Továbbra is képes leszel az üzenetek elolvasására, de újakat nem tudsz küldeni."
-#. 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: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ó."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr "Egy bejegyzéshez {MAX_GALLERY_IMAGES, plural, other {# kép}} csatolható."
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13168,9 +13484,9 @@ msgstr "Egy bejegyzéshez csak {MAX_IMAGES, plural, other {# kép}} csatolható.
msgid "You can update this later from your settings."
msgstr "Biztos vagy benne? Ezt a beállítást később is módosíthatod."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
-msgstr ""
+msgstr "Még nem hozhatsz létre csoportbeszélgetést."
#: src/lib/hooks/useCleanError.ts:54
#: src/lib/strings/errors.ts:28
@@ -13199,6 +13515,10 @@ msgstr "Egy hírfolyamot se mentettél el."
msgid "You got here first"
msgstr "Te vagy az első!"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr "Korábban eltávolítottak a csoportbeszélgetésből, így ezzel a hivatkozással már nem csatlakozhatsz."
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13268,7 +13588,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr "A piszkozat tartalma megváltozott. Szeretnéd menteni?"
@@ -13338,7 +13658,7 @@ msgstr "Egy kezdőcsomag létrehozásához legalább hét különböző személy
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "A galériához hozzáférés szükséges."
@@ -13356,7 +13676,7 @@ msgid "You probably want to restart the app now."
msgstr "Lehetséges, hogy most előnyös lenne bezárni és újra megnyitni az alkalmazást."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "{0} emojival reagáltál"
@@ -13371,7 +13691,7 @@ msgid "You recently changed your birthdate"
msgstr "Nemrég megváltoztattad a születési dátumodat"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Ezzel az összes fiókból ki fogsz jelentkezni."
@@ -13392,7 +13712,7 @@ msgstr "Mostantól fogsz értesítéseket kapni erről a válaszláncról"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Kapni fogsz egy „helyreállítási kódot” tartalmazó e-mailt. Ezt a kódot itt kell megadnod a jelszó megváltoztatásához."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "A jövőben képtelen leszel ismét csatlakozni, hacsak meg nem hívnak."
@@ -13465,7 +13785,7 @@ msgstr "Elérted az aktív tartalom végét."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Elérted a hírfolyamod végét. Kövess még több fiókot!"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "A piszkozattár megtelt."
@@ -13477,11 +13797,11 @@ msgstr "Túllépted az egyidejűleg megengedett legtöbb lekérést. Próbáld
msgid "You've reached the start of the active content."
msgstr "Elérted az aktív tartalom elejét."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Elérted a napi videófeltöltési korlátot (bájthatár meghaladva)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13501,10 +13821,18 @@ msgstr "A fiókod törölve. Viszlát! ✌️"
msgid "Your account has been suspended"
msgstr "A fiókod felfüggesztésre került"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "A fiókod még nem elég idős a videók feltöltéséhez. Próbáld újra később."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr "Új fiók"
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr "Csoportbeszélgetés létrehozásához a fiókodnak legalább 7 naposnak kell lennie."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "A fiókod adattára, ami az összes nyilvános adatodat tartalmazza, letölthető egy „CAR” fájlként. Ez a fájl nem tartalmazza a beágyazott médiatartalmakat (pl.: képeket), sem pedig a személyes adataidat, amit külön kell lekérned."
@@ -13521,7 +13849,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Megfosztottak a csevegési jogosultságodtól"
@@ -13563,7 +13891,7 @@ msgstr "Saját e-mail-cím"
msgid "Your email appears to be invalid."
msgstr "Az e-mail-címed érvénytelen."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "A Bluesky teljes funkcionalitásának kihasználásához az e-mail-címed visszaigazolása szükséges."
@@ -13584,7 +13912,7 @@ msgstr "A Követett hírfolyamod üres. Kövess több felhasználót, hogy lásd
msgid "Your full handle will be <0>@{0}0>"
msgstr "A teljes felhasználóneved: <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13613,9 +13941,9 @@ msgstr "Tartózkodási hely frissítve."
msgid "Your muted words"
msgstr "Elnémított szavak"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "A felhasználóneved, profilképed és a csoport neve nyilvánosan megtekinthető lesz."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr "A felhasználóneved, profilképed, illetve a csoport neve és tagszáma nyilvánosan megtekinthető lesz."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13625,11 +13953,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "Bejegyzés elküldve"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "Bejegyzések elküldve"
@@ -13637,7 +13965,7 @@ msgstr "Bejegyzések elküldve"
msgid "Your preferred language"
msgstr "Az előnyben részesített nyelved"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "Saját profilkép"
@@ -13650,12 +13978,12 @@ msgstr "A saját profilképed más fiókok profilképeivel körülvéve, többr
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Válasz elküldve"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "A jelentés címzettje: <0>{0}0>."
@@ -13663,7 +13991,7 @@ msgstr "A jelentés címzettje: <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Az érdeklődési köreid megadásával személyre szabhatod a javasolt tartalmakat."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "A közzétételre váró bejegyzések között vannak üresek is. Ezek kihagyásra kerülnek és a maradék egy válaszláncba lesz összefűzve."
diff --git a/src/locale/locales/ia/messages.po b/src/locale/locales/ia/messages.po
index 1ce66437ea..8a262d96f6 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Interlingua\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minuta} other {# minutas}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# mense} other {# menses}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# secunda} other {# secundas}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# elemento non legite} other {# elementos non legite}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr "{0} de 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} ha reagite con {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, un lista de {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Avatar de {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# elemento non legite} other {# elementos non legite}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} ha verificate tu conto"
msgid "{following} following"
msgstr "{following} sequitos"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "Non es possibile inviar messages a {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# hora {minutesString}} other {# horas {minutesStri
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# hora} other {# horas}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# elemento non legite} other {# elementos non legite}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Un nove forma de verification"
@@ -827,11 +892,11 @@ msgstr "Un captura de schermo de un pagina de profilo con un icone de campana pr
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr "Acceptar"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Acceptar"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Acceptar requesta de chat"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Acceptar requesta"
@@ -860,17 +935,26 @@ msgstr "Acceptar requesta"
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Accessibilitate"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Parametros de accessibilitate"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Conto dissilentiate"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Contos con un marca de verification blau festonate <0><1/>0> pote verificar alteres. Iste verificatores de confidentia es seligite per Bluesky."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Activitates de alteres"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Notificationes de activitate"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Adder"
@@ -999,8 +1079,8 @@ msgstr "Adder conto"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Adder texto alternative (optional)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Adder altere conto"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Adder un altere publication"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr "Adder contrasigno de application"
msgid "Add App Password"
msgstr "Adder contrasigno de application"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr "Adder reaction con emoji"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Adder plus detalios (optional)"
@@ -1080,8 +1160,8 @@ msgstr "Adder un parola a silentiar con le parametros eligite"
msgid "Add muted words and tags"
msgstr "Adder parolas e etiquettas silentiate"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Detalios additional (limite: 300 characteres)"
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@exemplo.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Toto"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Permitter accesso a tu messages directe"
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Tu es ja in session como @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Texto alternative"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Le texto alternative describe imagines pro usatores cec o con problemas de vision, e adjuta a dar contexto a totes."
@@ -1387,7 +1467,7 @@ msgstr "Un error ha occurrite"
msgid "An error occurred"
msgstr "Un error ha occurrite"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Un error ha occurrite durante le compression del video."
@@ -1432,11 +1512,11 @@ msgstr "Un error ha occurrite durante le salvamento del codice QR!"
msgid "An error occurred while trying to follow all"
msgstr "Un error ha occurrite durante le tentativa de sequer totes"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Un illustration monstrante que Bluesky selige verificatores de confidentia qui, a su vice, verifica contos de usatores individual."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Un problema non includite in iste optiones"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Un problema ha occurrite durante le tentativa de aperir le chat"
msgid "An issue occurred, please try again."
msgstr "Un problema ha occurrite, per favor tenta lo de novo."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Un simulation de un iPhone monstrante le application Bluesky aperte al profilo de un usator verificate con un marca de verification blau proxime a su nomine a monstrar."
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr "Quicunque pote interager"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr "Quicunque qui me seque"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Le nomines de contrasigno de application debe haber al minus 4 character
msgid "App passwords"
msgstr "Contrasignos de application"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Contrasignos de application"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Appello inviate"
@@ -1632,14 +1716,14 @@ msgstr "Facer appello del suspension"
msgid "Appeal Suspension"
msgstr "Facer appello del suspension"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Facer appello de iste decision"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Es tu secur de voler deler le contrasigno del application “{0}”?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
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: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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Es tu secur de voler discartar iste publication?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Reproducer automaticamente videos e GIFs"
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr "Retornar"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Retornar al chats"
@@ -1840,12 +1926,12 @@ msgstr "Ante que tu pote acceptar iste requesta de chat, tu debe verificar tu e-
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Ante que tu pote reciper notificationes pro le publicationes de {name}, tu debe verificar tu e-mail."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Ante que tu pote inviar messages a un altere usator, tu debe verificar tu e-mail."
@@ -1877,7 +1963,7 @@ msgstr "Data de nascentia"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Blocar conto"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "Blocar conto?"
msgid "Block accounts"
msgstr "Blocar contos"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Blocar iste contos?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Blocar usator"
@@ -1946,9 +2032,9 @@ msgstr "Blocar usator"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Blocar usator"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Blocate"
@@ -1964,13 +2050,13 @@ msgstr "Blocate"
msgid "Blocked accounts"
msgstr "Contos blocate"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Contos blocate"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Contos blocate non pote responder in tu filos, mentionar te o interager con te de alcun altere maniera."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky es melior con amicos!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky eligera un insimul de contos recommendate inter le personas in t
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 "Bluesky non monstrara tu profilo e publicationes al usatores sin session aperte. Altere applicationes pote non honorar iste requesta. Iste option non rende tu conto private."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky verificara proactivemente contos notabile e authentic."
@@ -2137,23 +2223,30 @@ msgstr "Negotios"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Per {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Per <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "In crear un conto, tu accepta le <0>conditiones de servicio0>."
msgid "By you"
msgstr "Per te"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Camera"
@@ -2192,8 +2285,8 @@ msgstr "Camera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Camera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Camera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Cancellar"
@@ -2248,9 +2341,9 @@ msgstr "Cancellar le reactivation e clauder session"
msgid "Cancel search"
msgstr "Cancellar cerca"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Impossibile interager con un usator blocate"
@@ -2264,7 +2357,7 @@ msgstr "Subtitulos (.vtt)"
msgid "Captions & alt text"
msgstr "Subtitulos e texto alternative"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr "Cambiar le lingua del application"
msgid "Change Handle"
msgstr "Cambiar pseudonymo"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Cambiar de servicio de moderation"
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Cambiar ration de signalamento"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Chat"
@@ -2361,6 +2454,13 @@ msgstr "Chat delite"
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Chat silentiate"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Cassa de entrata de requestas de chat"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Requestas de chat"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Configurationes de Chat"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Configurationes de Chat"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Chat dissilentiate"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Chats"
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "Elige iste color como tu avatar"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr "Clicca pro information"
msgid "click here"
msgstr "clicca hic"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Clicca hic pro reinitiar le processo de verification."
@@ -2567,11 +2667,11 @@ msgstr "Clicca hic pro reinitiar le processo de verification."
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Clicca hic pro actualisar tu e-mail"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Clicca pro tentar inviar le message de novo"
@@ -2594,28 +2694,30 @@ msgstr "Clicca pro tentar inviar le message de novo"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Clicca pro tentar inviar le message de novo"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Clauder quadro de dialogo active"
msgid "Close alert"
msgstr "Clauder alerta"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Clauder le tiratorio inferior"
@@ -2657,8 +2763,9 @@ msgstr "Clauder le tiratorio inferior"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Clauder quadro de dialogo"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Clauder imagine"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr "Clauder menu"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Clauder iste quadro de dialogo"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Claude le alerta de actualisation de contrasigno"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Claude le fenestra de redaction e discarta le minuta del publication"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Bandas designate"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Directivas del communitate"
@@ -2740,12 +2855,12 @@ msgstr "Completa le defia"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Scriber un nove publication"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Redige publicationes de usque a {0, plural, other {# characteres}}"
@@ -2753,11 +2868,11 @@ msgstr "Redige publicationes de usque a {0, plural, other {# characteres}}"
msgid "Compose reply"
msgstr "Scriber un responsa"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Compression del video in curso..."
@@ -2780,7 +2895,7 @@ msgstr "Configurate in le <0>parametros de moderation0>."
msgid "Confirm"
msgstr "Confirmar"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Contento e multimedia"
msgid "Content and media"
msgstr "Contento e multimedia"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Contento e multimedia"
@@ -2889,7 +3004,7 @@ msgstr "Fundo de menu contextual. Clicca pro clauder le menu."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Continuar filo"
msgid "Continue thread..."
msgstr "Continuar filo..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Continuar al proxime passo"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Conversation delite"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversation delite"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Version de compilation copiate al area de transferentia"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Copiar DID"
msgid "Copy host"
msgstr "Copiar servitor"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Copiar ligamine al profilo"
msgid "Copy link to starter pack"
msgstr "Copiar ligamine al pacchetto de initio"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Copiar message de texto"
@@ -3052,7 +3175,7 @@ msgstr "Copiar le valor del registro TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Politica de derectos de autor"
@@ -3065,7 +3188,7 @@ msgstr "Non ha essite possibile connecter al canal personalisate"
msgid "Could not connect to feed service"
msgstr "Non ha essite possibile connecter al servicio de canal"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Non ha essite possibile partir del chat"
@@ -3094,6 +3217,10 @@ msgstr "Non ha essite possibile partir del chat"
msgid "Could not load feed"
msgstr "Non ha essite possibile cargar le canal"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Crear"
@@ -3159,7 +3286,7 @@ msgstr "Crear un codice QR pro un pacchetto de initio"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Crear un pacchetto de initio"
@@ -3174,13 +3301,14 @@ msgstr "Crea un pacchetto de initio pro me"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Crear un conto"
msgid "Create an account without using this starter pack"
msgstr "Crear un conto sin usar iste pacchetto de initio"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "In vice, crear un avatar"
@@ -3206,7 +3334,7 @@ msgstr "In vice, crear un avatar"
msgid "Create another"
msgstr "Crear un altere"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Crear nove conto"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Crear un signalamento pro {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Create {0}"
@@ -3341,7 +3470,7 @@ msgstr "Predefinite"
msgid "Default icons"
msgstr "Icones predefinite"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Deler le registro de declaration de chat"
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Deler conversation"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Deler pro me"
@@ -3399,11 +3528,11 @@ msgstr "Deler pro me"
msgid "Delete list"
msgstr "Deler lista"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Deler message"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Deler message pro me"
@@ -3413,7 +3542,7 @@ msgstr "Deler mi conto"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Deler publication"
@@ -3434,12 +3563,12 @@ msgstr "Deler iste lista?"
msgid "Delete this post?"
msgstr "Deler iste publication?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Delite"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Conto delite"
@@ -3507,13 +3636,13 @@ msgstr "Dialogo: adjusta qui pote interager con iste publication"
msgid "Dim"
msgstr "Tenue"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Disactivar 2FA"
@@ -3521,7 +3650,7 @@ msgstr "Disactivar 2FA"
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Disactivar 2FA per e-mail"
@@ -3534,8 +3663,8 @@ msgstr "Disactivar le 2FA per e-mail"
msgid "Disable haptic feedback"
msgstr "Disactivar le retroaction haptic"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Disactivate"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Discartar"
msgid "Discard changes?"
msgstr "Discartar cambiamentos?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Discartar minuta?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Discartar publication?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Discoperir nove canales"
msgid "Dismiss"
msgstr "Clauder"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Clauder error"
@@ -3673,7 +3802,7 @@ msgstr "Non include nuditate."
msgid "Domain verified!"
msgstr "Dominio verificate!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Tu non ha un codice o ha necessitate de un nove? <0>Clicca hic.0>"
@@ -3681,7 +3810,7 @@ msgstr "Tu non ha un codice o ha necessitate de un nove? <0>Clicca hic.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Tu non trova le e-mail? <0>Clicca hic pro reinviar.0>"
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Preste"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Tocca duo vices o preme longemente le message pro adder un reaction"
@@ -3741,15 +3873,6 @@ msgstr "Tocca duo vices pro appreciar"
msgid "Download Bluesky"
msgstr "Discargar Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Discargar file CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Discargar file CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Modificar"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Modificar avatar"
@@ -3847,14 +3978,14 @@ msgstr "Modificar avatar"
msgid "Edit Feeds"
msgstr "Modificar canales"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Modificar imagine"
@@ -3868,7 +3999,16 @@ msgstr "Modificar parametros de interaction"
msgid "Edit interests"
msgstr "Modificar interesses"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr "Modificar stato in directo"
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Modificar mi canales"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Modificar notificationes de {0}"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Modificar personas"
@@ -3925,7 +4060,7 @@ msgstr "Modificar profilo"
msgid "Edit starter pack"
msgstr "Modificar pacchetto de initio"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "Modificar qui pote responder"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Modificar tu pacchetto de initio"
@@ -3971,7 +4106,7 @@ msgstr "Adresse de e-mail"
msgid "Email Resent"
msgstr "E-mail reinviate"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "E-mail inviate!"
@@ -4006,8 +4141,8 @@ msgstr "Incorporar iste publication in tu sito web. Basta copiar le sequente fra
msgid "Embedded video player"
msgstr "Reproductor de video incorporate"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Activar"
@@ -4025,7 +4160,7 @@ msgstr "Activar contento pro adultos"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Activar 2FA per e-mail"
@@ -4038,13 +4173,12 @@ msgstr "Activar contento multimedial externe"
msgid "Enable media players for"
msgstr "Activar reproductores multimedial pro"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Activa le notificationes de un conto visitante su profilo e premente le <0>icone de campana0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Activar notificationes push"
@@ -4091,8 +4225,8 @@ msgstr "Insere un contrasigno"
msgid "Enter a word or tag"
msgstr "Insere un parola o etiquetta"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Insere codice"
@@ -4143,7 +4277,7 @@ msgstr "Passa a plen schermo"
msgid "Entertainment"
msgstr "Intertenimento"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Error"
@@ -4185,23 +4319,23 @@ msgstr "Totos pote responder"
msgid "Everybody can reply to this post."
msgstr "Totos pote responder a iste publication."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Totes"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Totes"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Totes"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Tote le resto"
@@ -4217,8 +4351,8 @@ msgstr "Exclude al usatores que tu seque"
msgid "Exit fullscreen"
msgstr "Exir del schermo plen"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Expander texto alternative"
@@ -4226,7 +4360,7 @@ msgstr "Expander texto alternative"
msgid "Expand list of users"
msgstr "Expander lista de usatores"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Expander o contraher le publication integre al qual tu responde"
@@ -4238,7 +4372,7 @@ msgstr "Expander le texto del publication"
msgid "Expands or collapses post text"
msgstr "Expande o contrahe le texto del publication"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Esseva expectate que le URI se resolve a un registro"
@@ -4277,9 +4411,9 @@ msgstr "Multimedia explicite o potentialmente perturbator."
msgid "Explicit sexual images."
msgstr "Imagines sexual explicite."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Explorar"
@@ -4289,11 +4423,8 @@ msgstr "Explorar"
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,7 @@ msgstr "Multimedia externe"
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 "Le contento multimedial externe pote permitter que sitos web collige information super te e tu dispositivo. Necun information es inviate o requestate usque tu preme le button “reproducer”."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Preferentias de multimedia externe"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Non ha essite possibile acceptar le chat"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Non ha essite possibile adder reaction con emoji"
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "Non ha essite possibile cambiar le pseudonymo. Tenta de novo."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "Non ha essite possibile crear le contrasigno del application. Tenta de n
msgid "Failed to create conversation"
msgstr "Non ha essite possibile crear le conversation"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Non ha essite possibile deler le chat"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Non ha essite possibile deler le message"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Non ha essite possibile cargar le conversationes"
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "Non ha essite possibile cargar le preferentias de canales"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Non ha essite possibile cargar le parametros de notification."
@@ -4493,16 +4627,15 @@ msgstr "Non ha essite possibile cargar le canales suggerite"
msgid "Failed to load suggested follows"
msgstr "Non ha essite possibile cargar le suggestiones de usatores a sequer"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Non ha essite possibile marcar tote le requestas como legite"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Non ha essite possibile fixar le publication"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Non ha essite possibile remover reaction con emoji"
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr "Non ha essite possibile remover le verification"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Non ha essite possibile salvar tu interesses."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Non ha essite possibile inviar e-mail, tenta de novo."
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Non ha essite possibile inviar le appello, tenta de novo."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Non ha essite possibile commutar le silentiamento del filo, tenta de novo"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Non ha essite possibile actualisar le parametros de 2FA"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Non ha essite possibile actualisar le e-mail, tenta de novo."
@@ -4614,7 +4751,7 @@ msgstr "Non ha essite possibile actualisar canales"
msgid "Failed to update notification declaration"
msgstr "Non ha essite possibile actualisar le declaration de notification"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Non ha essite possibile actualisar le parametros"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Canal"
@@ -4649,7 +4786,7 @@ msgstr "Canal"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Canal de {0}"
@@ -4662,7 +4799,7 @@ msgstr "Creator del canal"
msgid "Feed identifier"
msgstr "Identificator del canal"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Menu de canal"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Canales"
@@ -4739,7 +4876,7 @@ msgstr "Filtrar resultatos per lingua (actualmente: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Filtrar qui pote optar pro reciper notificationes de tu activitate"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Filtrar de qui tu recipe notificationes"
@@ -4747,11 +4884,11 @@ msgstr "Filtrar de qui tu recipe notificationes"
msgid "Finalizing"
msgstr "Finalisante"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Trovar contos a sequer"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr "Trovar personas a sequer"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Trovar publicationes, usatores e canales super Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "Sequite per <0>{0}0> e <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Sequite per <0>{0}0>, <1>{1}1> e {2, plural, one {# altere} other {# alteres}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Sequitores de @{0} que tu cognosce"
@@ -4995,19 +5136,16 @@ msgstr "Sequente {handle}"
msgid "Following feed preferences"
msgstr "Preferentias del canal Sequente"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Preferentias del canal Sequente"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Te seque"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Te seque"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Typo de litteras"
@@ -5069,7 +5207,7 @@ msgstr "Tu lo ha oblidate?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "De"
@@ -5086,35 +5224,35 @@ msgstr "De <0/>"
msgid "Generate a starter pack"
msgstr "Generar un pacchetto de initio"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "Obtener adjuta"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Reciper notificationes quando le personas te seque."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Reciper notificationes quando le personas apprecia publicationes que tu ha republicate."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Reciper notificationes quando le personas apprecia tu publicationes."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Reciper notificationes quando le personas te mentiona."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Reciper notificationes quando le personas cita tu publicationes."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Reciper notificationes quando le personas responde a tu publicationes."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Reciper notificationes quando le personas republica publicationes que tu ha republicate."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Reciper notificationes quando le personas republica tu publicationes."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr ""
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Reciper notificationes de nove publicationes"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Reciper notificationes de publicationes e responsas de contos que tu elige."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Reciper notificationes de nove publicationes de {name}"
@@ -5174,27 +5316,27 @@ msgstr "Reciper notificationes del activitate de iste conto"
msgid "Get notified when {name} posts"
msgstr "Reciper notificationes quando {name} publica"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Reciper notificationes quando alcuno publica"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Comenciar"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Da un facie a tu profilo"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Retornar"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Retornar"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Retornar al passo precedente"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Ir al initio"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Ir al initio"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Ir al initio"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Ir a conversation con {0}"
@@ -5299,12 +5440,12 @@ msgstr "Ir al proxime"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Ir al profilo"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Pseudonymo troppo longe. Tenta un plus curte."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Hashtag"
@@ -5458,8 +5615,8 @@ msgstr "Hashtag {tag}"
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Tu ha un codice? <0>Clicca hic.0>"
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Adjuta"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Adjuta le personas a saper que tu non es un bot cargante un photo o creante un avatar."
@@ -5652,18 +5809,18 @@ msgstr "Un problema ha occurrite durante le cargamento de iste datos. Vide infra
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Le systema non ha succedite a cargar iste servicio de moderation."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Un momento! Nos concede gradualmente le accesso al video, e tu attende ancora in le cauda. Reveni tosto!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Initio"
@@ -5721,7 +5878,7 @@ msgstr "Io comprende"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
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"
@@ -5757,7 +5914,7 @@ msgstr "Si tu dele iste lista, tu non potera recuperar lo."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Si tu ha un dominio proprie, tu pote usar lo como pseudonymo. Isto te permitte autoverificar tu identitate. <0>Sape plus hic.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Si tu debe actualisar tu e-mail, <0>clicca hic0>."
@@ -5765,7 +5922,7 @@ msgstr "Si tu debe actualisar tu e-mail, <0>clicca hic0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Si tu remove iste publication, tu non potera recuperar lo."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Si tu actualisa tu adresse de e-mail, le 2FA per e-mail essera disactivate."
@@ -5773,7 +5930,6 @@ msgstr "Si tu actualisa tu adresse de e-mail, le 2FA per e-mail essera disactiva
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Si tu vole cambiar tu contrasigno, nos te inviara un codice pro verificar que iste conto es tue."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Si tu vole restringer qui pote reciper notificationes del activitates de tu conto, tu pote cambiar lo in <0>Parametros → Privatessa e securitate0>."
@@ -5786,23 +5942,33 @@ msgstr "Si tu es un disveloppator, tu pote hospitar tu proprie servitor."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Imagine"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Cache de imagines radite, {0} liberate"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "Interne al application"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Notificationes interne al application"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "Interne al application, totes"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "Interne al application, personas que tu seque"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "Interne al application, push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "Interne al application, push, totes"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "Interne al application, push, personas que tu seque"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Cassa de entrata vacue!"
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Codice de confirmation 2FA invalide."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Pseudonymo invalide. Tenta un differente."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Thema de signalamento invalide"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Codice de verification invalide"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Tu es le unic al momento! Adde plus personas a tu pacchetto de initio cercante hic supra."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID del processo: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID del processo: {0}"
msgid "Jobs"
msgstr "Empleos"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Empleos"
msgid "Join Bluesky"
msgstr "Inscribe te a Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Participar al conversation"
msgid "Journalism"
msgstr "Journalismo"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "Etiquettas super tu conto"
msgid "Labels on your content"
msgstr "Etiquettas super tu contento"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Configurationes de lingua"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Ultime"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Saper plus super iste advertimento"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Saper plus super lo que es public super Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "Saper plus."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Partir"
@@ -6276,7 +6464,7 @@ msgstr "Partir del chat"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Partir del conversation"
@@ -6284,13 +6472,13 @@ msgstr "Partir del conversation"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Partir del conversation"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Clar"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Appreciar ({0, plural, one {# appreciation} other {# appreciationes}})"
@@ -6346,11 +6534,7 @@ msgstr "Appreciar 10 publicationes"
msgid "Like 10 posts to train the Discover feed"
msgstr "Apprecia 10 publicationes pro trainar le canal Discoperir"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Notificationes de appreciation"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Appreciar iste canal"
@@ -6358,8 +6542,8 @@ msgstr "Appreciar iste canal"
msgid "Like this labeler"
msgstr "Appreciar iste etiquettator"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Appreciate per"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Appreciate per {0, plural, one {# usator} other {# usatores}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Appreciate per {likeCount, plural, one {# usator} other {# usatores}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Appreciationes"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Appreciationes de tu republicationes"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Notificationes de appreciationes de tu republicationes"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Appreciationes de iste publication"
@@ -6409,11 +6589,11 @@ msgstr "Appreciationes de iste publication"
msgid "Linear"
msgstr "Linear"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Lista"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Lista dissilentiate"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listas"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Cargante..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Registro"
@@ -6662,7 +6842,7 @@ msgstr "Apparentemente te manca un canal de sequitos. <0>Clicca hic pro adder un
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Ajustar le parametros de e-mail pro tu conto"
@@ -6687,9 +6867,8 @@ msgstr "Gerer parametros de verification"
msgid "Manage your muted words and tags"
msgstr "Gerer tu parolas e etiquettas silentiate"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Marcar toto como legite"
@@ -6698,13 +6877,12 @@ msgstr "Marcar toto como legite"
msgid "Mark as read"
msgstr "Marcar como legite"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Marcate toto como legite"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Forsan plus tarde"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Contento multimedial que pote perturbar o esser innapropriate pro certe publicos."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Notificationes de mentiones"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "usatores mentionate"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Mentiones"
@@ -6775,22 +6949,22 @@ msgstr "Message {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Message delite"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Message delite"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Message de @{0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Le message es troppo longe"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Optiones de messages"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Messages"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr "Medienocte"
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Notificationes diverse"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderation"
@@ -6894,7 +7064,7 @@ msgstr "Lista de moderation actualisate"
msgid "Moderation lists"
msgstr "Listas de moderation"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Listas de moderation"
@@ -6903,7 +7073,7 @@ msgstr "Listas de moderation"
msgid "moderation settings"
msgstr "parametros de moderation"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Statos de moderation"
@@ -6949,7 +7119,7 @@ msgstr "Cinema"
msgid "Music"
msgstr "Musica"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Silentiar"
@@ -6994,7 +7164,7 @@ msgstr "Silentiar lista"
msgid "Mute these accounts?"
msgstr "Silentiar iste contos?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Silentiar discussion"
msgid "Mute words & tags"
msgstr "Silentiar parolas e etiquettas"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Contos silentiate"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Contos silentiate"
@@ -7108,8 +7278,8 @@ msgstr "Naviga al proxime schermo"
msgid "Navigates to your profile"
msgstr "Naviga a tu profilo"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr "Nove {postsCount, plural, one {publication} other {publicationes}} de {f
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "Nove {postsCount, plural, one {publication} other {publicationes}} de {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Nove chat"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Nove adresse de e-mail"
@@ -7174,29 +7344,25 @@ msgstr "Nove adresse de e-mail"
msgid "New Feature"
msgstr "Nove function"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Notificationes de nove sequitor"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Nove sequitores"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Nove publication"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Nove publication"
@@ -7262,8 +7428,8 @@ msgstr "Novas"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Necun imagine"
@@ -7362,7 +7528,7 @@ msgstr "Non plus sequente {0}"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Ancora sin messages"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "Ancora sin notificationes!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Necun resultato"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Necun resultato"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Nuditate non sexual"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Necun"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Non trovate"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr "Nota: Iste publication solmente es visibile a usatores con session apert
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Parametros de notification"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Sonos de notification"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Notificationes"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Notificationes pro tote le resto, como quando alcuno se inscribe via un de tu pacchettos de initio."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "ora"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Inactive"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "in<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Reinitialisation del apprentissage"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "Manca texto alternative a un o plus GIFs."
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "Manca texto alternative a un o plus imagines."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Manca texto alternative a un o plus videos."
@@ -7685,6 +7835,26 @@ msgstr "Manca texto alternative a un o plus videos."
msgid "Only {0} can reply."
msgstr "Solmente {0} pote responder."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Solmente sequitores que io seque"
msgid "Only image files are supported"
msgstr "Solmente files de imagine es supportate"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Solmente files WebVTT (.vtt) es supportate"
@@ -7712,7 +7892,7 @@ msgstr "Ops, alcun error ha occurrite!"
msgid "Oops!"
msgstr "Ops!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Aperir creator de avatar"
@@ -7720,12 +7900,17 @@ msgstr "Aperir creator de avatar"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Aperir optiones de conversation"
@@ -7739,16 +7924,16 @@ msgstr "Aperir le menu lateral"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Aperir selector de emojis"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Aperir schermo de information de canal"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Aperir menu de optiones de canal"
@@ -7760,13 +7945,17 @@ msgstr "Aperir le lista complete de emojis"
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Aperir ligamine a {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Aperir pacchetto"
msgid "Open post options menu"
msgstr "Aperir menu de optiones de publication"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Aperir profilo"
@@ -7817,6 +8006,10 @@ msgstr ""
msgid "Open system log"
msgstr "Aperir registro de systema"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Aperi detalios additional pro un entrata de depuration"
msgid "Opens alt text dialog"
msgstr "Aperi dialogo de texto alternative"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Aperi le camera super le dispositivo"
@@ -7858,22 +8051,24 @@ msgstr "Aperi le fenestra de redaction"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Aperi le fluxo pro crear un nove conto Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Aperi le fluxo pro aperir session con tu conto Bluesky existente"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr "Aperi le ligamine {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Aperi le quadro de dialogo de stato in directo"
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Aperi iste profilo"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Nostre equipa de moderation ha recipite tu signalamento."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Nostre moderatores ha revidite signalationes e ha decidite disactivar tu accesso a chats super Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Nostre moderatores ha revidite signalationes e ha decidite disactivar tu
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Pagina non trovate"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Pagina non trovate"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Pausar video"
msgid "People"
msgstr "Personas"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Personas sequite per @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Personas qui seque @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Personas que io seque"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Imagines destinate a adultos."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Fixar canal"
@@ -8152,7 +8348,7 @@ msgstr "Fixar canal"
msgid "Pin to home"
msgstr "Fixar al initio"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fixar al initio"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Fixate"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "Fixate {0} al Initio"
@@ -8236,7 +8432,7 @@ msgstr "Per favor elige tu pseudonymo."
msgid "Please choose your password."
msgstr "Per favor elige tu contrasigno."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Clicca super le ligamine que nos te ha inviate justo ora pro verificar tu nove adresse de e-mail. Isto es un passo importante a fin que tu continua a fruer de tote le functiones de Bluesky."
@@ -8244,7 +8440,7 @@ msgstr "Clicca super le ligamine que nos te ha inviate justo ora pro verificar t
msgid "Please complete the verification captcha."
msgstr "Per favor completa le captcha de verification."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr "Insere un contrasigno. Illo debe haber al minus 8 characteres."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Insere un nomine unic pro iste contrasigno del application o usa illo que nos ha generate aleatorimente."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Insere un codice valide."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Insere un adresse de e-mail valide."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Insere le codice que nos ha inviate a <0>{0}0> hic infra."
@@ -8293,7 +8489,7 @@ msgstr "Insere le codice que nos ha inviate a <0>{0}0> hic infra."
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Insere le codice de securitate que nos ha inviate a tu adresse de e-mail precedente."
@@ -8306,7 +8502,7 @@ msgstr "Per favor insere tu adresse de e-mail."
msgid "Please enter your invite code."
msgstr "Per favor insere tu codice de invitation."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Insere tu nove adresse de e-mail."
@@ -8323,7 +8519,7 @@ msgstr "Insere tu nomine de usator"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Explica proque tu pensa que iste etiquetta ha essite incorrectemente applicate a {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Explica proque tu pensa que tu chats ha essite disactivate incorrectemente"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Verifica tu e-mail"
@@ -8383,7 +8579,7 @@ msgstr "Politica"
msgid "Porn"
msgstr "Pornographia"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Publicar"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Publicar toto"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Publication blocate"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Publication de @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Publication delite"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Non ha essite possibile cargar le publication. Verifica tu connexion al Internet e tenta de novo."
@@ -8454,7 +8650,7 @@ msgstr "Publication occultate per te"
msgid "Post interaction settings"
msgstr "Parametros de interaction del publication"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Parametros de interaction del publication"
@@ -8464,8 +8660,8 @@ msgstr "Parametros de interaction del publication"
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Publication disfixate"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Publicationes pote esser silentiate secundo lor texto, lor etiquettas, o
msgid "Posts hidden"
msgstr "Publicationes occultate"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Publicationes, responsas"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Ligamine potentialmente fallace"
@@ -8528,6 +8719,7 @@ msgstr "Preme pro tentar reconnecter"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Pressa pro retentar"
@@ -8536,7 +8728,7 @@ msgstr "Pressa pro retentar"
msgid "Press to view followers of this account that you also follow"
msgstr "Preme pro vider sequitores de iste conto que tu tamben seque"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "Privatessa"
msgid "Privacy and security"
msgstr "Privatessa e securitate"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privatessa e securitate"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Parametros de privatessa e securitate"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Politica de privatessa"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Processante video..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Processante..."
@@ -8602,8 +8793,8 @@ msgstr "Processante..."
msgid "profile"
msgstr "profilo"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Publicar"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Publicar publicationes"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Publicar responsas"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Publicar responsa"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Push"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Notificationes push"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
-msgstr "Push, totes"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "Push, personas que tu seque"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "Le codice QR ha essite discargate!"
msgid "QR code saved to your camera roll!"
msgstr "Codice QR salvate in tu rolo del camera!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Notificationes de citation"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Citationes disactivate"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Citationes"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Reannexar citation"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr "Reager con {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Leger publication del blog"
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr "Motivo del appello"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Reciper notificationes interne al application"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Reciper notificationes push"
@@ -8841,6 +9028,10 @@ msgstr "Recommendate"
msgid "Reconnect"
msgstr "Reconnecter"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Rejectar"
msgid "Reject chat request"
msgstr "Rejectar requesta de chat"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Recargar conversationes"
@@ -8896,17 +9087,17 @@ msgstr "Remover conto"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Remover annexo"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Remover avatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Remover banner"
@@ -8914,8 +9105,9 @@ msgstr "Remover banner"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Remover incorporation"
@@ -8933,8 +9125,8 @@ msgstr "Remover canal?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr "Remover de tu canales?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Remover imagine"
@@ -9009,11 +9201,11 @@ msgstr "Remover verification"
msgid "Remove your verification for this account?"
msgstr "Remover tu verification de iste conto?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Removite per le autor"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Removite per te"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Responsas"
@@ -9104,14 +9295,14 @@ msgstr "Responsas disactivate"
msgid "Replies to this post are disabled."
msgstr "Responsas a iste publication es disactivate."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Responsa"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Responsa ({0, plural, one {# responsa} other {# responsas}})"
@@ -9125,10 +9316,6 @@ msgstr "Responsa occultate per le autor del filo"
msgid "Reply Hidden by You"
msgstr "Responsa occultate per te"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Notificationes de responsa"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Le parametros de responsa es eligite per le autor del filo"
@@ -9146,9 +9333,9 @@ msgstr "Visibilitate del responsa actualisate"
msgid "Reply was successfully hidden"
msgstr "Le responsa ha essite occultate con successo"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Signalar"
@@ -9164,13 +9351,13 @@ msgstr "Signalar conto"
msgid "Report conversation"
msgstr "Signalar conversation"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Signalar dialogo"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Signalar canal"
@@ -9179,7 +9366,7 @@ msgstr "Signalar canal"
msgid "Report list"
msgstr "Signalar lista"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Signalar message"
@@ -9199,8 +9386,8 @@ msgstr "Signalar pacchetto de initio"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Signalar inviate"
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Signalar iste canal"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Signalar iste lista"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Republication"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Republication ({0, plural, one {# republication} other {# republicationes}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Notificationes de republication"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Republicate per te"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Republicationes"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Republicationes de iste publication"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Republicationes de tu republicationes"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Notificationes de republication de tu republicationes"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Require texto alternative ante le publication"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Require in codice de e-mail pro aperir session con tu conto."
@@ -9328,7 +9534,11 @@ msgstr "Obligatori pro iste fornitor"
msgid "Required in your region"
msgstr "Requirite in tu region"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Reinviar"
@@ -9393,15 +9603,16 @@ msgstr "Tenta de novo le ultime action, que ha generate un error"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Tenta de novo le ultime action, que ha generate un error"
msgid "Retry"
msgstr "Tentar de novo"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Tenta de novo cargar le optiones de signalamento"
@@ -9426,14 +9637,14 @@ msgstr "Tenta de novo cargar le optiones de signalamento"
msgid "Return to previous page"
msgstr "Retornar al pagina precedente"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Retorna al pagina de initio"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Retorna al pagina precedente"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Salvar cambiamentos"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Salvar codice QR"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Salvar in mi canales"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "Canales salvate"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Salvate in tu canales"
@@ -9551,8 +9764,8 @@ msgstr "Salvate in tu canales"
msgid "Say hello!"
msgstr "Dice hallo!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "Rolar al alto"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Cercar"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Cercar publicationes de @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Cercar mi publicationes"
msgid "Search posts"
msgstr "Cercar publicationes"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Cercar profilos"
msgid "Search..."
msgstr "Cercar..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Cercas per profilos"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Passo de securitate requirite"
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "Seliger un color"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "Seliger GIF"
msgid "Select GIF \"{0}\""
msgstr "Seliger GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Selectionar lingua..."
msgid "Select languages"
msgstr "Selectionar linguas"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Seliger servicio de moderation"
@@ -9904,11 +10117,11 @@ msgstr "Selige tu interesses desde le optiones hic infra"
msgid "Select your preferred language for translations in your feed."
msgstr "Selectiona tu lingua preferite pro traductiones in tu canal."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Selige tu canales de notification preferite"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Inviar e-mail"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Inviar commentarios"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Inviar message"
@@ -9952,7 +10165,7 @@ msgstr "Inviar le publication a {name}"
msgid "Send post to..."
msgstr "Inviar message a..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Inviar signalamento a {title}"
@@ -9960,7 +10173,7 @@ msgstr "Inviar signalamento a {title}"
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Inviar via message directe"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Defini email pro reinitialisation de contrasigno"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Parametros"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Parametros pro le activitate de alteres"
@@ -10030,39 +10243,39 @@ msgstr "Parametros pro le activitate de alteres"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Parametros pro permitter que alteres sia notificate de tu publicationes"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Parametros pro notificationes de appreciationes"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Parametros pro notificationes de mentiones"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Parametros pro notificationes de nove sequitor"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Parametros pro notificationes de tote le resto"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Parametros pro notificationes de appreciationes de tu republicationes"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Parametros pro notificationes de republicationes de tu republicationes"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Parametros pro notificationes de citationes"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Parametros pro notificationes de responsas"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Parametros pro notificationes de republicationes"
@@ -10079,10 +10292,12 @@ msgstr "Activitate sexual o nuditate erotic."
msgid "Sexually Suggestive"
msgstr "Sexualmente suggestive"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Compartir le DID del autor"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr "Compartir le URI at:// del publication"
msgid "Share QR code"
msgstr "Compartir codice QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Compartir iste canal"
@@ -10151,7 +10366,7 @@ msgstr "Compartir via..."
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Testator de preferentias compartite"
@@ -10167,16 +10382,16 @@ msgstr "Monstrar texto alternative"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Mostrar nonobstante"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Monstrar advertimento e filtrar desde canales"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr "Monstra le contento"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Aperi session o crea un conto"
msgid "Sign in or create your account to join the conversation!"
msgstr "Aperi session o crea tu conto pro participar al conversation!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Aperir session con un conto que non es listate"
@@ -10337,6 +10558,10 @@ msgstr "Aperir session con un conto que non es listate"
msgid "Sign in to Bluesky or create a new account"
msgstr "Aperi session in Bluesky o crea un nove conto"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Aperi session pro vider le publication"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Clauder session"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Clauder session"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Clauder session?"
@@ -10391,7 +10616,7 @@ msgstr "Saltar"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Minor"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Proroga le recordatorio"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Alcuno ha reagite con {0}"
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Le datos que tu tenta signalar ha alcun problema. Contacta le supporto."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Alcun error ha occurrite"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Alcun error ha occurrite!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Alcun error ha occurrite. Tenta de novo in alcun instantes."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Alcun error ha occurrite. Tenta de novo."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Alcun problema? Informa nos."
@@ -10568,7 +10798,7 @@ msgstr "Sports"
msgid "Start a conversation, and it will appear here."
msgstr "Comencia un conversation e illo apparera hic."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Comenciar un nove chat"
@@ -10582,17 +10812,17 @@ msgstr "Comenciar a adder personas"
msgid "Start adding people!"
msgstr "Comencia a adder personas!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Initiar chat con {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Pacchetto de initio"
@@ -10654,12 +10884,12 @@ msgstr "Immagazinage radite, tu debe reinitiar le application ora."
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Inviar"
@@ -10684,9 +10914,9 @@ msgstr "Inviar appello"
msgid "Submit Appeal"
msgstr "Inviar appello"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Inviar signalamento"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Subscriber"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Successo!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Verificate con successo"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Poner del sol"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Supporto"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Cambiar conto"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Cambiar contos"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Cambiar a {0}"
@@ -10828,7 +11062,7 @@ msgstr "Solmente etiquettas"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr "Tocca pro clauder le menu contextual"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Tocca pro clauder"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Terminos"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Texto e etiquettas"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Campo de insertion de texto"
@@ -11049,6 +11301,11 @@ msgstr "Le parametros sequente essera usate como tu predefinition quando tu crea
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Le Politica de privatessa ha essite displaciate a <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "Il ha habite un problema durante le connexion con le servitor"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Il ha habite un problema durante le connexion con le servitor, verifica tu connexion al internet e tenta de novo."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Il ha habite un problema durante le recuperation del notificationes. Tocca hic pro tentar de novo."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Il ha habite un problema durante le recuperation del publicationes. Tocca hic pro tentar de novo."
@@ -11161,7 +11420,7 @@ msgstr "Il ha habite un problema durante le recuperation de tu information de se
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Il ha habite un problema durante le remotion de iste canal. Verifica tu connexion al internet e tenta de novo."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Iste appello essera inviate a <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Iste appello essera inviate al servicio de moderation de Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Iste appello essera inviate al servicio de moderation de Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Iste contento non es disponibile proque un del usatores involvite ha blo
msgid "This content is not viewable without a Bluesky account."
msgstr "Le contento non se pote visualisar sin un conto de Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Iste conversation es con un conto delite o disactivate. Preme pro option
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Iste e-mail ja es associate a tu conto."
@@ -11360,7 +11628,7 @@ msgstr "Iste canal non es plus in linea. Nos monstra <0>Discover0> in vice."
msgid "This handle is reserved. Please try a different one."
msgstr "Iste pseudonymo es reservate. Tenta un altere."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr "Iste non es un ligamine valide"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr "Iste lista – create per te – contine possibile violationes al direct
msgid "This list is empty."
msgstr "Iste lista es vacue."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Le autor del publication ha disactivate le citationes."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Iste responsa essera placiate in un section occulte in basso de tu filo e silentiara notificationes pro responsas subsequente – pro te mesme e pro alteres."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr "Iste usator non ha un nomine a monstrar, e consequentemente non pote ess
msgid "This user doesn't have any followers."
msgstr "Iste usator non ha sequitores."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Iste usator te ha blocate. Tu non pote vider su contento."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Preferentias de filos"
msgid "Threaded"
msgstr "Como filos"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Preferentias de filos"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Pro disactivar le methodo de 2FA per e-mail, verifica tu accesso al adresse de e-mail."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Pro disactivar tu methodo de 2FA per e-mail, verifica tu accesso a <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Populares"
msgid "Top replies first"
msgstr "Responsas popular primo"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Topico"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Videos in tendentia"
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "Le confidentia emerge del relationes, del communitates e de un contexto compartite, consequentemente nos tamben habilita <0>verificatores de confidentia0>: organisationes qui pote emitter verificationes directemente."
@@ -11763,11 +12044,15 @@ msgstr "Non ha essite possibile contactar tu servicio. Per favor verifica tu con
msgid "Unable to delete"
msgstr "Non ha essite possibile deler"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr "Information super le canal indisponibile"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Disblocar lista"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr "Cessar de sequer conto"
msgid "Unfollows the user"
msgstr "Cessa de sequer le usator"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Infortunatemente, necun del etiquettatores al quales tu subscribe supporta iste typo de signalamento."
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr "Disappreciar"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Disappreciar ({0, plural, one {# appreciation} other {# appreciationes}})"
@@ -11918,7 +12203,7 @@ msgstr "Disappreciar ({0, plural, one {# appreciation} other {# appreciationes}}
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Dissilentiar conversation"
msgid "Unmute list"
msgstr "Dissilentiar lista"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Disfixar"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Disfixar canal"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Disfixar del initio"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Disfixar lista de moderation"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "Disfixate {0} del Initio"
@@ -12030,11 +12315,11 @@ msgstr "Cancellar le subscription de iste etiquettator"
msgid "Unsubscribed from list"
msgstr "Cancellate le subscription del lista"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr "Actualisar"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Actualisar <0>{displayName}0> in Listas"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Actualisar e-mail"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "Actualisar a {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Actualisa tu e-mail"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Non ha essite possibile actualisar le visibilitate del responsa"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Incargar un photo in su loco"
@@ -12098,39 +12395,40 @@ msgstr "Incargar un photo in su loco"
msgid "Upload a text file to:"
msgstr "Incargar un file de texto a:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Cargar desde le camera"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Cargar desde files"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Cargar desde bibliotheca"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Incargante imagines..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Incargante miniatura de ligamine..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Incargante video..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Usator blocate"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Lista de usatores de {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "usatores sequite per <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "usatores sequente <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr "Non ha essite possibile verificar, tenta de novo."
msgid "Verification settings"
msgstr "Parametros de verification"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Parametros de verification"
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Verificar registro DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Verificar codice de e-mail"
@@ -12349,7 +12647,7 @@ msgstr "Verificar iste conto?"
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr "Video"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Non ha essite possibile processar le video"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Canal de video"
@@ -12419,7 +12717,7 @@ msgstr "Video non trovate."
msgid "Video settings"
msgstr "Configurationes de video"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Video cargate"
@@ -12432,18 +12730,18 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videos"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Vider le avatar de {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Visualisar profilo de {0}"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Visualisar detalios"
msgid "View full thread"
msgstr "Vider filo complete"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Vider information super iste etiquettas"
@@ -12522,7 +12828,7 @@ msgstr "Vider plus"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "Visualisar profilo"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Vider le avatar"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "Vider le servicio de etiquettage fornite per @{0}"
msgid "View this user's verifications"
msgstr "Vider le notificationes de usator"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Vider usatores qui apprecia iste canal"
@@ -12596,8 +12902,8 @@ msgstr "Vider tu contos silentiate"
msgid "View your verifications"
msgstr "Vider tu verificationes"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Vide le imagine complete"
@@ -12640,8 +12946,8 @@ msgstr "Advertir contento"
msgid "Warn content and filter from feeds"
msgstr "Advertir contento e filtrar desde canales"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Spectar ora"
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr "Non ha essite possibile trovar alcun resultato pro ille topico."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Non ha essite possibile cargar iste conversation"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Nos recommenda seliger al minus duo interesses."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Nos ha inviate un e-mail a <0>{0}0> continente un ligamine. Clicca super illo pro completar le processo de verification de e-mail."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Nos non ha potite determinar si tu ha permission pro cargar videos. Tenta de novo."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Nos inviara un e-mail a <0>{0}0> continente un ligamine. Clicca super illo pro completar le processo de verification de e-mail."
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "Nos ha problemas de rete, tenta de novo"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Nos presenta un nove strato de verification in Bluesky — un marca de verification facilemente perceptibile."
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Nos regretta! Le publication que tu responde ha essite delite."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Como tu vole nominar tu pacchetto de initio?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Qual es le novas?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Quando tu tocca super un marca de verification, tu videra qual organisationes ha concedite le verification."
@@ -12878,7 +13188,7 @@ msgstr "Quando tu tocca super un marca de verification, tu videra qual organisat
msgid "Who can interact with this post?"
msgstr "Qui pote interager con iste publication?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Qui pote responder"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Qui pote verificar?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Ops!"
@@ -12939,7 +13249,7 @@ msgstr "Proque iste pacchetto de initio deberea esser revidite?"
msgid "Why should this user be reviewed?"
msgstr "Proque iste usator deberea esser revidite?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Scriber message"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Scribe tu responsa"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Le servitor ha retornate un DID incorrecte. Recipite: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr "Tu es in directo"
msgid "You are no longer live"
msgstr "Tu non es plus in directo"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Tu non es permitte incargar videos."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Tu pote eliger si le notificationes de chat ha sono in le parametros de chat in le application"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Tu pote continuar le conversationes in curso, independentemente de qual parametro tu elige."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Ora tu pote eliger esser notificate quando personas specific publica. Si il ha alcuno de qui tu vole reciper actualisationes promptemente, vade a su profilo e trova le nove icone de campana proxime al button de sequer."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "Tu pote reactivar tu conto pro continuar a aperir session. Tu profilo e
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr "Tu pote actualisar iste plus tarde desde tu configurationes."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "Tu ha necun canal salvate."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "Tu debe sequer al minus septe altere personas pro generar un pacchetto d
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Probabilemente tu vole reinitiar le application ora."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Tu ha reagite con {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Le session de tote tu contos se claudera."
@@ -13390,7 +13710,7 @@ msgstr "Ora tu recipera notificationes de iste filo"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Tu recipera un e-mail con un \"codice de reinitialisation\". Insere ille codice hic, alora insere tu nove contrasigno."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Tu ha attingite le fin de tu canal! Trova alcun altere contos pro sequer."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr "Tu ha attingite le numero maxime de requestas permittite. Tenta de novo
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Tu ha attingite tu limite diari pro cargas de videos (troppo de bytes)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr "Tu conto ha essite suspendite"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Tu conto ancora non ha etate sufficiente pro cargar videos. Tenta de novo plus tarde."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Le repositorio de tu conto, continente tote le registros de datos public, pote esser discargate como um file \"CAR\". Iste file non include contento multimedial incorporate, como imagines, o tu datos private, que debe esser recuperate separatemente."
@@ -13519,7 +13847,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Tu chats ha essite disactivate"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "Tu adresse de e-mail pare esser invalide."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Tu e-mail ancora non ha essite verificate. Verifica tu e-mail a fin de fruer de tote le functiones de Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "Tu canal de sequitos es vacue! Seque plus de usatores pro vider lo que o
msgid "Your full handle will be <0>@{0}0>"
msgstr "Tu pseudonymo complete essera <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "Tu parolas silentiate"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Tu signalamento essera inviate a <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "Tu signalamento essera inviate a <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Le interesses que tu ha seligite nos adjuta a servir te contento que te importa."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po
index f3a9265372..af30afee97 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, other {# menit}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, other {# bulan}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, other {# detik}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, other {# item belum dibaca}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} mengikuti"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr "{0} dari 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} menanggapi {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, sebuah daftar oleh {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Avatar {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}d"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, other {# item belum dibaca}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} memverifikasi Anda"
msgid "{following} following"
msgstr "{following} mengikuti"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "{handle} tidak dapat dikirimi pesan"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr "{hours, plural, other {# jam {minutesString}}}"
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, other {# jam}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr "Feed dan orang-orang favorit {name} - bergabunglah dengan saya!"
msgid "{name}'s starter pack"
msgstr "Paket pemula {name}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, other {# item belum dibaca}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr "Kesalahan jaringan terjadi. Silakan periksa koneksi internet Anda"
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Kesalahan jaringan terjadi. Silakan periksa koneksi internet Anda."
@@ -804,7 +869,7 @@ msgstr "Kesalahan jaringan terjadi. Silakan periksa koneksi internet Anda."
msgid "A new code has been sent"
msgstr "Kode baru telah dikirim"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Bentuk baru verifikasi"
@@ -827,11 +892,11 @@ msgstr "Tangkapan layar dari halaman profil dengan ikon lonceng sebelah tombol i
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Perilaku kasar dan diskriminatif"
msgid "Accept"
msgstr "Terima"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Terima"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Terima permintaan obrolan"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Terima Permintaan"
@@ -860,17 +935,26 @@ msgstr "Terima Permintaan"
msgid "Accept this language suggestion"
msgstr "Terima saran bahasa ini"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Aksesibilitas"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Pengaturan Aksesibilitas"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Akun tidak dibisukan"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Akun dengan tanda cek biru bergerigi <0><1/>0> dapat memverifikasi lainnya. Verifikator ini telah dipilih oleh Bluesky."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Aktivitas dari yang lainnya"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Aktivitas notifikasi"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Tambah"
@@ -999,8 +1079,8 @@ msgstr "Tambahkan akun"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Tambahkan teks alt (opsional)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Tambahkan akun lain"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Tambahkan postingan lain"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr "Tambahkan sandi aplikasi"
msgid "Add App Password"
msgstr "Tambahkan Sandi Aplikasi"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr "Tambahkan emoji reaksi"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,7 @@ msgid "Add image"
msgstr "Tambahkan gambar"
#. Accessibility label for button in composer to add images, a video, or a GIF to a post
-#: src/view/com/composer/SelectMediaButton.tsx:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Tambah media ke postingan"
@@ -1062,8 +1142,8 @@ msgstr "Tambah media ke postingan"
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Tambahkan rincian lengkap (optional)"
@@ -1080,8 +1160,8 @@ msgstr "Tambahkan kata bisu yang dipilih pengaturan"
msgid "Add muted words and tags"
msgstr "Tambah kata dan tagar untuk dibisukan"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "Menambahkan anggota pada daftar..."
msgid "Additional details (limit 1000 characters)"
msgstr "Rincian tambahan (batas 1000 karakter)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Rincian tambahan (batas 300 karakter)"
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "kresna@contoh.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Semua"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Izinkan akses ke pesan langsung Anda"
msgid "Allow anyone to reply"
msgstr "Izinkan semua orang membalas"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr "Sudah memiliki akun?"
msgid "Already signed in as @{0}"
msgstr "Sudah masuk sebagai @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Teks Alt"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Teks alt menjelaskan gambar untuk pengguna tunanetra dan pengguna dengan penglihatan rendah, serta membantu memberikan konteks kepada semua orang."
@@ -1387,7 +1467,7 @@ msgstr "Telah terjadi kesalahan"
msgid "An error occurred"
msgstr "Terjadi kesalahan"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Terjadi kesalahan saat mengompresi video."
@@ -1432,11 +1512,11 @@ msgstr "Terjadi kesalahan saat menyimpan kode QR!"
msgid "An error occurred while trying to follow all"
msgstr "Terjadi kesalahan saat mencoba mengikuti semua"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr "Ilustrasi dari beberapa postingan Bluesky bersama dengan ikon posting ul
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Sebuah ilustrasi menampilkan Bluesky memilih verifikator terpercaya, dan verifikator terpercaya pada waktunya memverifikasi akun pengguna individual."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Masalah lain yang tidak termasuk dalam pilihan"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Terjadi masalah saat mencoba membuka obrolan"
msgid "An issue occurred, please try again."
msgstr "Terjadi masalah, silakan coba lagi."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Maket iPhone yang menampilkan aplikasi Bluesky terbuka profil pengguna terverifikasi dengan tanda centang biru di sebelah nama tampilan mereka."
@@ -1539,13 +1619,17 @@ msgstr "Siapa saja"
msgid "Anyone can interact"
msgstr "Siapa saja dapat berinteraksi"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr "Siapapun yang mengikuti saya"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Nama sandi aplikasi harus terdiri dari minimal 4 karakter"
msgid "App passwords"
msgstr "Sandi aplikasi"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Kata Sandi Aplikasi"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Banding diajukan"
@@ -1632,14 +1716,14 @@ msgstr "Banding penangguhan"
msgid "Appeal Suspension"
msgstr "Banding Penangguhan"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Ajukan banding atas keputusan ini"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "Apakah anda sungguh-sungguh yakin?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Anda yakin ingin menghapus sandi aplikasi \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr "Anda yakin ingin meninggalkan percakapan ini?"
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Anda yakin ingin membuang postingan ini?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Putar otomatis video dan GIF"
msgid "Available"
msgstr "Tersedia"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Tersedia"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Tersedia"
msgid "Back"
msgstr "Kembali"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Kembali ke Obrolan"
@@ -1840,12 +1926,12 @@ msgstr "Untuk dapat menerima permintaan obrolan ini, harap verifikasi email Anda
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Untuk dapat mengirim pesan ke pengguna lain, harap verifikasi email Anda terlebih dahulu."
@@ -1877,7 +1963,7 @@ msgstr "Tanggal lahir"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Blokir akun"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "Blokir Akun?"
msgid "Block accounts"
msgstr "Blokir akun"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Blokir akun-akun ini?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Blokir pengguna"
@@ -1946,9 +2032,9 @@ msgstr "Blokir pengguna"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Blokir pengguna"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Diblokir"
@@ -1964,13 +2050,13 @@ msgstr "Diblokir"
msgid "Blocked accounts"
msgstr "Akun yang diblokir"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Akun yang Diblokir"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky lebih seru jika bersama teman!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky akan memilih serangkaian akun yang direkomendasikan dari orang-o
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 "Bluesky tidak akan menampilkan profil dan postingan Anda kepada pengguna yang tidak masuk. Aplikasi lain mungkin tidak akan mematuhi permintaan ini. Ini tidak membuat akun Anda menjadi privat."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky akan secara pro-aktif verifikasi akun-akun penting dan otentik."
@@ -2137,23 +2223,30 @@ msgstr "Bisnis"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Oleh {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Oleh <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Ketentuan Layanan<
msgid "By you"
msgstr "Oleh anda"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Kamera"
@@ -2192,8 +2285,8 @@ msgstr "Kamera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Kamera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Batal"
@@ -2248,9 +2341,9 @@ msgstr "Batalkan pengaktifan kembali dan keluar"
msgid "Cancel search"
msgstr "Batal mencari"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Tidak dapat berinteraksi dengan pengguna yang diblokir"
@@ -2264,7 +2357,7 @@ msgstr "Subtitel (.vtt)"
msgid "Captions & alt text"
msgstr "Subtitel & teks alt"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr "Ganti bahasa aplikasi"
msgid "Change Handle"
msgstr "Ubah Panggilan"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Ubah layanan moderasi"
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Ubah alasan melapor"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Obrolan"
@@ -2361,6 +2454,13 @@ msgstr "Obrolan dihapus"
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Obrolan dibisukan"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Kotak masuk permintaan obrolan"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Permintaan obrolan"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Pengaturan obrolan"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Pengaturan Obrolan"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Obrolan dibunyikan"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Obrolan"
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "Pilih warna ini sebagai avatar Anda"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr "Klik untuk informasi"
msgid "click here"
msgstr "klik di sini"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Klik di sini untuk mengulang proses verifikasi."
@@ -2567,11 +2667,11 @@ msgstr "Klik di sini untuk mengulang proses verifikasi."
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Klik disini untuk memperbarui email Anda"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Ketuk untuk mengirim ulang pesan yang gagal"
@@ -2594,28 +2694,30 @@ msgstr "Ketuk untuk mengirim ulang pesan yang gagal"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Ketuk untuk mengirim ulang pesan yang gagal"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Tutup dialog aktif"
msgid "Close alert"
msgstr "Tutup peringatan"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Tutup kotak bawah"
@@ -2657,8 +2763,9 @@ msgstr "Tutup kotak bawah"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Tutup dialog"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Tutup gambar"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr "Tutup menu"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Tutup dialog ini"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Menutup peringatan pembaruan kata sandi"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Menutup komposer pos dan menghapus draf postingan"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Komik"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Panduan Komunitas"
@@ -2740,12 +2855,12 @@ msgstr "Selesaikan tantangan"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Tulis postingan baru"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Tulis postingan hingga {0, plural, other {# karakter}} panjangnya"
@@ -2753,11 +2868,11 @@ msgstr "Tulis postingan hingga {0, plural, other {# karakter}} panjangnya"
msgid "Compose reply"
msgstr "Tulis balasan"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Mengompres video..."
@@ -2780,7 +2895,7 @@ msgstr "Diatur pada <0>pengaturan moderasi0>."
msgid "Confirm"
msgstr "Konfirmasi"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Konten & Media"
msgid "Content and media"
msgstr "Konten dan media"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Konten dan Media"
@@ -2889,7 +3004,7 @@ msgstr "Latar menu konteks, klik untuk menutup menu."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Lanjutkan utasan"
msgid "Continue thread..."
msgstr "Lanjutkan utas..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Lanjutkan ke langkah berikutnya"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Percakapan"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Percakapan dihapus"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Percakapan dihapus"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Versi build disalin ke papan klip"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Salin DID"
msgid "Copy host"
msgstr "Salin host"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Salin tautan ke profil"
msgid "Copy link to starter pack"
msgstr "Salin tautan ke paket pemula"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Salin teks pesan"
@@ -3052,7 +3175,7 @@ msgstr "Salin nilai data TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Kebijakan Hak Cipta"
@@ -3065,7 +3188,7 @@ msgstr "Tidak dapat terhubung pada feed kustom"
msgid "Could not connect to feed service"
msgstr "Tidak dapat terhubung pada layanan feed"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Tidak dapat meninggalkan obrolan"
@@ -3094,6 +3217,10 @@ msgstr "Tidak dapat meninggalkan obrolan"
msgid "Could not load feed"
msgstr "Tidak dapat memuat feed"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Buat"
@@ -3159,7 +3286,7 @@ msgstr "Buat kode QR untuk paket pemula"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Buat paket pemula"
@@ -3174,13 +3301,14 @@ msgstr "Buatkan paket pemula untuk saya"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Buat akun"
msgid "Create an account without using this starter pack"
msgstr "Buat akun tanpa menggunakan paket pemula ini"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Buat avatar saja"
@@ -3206,7 +3334,7 @@ msgstr "Buat avatar saja"
msgid "Create another"
msgstr "Buat paket lain"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr "Buat daftar moderasi"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Buat akun baru"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Buat laporan untuk {0}"
@@ -3256,8 +3385,8 @@ msgstr "Buat daftar pengguna"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Dibuat pada {0}"
@@ -3341,7 +3470,7 @@ msgstr "Standar"
msgid "Default icons"
msgstr "Ikon bawaan"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Hapus catatan deklarasi obrolan"
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Hapus percakapan"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Hapus untuk saya"
@@ -3399,11 +3528,11 @@ msgstr "Hapus untuk saya"
msgid "Delete list"
msgstr "Hapus daftar"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Hapus pesan"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Hapus pesan untuk saya"
@@ -3413,7 +3542,7 @@ msgstr "Hapus akun saya"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Hapus postingan"
@@ -3434,12 +3563,12 @@ msgstr "Hapus daftar ini?"
msgid "Delete this post?"
msgstr "Hapus postingan ini?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Dihapus"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Akun Telah Dihapus"
@@ -3507,13 +3636,13 @@ msgstr "Dialog: sesuaikan siapa saja yang dapat berinteraksi dengan postingan in
msgid "Dim"
msgstr "Redup"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Nonaktifkan 2FA"
@@ -3521,7 +3650,7 @@ msgstr "Nonaktifkan 2FA"
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Nonaktifkan email 2FA"
@@ -3534,8 +3663,8 @@ msgstr "Nonaktifkan Email 2FA"
msgid "Disable haptic feedback"
msgstr "Matikan respons haptik"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Dinonaktifkan"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Buang"
msgid "Discard changes?"
msgstr "Buang perubahan?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Buang draf?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Buang postingan?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Temukan Feed Baru"
msgid "Dismiss"
msgstr "Tutup"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Abaikan spanduk"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Abaikan kesalahan"
@@ -3673,7 +3802,7 @@ msgstr "Tidak termasuk ketelanjangan."
msgid "Domain verified!"
msgstr "Domain terverifikasi!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Tidak memiliki kode atau perlu yang baru? <0>Klik di sini.0>"
@@ -3681,7 +3810,7 @@ msgstr "Tidak memiliki kode atau perlu yang baru? <0>Klik di sini.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Tidak dapat melihat kode? <0>Klik disini untuk mengirim ulang0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Tidak dapat melihat email? <0>Klik di sini untuk kirim ulang.0>"
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Selesai"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Ketuk dua kali atau tekan lama pada pesan untuk menambahkan reaksi"
@@ -3741,15 +3873,6 @@ msgstr "Ketuk dua kali untuk menyukai"
msgid "Download Bluesky"
msgstr "Unduh Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Unduh berkas CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Unduh berkas CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Unduh data obrolan"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Unduh data obrolan"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Mengungkapkan informasi pribadi"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "contoh: Pengguna yang membalas dengan iklan secara berulang."
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Ubah"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Ubah avatar"
@@ -3847,14 +3978,14 @@ msgstr "Ubah avatar"
msgid "Edit Feeds"
msgstr "Ubah Daftar Feed"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Edit gambar"
@@ -3868,7 +3999,16 @@ msgstr "Ubah pengaturan interaksi"
msgid "Edit interests"
msgstr "Ubah minat"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr "Ubah status siaran langsung"
msgid "Edit moderation list"
msgstr "Ubah daftar moderasi"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Ubah Daftar Feed"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Ubah notifikasi dari {0}"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Ubah Daftar Pengguna"
@@ -3925,7 +4060,7 @@ msgstr "Edit Profil"
msgid "Edit starter pack"
msgstr "Ubah paket pemula"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr "Ubah daftar pengguna"
msgid "Edit who can reply"
msgstr "Ubah siapa yang dapat membalas"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Ubah paket pemula Anda"
@@ -3971,7 +4106,7 @@ msgstr "Alamat email"
msgid "Email Resent"
msgstr "Email Dikirim Ulang"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "Email terkirim!"
@@ -4006,8 +4141,8 @@ msgstr "Sisipkan postingan ini di situs web Anda. Salin potongan kode berikut da
msgid "Embedded video player"
msgstr "Pemutar video tertanam"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Aktifkan"
@@ -4025,7 +4160,7 @@ msgstr "Aktifkan konten dewasa"
msgid "Enable captions"
msgstr "Aktifkan teks keterangan"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Aktifkan email 2FA"
@@ -4038,13 +4173,12 @@ msgstr "Aktifkan media eksternal"
msgid "Enable media players for"
msgstr "Aktifkan pemutar media untuk"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Nyalakan notifikasi untuk akun dengan mengunjungi akun mereka dan menekan tombol ikon <0>lonceng0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Aktifkan notifikasi push"
@@ -4091,8 +4225,8 @@ msgstr "Masukkan kata sandi"
msgid "Enter a word or tag"
msgstr "Masukkan kata atau tagar"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Masukkan kode"
@@ -4143,7 +4277,7 @@ msgstr "Masuk ke mode layar penuh"
msgid "Entertainment"
msgstr "Hiburan"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Galat"
@@ -4185,23 +4319,23 @@ msgstr "Semua dapat membalas"
msgid "Everybody can reply to this post."
msgstr "Semua orang dapat membalas postingan ini."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Semua orang"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Semua orang"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Semua orang"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Yang lainnya"
@@ -4217,8 +4351,8 @@ msgstr "Kecuali pengguna yang Anda ikuti"
msgid "Exit fullscreen"
msgstr "Keluar dari layar penuh"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Bentangkan teks alt"
@@ -4226,7 +4360,7 @@ msgstr "Bentangkan teks alt"
msgid "Expand list of users"
msgstr "Bentangkan daftar pengguna"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Bentangkan atau ciutkan postingan lengkap yang Anda balas"
@@ -4238,7 +4372,7 @@ msgstr "Bentangkan teks posting"
msgid "Expands or collapses post text"
msgstr "Bentangkan atau ciutkan postingan"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "URI diharapkan mengarah ke suatu catatan data"
@@ -4277,9 +4411,9 @@ msgstr "Media eksplisit atau berpotensi mengganggu."
msgid "Explicit sexual images."
msgstr "Gambar seksual eksplisit."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Jelajahi"
@@ -4289,11 +4423,8 @@ msgstr "Jelajahi"
msgid "Explore the app"
msgstr "Jelajahi aplikasi"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,7 @@ msgstr "Media Eksternal"
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 "Media eksternal memungkinkan situs web untuk mengumpulkan informasi tentang Anda dan perangkat Anda. Tidak ada informasi yang dikirim atau diminta hingga Anda menekan tombol \"putar\"."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Preferensi Media Eksternal"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Gagal menerima obrolan"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Gagal menambahkan emoji reaksi"
@@ -4354,7 +4489,7 @@ msgstr "Gagal menambahkan paket pemula"
msgid "Failed to change handle. Please try again."
msgstr "Gagal mengubah panggilan. Silakan coba lagi."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "Gagal membuat sandi aplikasi. Silakan coba lagi."
msgid "Failed to create conversation"
msgstr "Gagal membuat percakapan"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Gagal menghapus obrolan"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Gagal menghapus pesan"
@@ -4394,24 +4529,24 @@ msgstr "Gagal menghapus postingan, silakan coba lagi"
msgid "Failed to delete starter pack"
msgstr "Gagal menghapus paket pemula"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "Gagal meluncurkan aplikasi SMS"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Gagal memuat percakapan"
@@ -4456,17 +4599,8 @@ msgstr "Gagal memuat feed"
msgid "Failed to load feeds preferences"
msgstr "Gagal memuat preferensi feed"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Gagal memuat pengaturan notifikasi."
@@ -4493,16 +4627,15 @@ msgstr "Gagal memuat daftar feed yang disarankan"
msgid "Failed to load suggested follows"
msgstr "Gagal memuat saran akun untuk diikuti"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Gagal menandai semua permintaan sebagai dibaca"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Gagal menyematkan postingan"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Gagal menghapus data. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Gagal menghapus emoji reaksi"
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr "Gagal menghapus verifikasi"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Gagal menyimpan draf"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Gagal untuk menyimpan minat Anda."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Gagal mengirim email, silakan coba lagi."
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Gagal mengajukan banding, silakan coba lagi."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Gagal membisukan utas, silakan coba lagi"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr "Gagal lepaskan semat daftar"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Gagal memperbarui pengaturan email 2FA"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Gagal memperbarui email, silakan coba lagi."
@@ -4614,7 +4751,7 @@ msgstr "Gagal memperbarui daftar feed"
msgid "Failed to update notification declaration"
msgstr "Gagal memperbarui deklarasi notifikasi"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Gagal memperbarui pengaturan"
@@ -4641,7 +4778,7 @@ msgstr "Akun palsu atau bot"
msgid "False information about elections"
msgstr "Informasi palsu tentang pemilihan umum"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Feed"
@@ -4649,7 +4786,7 @@ msgstr "Feed"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Feed oleh {0}"
@@ -4662,7 +4799,7 @@ msgstr "Pembuat feed"
msgid "Feed identifier"
msgstr "Tanda pengenal feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Menu feed"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Masukkan dikirim ke operator feed"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Feed"
@@ -4739,7 +4876,7 @@ msgstr "Saring pencarian berdasarkan bahasa (saat ini: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Saring siapa saja yang dapat memilih untuk menerima notifikasi untuk aktivitas Anda"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Saring dari siapa saja Anda akan menerima notifikasi"
@@ -4747,11 +4884,11 @@ msgstr "Saring dari siapa saja Anda akan menerima notifikasi"
msgid "Finalizing"
msgstr "Menyelesaikan"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Akhirnya!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Finansial"
msgid "Find accounts to follow"
msgstr "Temukan akun untuk diikuti"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Cari Kontak"
@@ -4799,7 +4936,7 @@ msgstr "Cari orang untuk diikuti"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Temukan postingan, pengguna dan feed di Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Cari teman Anda"
@@ -4944,8 +5081,12 @@ msgstr "Diikuti oleh <0>{0}0> dan <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Diikuti oleh <0>{0}0>, <1>{1}1>, dan {2, plural, other {# lainnya}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Pengikut @{0} yang Anda kenal"
@@ -4995,19 +5136,16 @@ msgstr "Mengikuti {handle}"
msgid "Following feed preferences"
msgstr "Preferensi feed Mengikuti"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Preferensi Feed Mengikuti"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Mengikuti Anda"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Mengikuti Anda"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Font"
@@ -5069,7 +5207,7 @@ msgstr "Lupa?"
msgid "Free your feed"
msgstr "Bebaskan feed Anda"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "Dari"
@@ -5086,35 +5224,35 @@ msgstr "Dari <0/>"
msgid "Generate a starter pack"
msgstr "Buatkan paket pemula"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,44 +5260,48 @@ msgstr ""
msgid "Get help"
msgstr "Dapatkan bantuan"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Dapatkan notifikasi ketika orang menyebutkan Anda."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Dapatkan notifikasi ketika orang mengutip postingan Anda."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Dapatkan notifikasi ketika orang membalas postingan Anda."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Dapatkan notifikasi ketika orang memposting ulang postingan yang Anda posting ulang."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Dapatkan notifikasi ketika orang memposting ulang postingan Anda."
-#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
-msgid "Get notified about new posts"
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr ""
+
+#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
+msgid "Get notified about new posts"
msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Dapatkan notifikasi ketika seseorang memposting"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Memulai"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Beri wajah pada profil Anda"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Kembali"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Kembali"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Kembali ke langkah sebelumnya"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Kembali ke beranda"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Kembali ke beranda"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Ke Beranda"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Buka pengaturan akun"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Buka percakapan dengan {0}"
@@ -5299,12 +5440,12 @@ msgstr "Berikutnya"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Buka profil"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Mengerti"
@@ -5340,59 +5481,75 @@ msgstr "Konten grafis mengandung kekerasan"
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Panggilan terlalu panjang. Silakan coba yang lebih pendek."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "Yang terjadi sekarang"
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Tagar"
@@ -5458,8 +5615,8 @@ msgstr "Tagar {tag}"
msgid "Hate speech"
msgstr "Ujaran kebencian"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Punya kode? <0>Klik di sini.0>"
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Bantuan"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Beri tahu orang-orang bahwa Anda bukan bot dengan mengunggah gambar atau membuat avatar."
@@ -5652,18 +5809,18 @@ msgstr "Hmmmm, sepertinya kami kesulitan memuat data ini. Lihat di bawah untuk k
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmmm, kami tidak dapat memuat layanan moderasi."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Harap tunggu! Kami secara bertahap memberikan akses video, dan Anda masih dalam antrian. Periksa kembali nanti!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Beranda"
@@ -5721,7 +5878,7 @@ msgstr "Saya mengerti"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Beralih ke status teks alt yang dibentangkan jika teks alt panjang"
@@ -5757,7 +5914,7 @@ msgstr "Jika Anda menghapus daftar ini, Anda tidak dapat memulihkannya lagi."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Jika Anda memiliki domain sendiri, Anda dapat menggunakannya sebagai panggilan. Ini memungkinkan Anda untuk memverifikasi identitas secara mandiri. <0>Pelajari selengkapnya di sini.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Jika Anda perlu memperbarui email Anda, <0>Klik di sini0>."
@@ -5765,7 +5922,7 @@ msgstr "Jika Anda perlu memperbarui email Anda, <0>Klik di sini0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Jika Anda menghapus postingan ini, Anda tidak dapat memulihkannya lagi."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Jika Anda memperbarui alamat email Anda, email 2FA akan dinonaktifkan."
@@ -5773,7 +5930,6 @@ msgstr "Jika Anda memperbarui alamat email Anda, email 2FA akan dinonaktifkan."
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Jika Anda ingin mengubah kata sandi, kami akan mengirimkan kode untuk memverifikasi bahwa ini adalah akun Anda."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Jika Anda ingin membatasi siapa saja yang dapat menerima notifikasi untuk aktivitas akun Anda, Anda dapat mengubahnya di <0>Pengaturan → Privasi dan Keamanan0>."
@@ -5786,23 +5942,33 @@ msgstr "Jika Anda merupakan pengembang, Anda bisa menghosting peladen Anda sendi
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Gambar"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Tembolok gambar dibersihkan, sisa {0}"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "Dalam aplikasi"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Notifikasi dalam aplikasi"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "Dalam aplikasi, Semua orang"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "Dalam aplikasi, Orang yang Anda ikuti"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "Dalam aplikasi, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "Dalam aplikasi, Push, Semua orang"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "Dalam aplikasi, Push, Orang yang saya ikuti"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Kotak masuk kosong!"
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Kode konfirmasi 2FA tidak valid."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Panggilan tidak valid. Silakan coba yang lain."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Subjek laporan tidak valid"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Kode Verifikasi Tidak Valid"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Hanya ada Anda saat ini! Tambahkan lebih banyak orang ke paket pemula Anda melalui pencarian di atas."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID Kerja: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID Kerja: {0}"
msgid "Jobs"
msgstr "Karir"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Karir"
msgid "Join Bluesky"
msgstr "Bergabung di Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Bergabunglah dengan kami"
msgid "Journalism"
msgstr "Jurnalisme"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "Label pada akun Anda"
msgid "Labels on your content"
msgstr "Label pada konten Anda"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Pengaturan Bahasa"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Terbaru"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Pelajari lebih lanjut tentang peringatan ini"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Pelajari lebih lanjut tentang apa yang bersifat publik di Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "Pelajari lebih lanjut."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Tinggalkan"
@@ -6276,7 +6464,7 @@ msgstr "Tinggalkan obrolan"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Tinggalkan percakapan"
@@ -6284,13 +6472,13 @@ msgstr "Tinggalkan percakapan"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Tinggalkan percakapan"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Terang"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Suka ({0, plural, other {# suka}})"
@@ -6346,11 +6534,7 @@ msgstr "Sukai 10 postingan"
msgid "Like 10 posts to train the Discover feed"
msgstr "Sukai 10 postingan untuk melatih feed Discover"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Notifikasi suka"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Sukai feed ini"
@@ -6358,8 +6542,8 @@ msgstr "Sukai feed ini"
msgid "Like this labeler"
msgstr "Sukai labeler ini"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Disukai oleh"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Disukai oleh {0, plural, other {# pengguna}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Disukai oleh {likeCount, plural, other {# pengguna}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Suka"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Suka pada postingan ulang Anda"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Suka pada notifikasi postingan ulang Anda"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Suka pada postingan ini"
@@ -6409,11 +6589,11 @@ msgstr "Suka pada postingan ini"
msgid "Linear"
msgstr "Linier"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Daftar"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Daftar batal dibisukan"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Daftar"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Memuat..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Catatan"
@@ -6662,7 +6842,7 @@ msgstr "Sepertinya Anda belum memiliki feed mengikuti. <0>Klik di sini untuk men
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Buat penyesuaian untuk pengaturan email akun Anda"
@@ -6687,9 +6867,8 @@ msgstr "Kelola pengaturan verifikasi"
msgid "Manage your muted words and tags"
msgstr "Kelola kata dan tagar yang dibisukan"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Tandai semua sebagai dibaca"
@@ -6698,13 +6877,12 @@ msgstr "Tandai semua sebagai dibaca"
msgid "Mark as read"
msgstr "Tandai telah dibaca"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Ditandai semua sebagai dibaca"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Mungkin nanti"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Media yang mungkin mengganggu atau tidak pantas untuk sebagian orang."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Notifikasi sebutan"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "pengguna yang Anda sebut"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Sebutan"
@@ -6775,22 +6949,22 @@ msgstr "Kirim pesan ke {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Pesan dihapus"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Pesan dihapus"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Pesan dari @{0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Pesan terlalu panjang"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Opsi pesan"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Pesan"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr "Tengah malam"
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Notifikasi lainnya"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderasi"
@@ -6894,7 +7064,7 @@ msgstr "Daftar moderasi diperbarui"
msgid "Moderation lists"
msgstr "Daftar moderasi"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Daftar Moderasi"
@@ -6903,7 +7073,7 @@ msgstr "Daftar Moderasi"
msgid "moderation settings"
msgstr "pengaturan moderasi"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Status moderasi"
@@ -6949,7 +7119,7 @@ msgstr "Film"
msgid "Music"
msgstr "Musik"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Bisukan"
@@ -6994,7 +7164,7 @@ msgstr "Bisukan daftar"
msgid "Mute these accounts?"
msgstr "Bisukan akun-akun ini?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Bisukan utas"
msgid "Mute words & tags"
msgstr "Bisukan kata & tagar"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Akun yang dibisukan"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Akun yang Dibisukan"
@@ -7108,8 +7278,8 @@ msgstr "Menuju ke layar berikutnya"
msgid "Navigates to your profile"
msgstr "Menuju ke profil Anda"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Ingin melaporkan pelanggaran hak cipta, permintaan hukum, atau masalah kepatuhan terhadap peraturan?"
@@ -7136,34 +7306,34 @@ msgstr "{postsCount, plural, other {Postingan}} baru dari {firstAuthorLink}"
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Obrolan baru"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Alamat email baru"
@@ -7174,29 +7344,25 @@ msgstr "Alamat email baru"
msgid "New Feature"
msgstr "Fitur Baru"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Notifikasi pengikut baru"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Pengikut baru"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Postingan baru"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Postingan baru"
@@ -7262,8 +7428,8 @@ msgstr "Berita"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Tidak ada gambar"
@@ -7362,7 +7528,7 @@ msgstr "Tidak lagi mengikuti {0}"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Belum ada pesan"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "Belum ada notifikasi!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Tidak ada hasil"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Tidak ada hasil"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Ketelanjangan Non-Seksual"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Tidak ada"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Tidak Ditemukan"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr "Catatan: Postingan ini hanya dapat dilihat untuk pengguna yang masuk."
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Pengaturan notifikasi"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Suara notifikasi"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Notifikasi"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Pemberitahuan untuk yang lainnya, seperti ketika seseorang bergabung melalui salah satu paket pemula Anda."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "sekarang"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Matikan"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "di<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Pengaturan ulang orientasi"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "Satu atau beberapa GIF belum memiliki teks alt."
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "Satu atau beberapa gambar belum memiliki teks alt."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Satu atau beberapa video belum memiliki teks alt."
@@ -7685,6 +7835,26 @@ msgstr "Satu atau beberapa video belum memiliki teks alt."
msgid "Only {0} can reply."
msgstr "Hanya {0} yang dapat membalas."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Hanya pengikut yang saya ikuti"
msgid "Only image files are supported"
msgstr "Hanya mendukung berkas gambar"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Hanya mendukung berkas WebVTT (.vtt)"
@@ -7712,7 +7892,7 @@ msgstr "Ups, ada yang tidak beres!"
msgid "Oops!"
msgstr "Ups!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Buka pembuat avatar"
@@ -7720,12 +7900,17 @@ msgstr "Buka pembuat avatar"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Buka opsi percakapan"
@@ -7739,16 +7924,16 @@ msgstr "Buka menu geser"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Buka pemilih emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Buka halaman info feed"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Buka menu opsi feed"
@@ -7760,13 +7945,17 @@ msgstr "Buka daftar emoji lengkap"
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Buka tautan {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Buka paket"
msgid "Open post options menu"
msgstr "Buka menu opsi postingan"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Buka profil"
@@ -7817,6 +8006,10 @@ msgstr "Buka halaman buku cerita"
msgid "Open system log"
msgstr "Buka log sistem"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Membuka detail tambahan untuk entri debug"
msgid "Opens alt text dialog"
msgstr "Membuka dialog teks alt"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Membuka kamera pada perangkat"
@@ -7858,22 +8051,24 @@ msgstr "Membuka penyusun postingan"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Membuka alur untuk membuat akun baru Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Membuka alur untuk masuk ke akun Bluesky Anda yang sudah ada"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr "Membuka tautan {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Membuka dialog status siaran langsung"
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Membuka profil ini"
@@ -7997,12 +8192,12 @@ msgstr "Postingan blog kami"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Tim moderasi kami telah menerima laporan Anda."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Moderator kami telah meninjau laporan dan memutuskan untuk menonaktifkan akses Anda ke obrolan di Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Moderator kami telah meninjau laporan dan memutuskan untuk menonaktifkan
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Halaman tidak ditemukan"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Halaman Tidak Ditemukan"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Jeda video"
msgid "People"
msgstr "Profil"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Orang yang diikuti oleh @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Orang yang mengikuti @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Orang yang saya ikuti"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Gambar yang ditujukan untuk orang dewasa."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Sematkan feed"
@@ -8152,7 +8348,7 @@ msgstr "Sematkan feed"
msgid "Pin to home"
msgstr "Sematkan ke beranda"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Sematkan ke Beranda"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Disematkan"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} disematkan ke Beranda"
@@ -8236,7 +8432,7 @@ msgstr "Silakan tentukan panggilan Anda."
msgid "Please choose your password."
msgstr "Masukkan kata sandi Anda."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Silakan klik pada tautan dalam email yang telah kami kirimkan untuk memverifikasi alamat email baru Anda. Ini merupakan langkah penting agar Anda menikmati terus semua fitur dari Bluesky."
@@ -8244,7 +8440,7 @@ msgstr "Silakan klik pada tautan dalam email yang telah kami kirimkan untuk memv
msgid "Please complete the verification captcha."
msgstr "Mohon selesaikan verifikasi captcha."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr "Silakan masukkan kata sandi. Kata sandi harus memiliki setidaknya 8 kara
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Masukkan nama unik untuk sandi aplikasi ini atau gunakan nama yang kami buat secara acak."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Silakan masukkan kode yang valid."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Silakan masukkan alamat email yang valid."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Silakan masukkan kode yang kami kirimkan pada <0>{0}0> dibawah."
@@ -8293,7 +8489,7 @@ msgstr "Silakan masukkan kode yang kami kirimkan pada <0>{0}0> dibawah."
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Silakan masukkan kode keamanan yang kami kirimkan pada alamat email Anda sebelumnya."
@@ -8306,7 +8502,7 @@ msgstr "Masukkan email Anda."
msgid "Please enter your invite code."
msgstr "Silakan masukkan kode undangan Anda."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Silakan masukkan alamat email baru Anda."
@@ -8323,7 +8519,7 @@ msgstr "Silakan masukkan nama pengguna Anda"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Jelaskan menurut Anda mengapa {0} salah dalam menerapkan label ini"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Mohon jelaskan mengapa menurut Anda obrolan Anda dinonaktifkan secara keliru"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Silakan verifikasi email Anda"
@@ -8383,7 +8579,7 @@ msgstr "Politik"
msgid "Porn"
msgstr "Pornografi"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Posting"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Posting Semua"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Postingan diblokir"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Postingan oleh @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Postingan dihapus"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Postingan gagal diunggah. Silakan periksa koneksi internet Anda dan coba lagi."
@@ -8454,7 +8650,7 @@ msgstr "Postingan yang Anda sembunyikan"
msgid "Post interaction settings"
msgstr "Pengaturan interaksi postingan"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Pengaturan Interaksi Postingan"
@@ -8464,8 +8660,8 @@ msgstr "Pengaturan Interaksi Postingan"
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Postingan dilepaskan"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Postingan dapat dibisukan berdasarkan teks, tagar, atau keduanya. Sebaik
msgid "Posts hidden"
msgstr "Postingan disembunyikan"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Postingan, Balasan"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Tautan yang berpotensi menyesatkan"
@@ -8528,6 +8719,7 @@ msgstr "Tekan untuk mencoba menghubungkan kembali"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Tekan untuk mengulangi"
@@ -8536,7 +8728,7 @@ msgstr "Tekan untuk mengulangi"
msgid "Press to view followers of this account that you also follow"
msgstr "Tekan untuk melihat pengikut akun ini yang juga Anda ikuti"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "Privasi"
msgid "Privacy and security"
msgstr "Privasi dan keamanan"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privasi dan Keamanan"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Pengaturan Privasi dan Keamanan"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Kebijakan Privasi"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Memproses video..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Memproses..."
@@ -8602,8 +8793,8 @@ msgstr "Memproses..."
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Kirim postingan"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Kirim postingan"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Kirim balasan"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Kirim balasan"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Push"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Notifikasi push"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
-msgstr "Push, Semua orang"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "Push, Orang yang Anda ikuti"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "Kode QR telah diunduh!"
msgid "QR code saved to your camera roll!"
msgstr "Kode QR disimpan ke rol kamera Anda!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Notifikasi kutipan"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Kutipan dinonaktifkan"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Kutipan"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Kembalikan kutipan"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr "Reaksi dengan {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Baca blog postingan (dalam bahasa Inggris)"
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr "Alasan banding"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Terima notifikasi dalam aplikasi"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Terima notifikasi push"
@@ -8841,6 +9028,10 @@ msgstr "Direkomendasikan"
msgid "Reconnect"
msgstr "Hubungkan kembali"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Tolak"
msgid "Reject chat request"
msgstr "Tolak permintaan obrolan"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Memuat ulang percakapan"
@@ -8896,17 +9087,17 @@ msgstr "Hapus akun"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Hapus sisipan"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Hapus Avatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Hapus Sampul"
@@ -8914,8 +9105,9 @@ msgstr "Hapus Sampul"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Hapus sisipan"
@@ -8933,8 +9125,8 @@ msgstr "Hapus feed?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr "Hapus dari feed Anda?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Hapus gambar"
@@ -9009,11 +9201,11 @@ msgstr "Hapus verifikasi"
msgid "Remove your verification for this account?"
msgstr "Hapus verifikasi Anda dari akun ini?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Dilepaskan oleh pemosting"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Dilepaskan oleh Anda"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Balasan"
@@ -9104,14 +9295,14 @@ msgstr "Balasan dinonaktifkan"
msgid "Replies to this post are disabled."
msgstr "Balasan ke postingan ini dinonaktifkan."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Balas"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Balas ({0, plural, other {# balasan}})"
@@ -9125,10 +9316,6 @@ msgstr "Balasan Disembunyikan oleh Pembuat Utas"
msgid "Reply Hidden by You"
msgstr "Balasan yang Anda Sembunyikan"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Notifikasi balasan"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Pengaturan balasan dipilih oleh pembuat utas"
@@ -9146,9 +9333,9 @@ msgstr "Visibilitas balasan diperbarui"
msgid "Reply was successfully hidden"
msgstr "Balasan berhasil disembunyikan"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Laporkan"
@@ -9164,13 +9351,13 @@ msgstr "Laporkan akun"
msgid "Report conversation"
msgstr "Laporkan percakapan"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Dialog laporan"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Laporkan feed"
@@ -9179,7 +9366,7 @@ msgstr "Laporkan feed"
msgid "Report list"
msgstr "Laporkan daftar"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Laporkan pesan"
@@ -9199,8 +9386,8 @@ msgstr "Laporkan paket pemula"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Laporan dikirim"
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Laporkan feed ini"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Laporkan daftar ini"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Posting ulang"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Posting ulang ({0, plural, other {# postingan ulang}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Notifikasi posting ulang"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Diposting ulang oleh Anda"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Postingan ulang"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Postingan ulang postingan ini"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Postingan ulang dari posting ulang Anda"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Notifikasi posting ulang dari postingan ulang Anda"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Wajibkan teks alt sebelum memposting"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Gunakan kode email untuk masuk ke akun Anda."
@@ -9328,7 +9534,11 @@ msgstr "Diwajibkan untuk provider ini"
msgid "Required in your region"
msgstr "Diperlukan di wilayah Anda"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Kirim ulang"
@@ -9393,15 +9603,16 @@ msgstr "Mencoba kembali tindakan terakhir yang gagal"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Mencoba kembali tindakan terakhir yang gagal"
msgid "Retry"
msgstr "Ulangi"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Ulangi memuat opsi laporan"
@@ -9426,14 +9637,14 @@ msgstr "Ulangi memuat opsi laporan"
msgid "Return to previous page"
msgstr "Kembali ke halaman sebelumnya"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Kembali ke beranda"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Kembali ke halaman sebelumnya"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Simpan perubahan"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Simpan kode QR"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Simpan ke daftar feed saya"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "Feed Tersimpan"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Disimpan ke daftar feed Anda"
@@ -9551,8 +9764,8 @@ msgstr "Disimpan ke daftar feed Anda"
msgid "Say hello!"
msgstr "Katakan halo!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "Gulir ke atas"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Cari"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Cari postingan @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Cari postingan saya"
msgid "Search posts"
msgstr "Cari postingan"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Cari profil"
msgid "Search..."
msgstr "Cari..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Mencari profil"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Tahap keamanan diperlukan"
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "Pilih warna"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "Pilih GIF"
msgid "Select GIF \"{0}\""
msgstr "Pilih GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Pilih bahasa..."
msgid "Select languages"
msgstr "Pilih bahasa"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Pilih layanan moderasi"
@@ -9904,11 +10117,11 @@ msgstr "Pilih minat Anda dari opsi di bawah ini"
msgid "Select your preferred language for translations in your feed."
msgstr "Pilih bahasa yang disukai untuk terjemahan dalam feed Anda."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Pilih saluran notifikasi pilihan Anda"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Kirim email"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Kirim masukan"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Kirim pesan"
@@ -9952,7 +10165,7 @@ msgstr "Kirim postingan ke {name}"
msgid "Send post to..."
msgstr "Kirim postingan ke..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Kirim laporan ke {title}"
@@ -9960,7 +10173,7 @@ msgstr "Kirim laporan ke {title}"
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Kirim melalui pesan"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Atur email untuk pengaturan ulang kata sandi"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Pengaturan"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Pengaturan untuk aktivitas dari yang lainnya"
@@ -10030,39 +10243,39 @@ msgstr "Pengaturan untuk aktivitas dari yang lainnya"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Pengaturan untuk mengizinkan orang lain diberi tahu tentang postingan Anda"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Pengaturan untuk notifikasi suka"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Pengaturan untuk notifikasi sebutan"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Pengaturan untuk notifikasi pengikut baru"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Pengaturan untuk notifikasi kutipan"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Pengaturan untuk notifikasi balasan"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "Aktivitas seksual atau ketelanjangan erotis."
msgid "Sexually Suggestive"
msgstr "Bermuatan Seksual"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Bagikan DID pemosting"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr "Bagikan URI postingan at://"
msgid "Share QR code"
msgstr "Bagikan kode QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Bagikan feed ini"
@@ -10151,7 +10366,7 @@ msgstr "Bagikan lewat..."
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Penguji Preferensi Bersama"
@@ -10167,16 +10382,16 @@ msgstr "Tampilkan teks alt"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Tetap tampilkan"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Tampilkan peringatan dan saring dari feed"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr "Menampilkan konten"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Masuk atau buat akun"
msgid "Sign in or create your account to join the conversation!"
msgstr "Masuk atau buat akun Anda untuk bergabung dalam percakapan!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Masuk ke akun yang tidak tercantum dalam daftar"
@@ -10337,6 +10558,10 @@ msgstr "Masuk ke akun yang tidak tercantum dalam daftar"
msgid "Sign in to Bluesky or create a new account"
msgstr "Masuk ke Bluesky atau buat akun baru"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Masuk untuk melihat postingan"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Keluar"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Keluar"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Keluar?"
@@ -10391,7 +10616,7 @@ msgstr "Lewati"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Lebih kecil"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Menunda pengingat"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Seseorang menanggapi {0}"
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Ada sesuatu yang kurang benar dengan data yang Anda laporkan. Silakan hubungi bantuan."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Ada yang tidak beres"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Ada yang tidak beres!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Ada yang tidak beres. Silakan coba lagi."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Ada masalah? Beri tahu kami."
@@ -10568,7 +10798,7 @@ msgstr "Olahraga"
msgid "Start a conversation, and it will appear here."
msgstr "Mulai percakapan, dan percakapan akan muncul di sini."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Mulai obrolan baru"
@@ -10582,17 +10812,17 @@ msgstr "Mulai tambahkan orang"
msgid "Start adding people!"
msgstr "Mulai tambahkan orang!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Mulai obrolan dengan {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Paket Pemula"
@@ -10654,12 +10884,12 @@ msgstr "Penyimpanan dibersihkan, Anda perlu memulai ulang aplikasi sekarang."
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Storybook"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Kirim"
@@ -10684,9 +10914,9 @@ msgstr "Ajukan banding"
msgid "Submit Appeal"
msgstr "Ajukan Banding"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Kirim laporan"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Berlangganan"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Sukses!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Berhasil diverifikasi"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Terbenam"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Dukungan"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Ganti akun"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Ganti akun"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Beralih ke {0}"
@@ -10828,7 +11062,7 @@ msgstr "Hanya tagar"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr "Ketuk untuk tutup menu konteks"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Ketuk untuk menutup"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Ketentuan"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Teks & tagar"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Area input teks"
@@ -11049,6 +11301,11 @@ msgstr "Pengaturan ini akan otomatis diterapkan ke postingan baru. Anda dapat me
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Kebijakan Privasi telah dipindahkan ke <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "Ada masalah saat menghubungi server"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Ada masalah saat menghubungi server, silakan periksa koneksi internet Anda dan coba lagi."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Ada masalah saat mengambil notifikasi. Ketuk di sini untuk mencoba lagi."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Ada masalah saat mengambil postingan. Ketuk di sini untuk mencoba lagi."
@@ -11161,7 +11420,7 @@ msgstr "Ada masalah saat mengambil info layanan Anda"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Ada masalah saat menghapus feed ini. Silakan periksa koneksi internet Anda dan coba lagi."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Banding ini akan dikirim ke <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Banding ini akan dikirimkan ke layanan moderasi Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Banding ini akan dikirimkan ke layanan moderasi Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Konten ini tidak tersedia karena salah satu pengguna yang terlibat telah
msgid "This content is not viewable without a Bluesky account."
msgstr "Konten ini tidak dapat dilihat tanpa akun Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Percakapan ini dilakukan dengan akun yang telah dihapus atau dinonaktifk
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Email ini sudah terhubung dengan akun Anda."
@@ -11360,7 +11628,7 @@ msgstr "Feed ini tidak lagi online. Kami akan menampilkan <0>Discover0> sebaga
msgid "This handle is reserved. Please try a different one."
msgstr "Panggilan ini sudah digunakan. Silakan coba yang lain."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr "Tautan ini tidak valid"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr "Daftar ini – dibuat oleh Anda –mengandung kemungkinan pelanggaran pe
msgid "This list is empty."
msgstr "Daftar ini kosong."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Pembuat postingan ini telah menonaktifkan kutipan."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Balasan ini akan disortir ke bagian tersembunyi di bawah utas Anda dan akan membisukan notifikasi balasan selanjutnya - baik untuk Anda maupun orang lain."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr "Pengguna ini tidak memiliki nama tampilan, dan oleh karena itu tidak dap
msgid "This user doesn't have any followers."
msgstr "Pengguna ini tidak memiliki pengikut."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Pengguna ini telah memblokir Anda. Anda tidak dapat melihat konten mereka."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Preferensi Utas"
msgid "Threaded"
msgstr "Bersusun"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Preferensi Utas"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Untuk menonaktifkan metode 2FA melalui email, silakan verifikasi akses Anda ke alamat email tersebut."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Untuk menonaktifkan metode email 2FA Anda, silakan verifikasi akses Anda ke <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Teratas"
msgid "Top replies first"
msgstr "Balasan teratas lebih dulu"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Topik"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Tren Video"
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "Percaya muncul dari hubungan, komunitas, dan konteks bersama, oleh karena itu kami juga aktifkan <0>verifikator terpecaya0>: organisasi yang bisa langsung terbitkan verifikasi."
@@ -11763,11 +12044,15 @@ msgstr "Tidak dapat terhubung ke layanan. Mohon periksa koneksi internet Anda."
msgid "Unable to delete"
msgstr "Tidak dapat menghapus"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr "Tidak tersedia"
msgid "Unavailable feed information"
msgstr "Informasi feed tidak tersedia"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Buka blokir daftar"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr "Berhenti ikuti akun"
msgid "Unfollows the user"
msgstr "Berhenti mengikuti pengguna"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Sayangnya, tidak ada dari labeler yang Anda langgani mendukung tipe laporan ini."
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Batal suka ({0, plural, other {# suka}})"
@@ -11918,7 +12203,7 @@ msgstr "Batal suka ({0, plural, other {# suka}})"
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Bunyikan percakapan"
msgid "Unmute list"
msgstr "Bunyikan daftar"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Lepas sematan"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Lepaskan feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Lepaskan sematan dari beranda"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Lepas sematan daftar moderasi"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} dilepaskan dari Beranda"
@@ -12030,11 +12315,11 @@ msgstr "Berhenti langganan pelabel ini"
msgid "Unsubscribed from list"
msgstr "Telah berhenti berlangganan dari daftar"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr "Perbarui"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Perbarui <0>{displayName}0> dalam Daftar"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Perbarui email"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "Perbarui ke {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Perbarui email Anda"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Gagal memperbarui visibilitas balasan"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Unggah foto saja"
@@ -12098,39 +12395,40 @@ msgstr "Unggah foto saja"
msgid "Upload a text file to:"
msgstr "Unggah berkas teks ke:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Unggah dari Kamera"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Unggah dari Berkas"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Unggah dari Pustaka"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Mengunggah gambar..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Mengunggah keluku tautan..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Mengunggah video..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Pengguna diblokir"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Daftar pengguna {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "pengguna yang diikuti <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "pengguna yang mengikuti <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr "Verifikasi gagal, silakan coba lagi."
msgid "Verification settings"
msgstr "Pengaturan verifikasi"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Pengaturan Verifikasi"
@@ -12304,8 +12602,8 @@ msgstr "Verifikasi lagi"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Verifikasi DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Verifikasi kode email"
@@ -12349,7 +12647,7 @@ msgstr "Verifikasi akun ini?"
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Versi {0}"
msgid "Video"
msgstr "Video"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Video gagal diproses"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Feed Video"
@@ -12419,7 +12717,7 @@ msgstr "Video tidak ditemukan."
msgid "Video settings"
msgstr "Pengaturan video"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Video diunggah"
@@ -12432,18 +12730,18 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Video"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Lihat avatar {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Lihat profil {0}"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Lihat detail"
msgid "View full thread"
msgstr "Lihat utas lengkap"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Lihat informasi tentang label ini"
@@ -12522,7 +12828,7 @@ msgstr "Lihat lainnya"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "Lihat profil"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Lihat avatar"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "Lihat layanan pelabelan yang disediakan oleh @{0}"
msgid "View this user's verifications"
msgstr "Lihat verifikasi pengguna ini"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Lihat pengguna yang menyukai feed ini"
@@ -12596,8 +12902,8 @@ msgstr "Lihat daftar akun yang Anda bisukan"
msgid "View your verifications"
msgstr "Lihat verifikasi Anda"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Melihat gambar penuh"
@@ -12640,8 +12946,8 @@ msgstr "Peringatkan konten"
msgid "Warn content and filter from feeds"
msgstr "Peringatkan konten dan saring dari feed"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Tonton sekarang"
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr "Kami tidak menemukan hasil apa pun untuk topik tersebut."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Kami tidak dapat memuat percakapan ini"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Kami sarankan memilih setidaknya dua minat."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Kami telah mengirimkan email ke <0>{0}0> yang berisi tautan. Silakan klik tautan tersebut untuk menyelesaikan proses verifikasi email."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Kami tidak dapat memastikan apakah Anda diizinkan untuk mengunggah video. Silakan coba lagi."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Kami akan mengirimkan email ke <0>{0}0> yang berisi tautan. Silakan klik tautan tersebut untuk menyelesaikan proses verifikasi email."
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "Kami mengalami masalah jaringan, coba lagi"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Kami memperkenalkan lapisan verifikasi baru di Bluesky — tanda centang yang mudah dilihat."
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Kami mohon maaf! Postingan yang Anda balas telah dihapus."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Maaf! Kami tidak dapat menemukan halaman yang Anda cari."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Apa nama paket pemula Anda?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Apa kabar?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Saat Anda ketuk pada tanda centang, Anda akan melihat organisasi mana yang telah memberikan verifikasi."
@@ -12878,7 +13188,7 @@ msgstr "Saat Anda ketuk pada tanda centang, Anda akan melihat organisasi mana ya
msgid "Who can interact with this post?"
msgstr "Siapa yang dapat berinteraksi dengan postingan ini?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Siapa yang dapat membalas"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Siapa yang dapat memverifikasi?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Waduh!"
@@ -12939,7 +13249,7 @@ msgstr "Mengapa paket pemula ini perlu ditinjau?"
msgid "Why should this user be reviewed?"
msgstr "Mengapa pengguna ini perlu ditinjau?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Tulis postingan"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Tulis balasan Anda"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "DID yang dikembalikan dari server salah: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr "Anda sedang siaran langsung"
msgid "You are no longer live"
msgstr "Anda tidak lagi bersiaran langsung"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Anda tidak diizinkan untuk mengunggah video."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Anda dapat melanjutkan percakapan yang sedang berlangsung terlepas dari pengaturan mana yang Anda pilih."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Sekarang Anda dapat masuk dengan kata sandi baru."
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "Anda dapat mengaktifkan kembali akun Anda untuk melanjutkan masuk. Profi
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr "Anda bisa mengubahnya nanti melalui pengaturan."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "Anda tidak memiliki feed yang disimpan."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "Anda harus mengikuti setidaknya tujuh orang sebelum membuat paket pemula
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Anda mungkin ingin memuat ulang aplikasi sekarang."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Anda menanggapi {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Anda akan keluar dari semua akun."
@@ -13390,7 +13710,7 @@ msgstr "Anda sekarang akan menerima notifikasi untuk utas ini"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Anda akan menerima email berisikan \"kode reset\". Masukkan kode tersebut di sini, lalu masukkan kata sandi baru."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Anda telah mencapai bagian akhir feed! Temukan lebih banyak akun lain untuk diikuti."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr "Anda telah mencapai jumlah maksimum permintaan yang diizinkan. Silakan c
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak bita)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak video)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr "Akun Anda telah ditangguhkan"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Usia akun Anda belum cukup lama untuk menggungah video. Silakan coba lagi nanti."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Semua catatan data publik dalam repositori akun Anda dapat diunduh sebagai berkas \"CAR\". Tidak termasuk konten media seperti gambar dan data pribadi yang harus diunduh secara terpisah."
@@ -13519,7 +13847,7 @@ msgstr "Banding Anda telah diajukan. Jika banding Anda berhasil, Anda akan mener
msgid "Your birth date"
msgstr "Tanggal lahir Anda"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Obrolan Anda telah dinonaktifkan"
@@ -13561,7 +13889,7 @@ msgstr "Email Anda"
msgid "Your email appears to be invalid."
msgstr "Email Anda tidak valid."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Email Anda masih belum terverifikasi. Silakan verifikasi email Anda untuk dapat menikmati semua fitur dari Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "Feed mengikuti Anda kosong! Ikuti lebih banyak pengguna untuk melihat ap
msgid "Your full handle will be <0>@{0}0>"
msgstr "Panggilan lengkap Anda akan menjadi <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "Kata yang Anda bisukan"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr "Preferensi bahasa Anda"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Laporan anda akan dikirimkan ke <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "Laporan anda akan dikirimkan ke <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Minat yang anda pilih membantu kami menyajikan konten yang Anda inginkan."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po
index 4efa957a32..b7bf746f22 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minuto} other {# minuti}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# mese} other {# mesi}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr "{0, plural, one {# nuova richiesta di partecipazione} other {# nuove richieste di partecipazione}}"
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, one {# persona ha} other {# persone hanno}} reagito – {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# secondo} other {# secondi}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# elemento non letto} other {# elementi non letti}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr "{0, plural, one {#m} other {#m}}"
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} seguiti"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr "{0} ti sta bloccando"
@@ -264,7 +269,7 @@ msgstr "{0} di 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} ha reagito con {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, una lista di {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Foto profilo di {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "Avatar di {0}"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr "{0}/{1}"
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr "{0}/{1} {2, plural, one {membro} other {membri}}"
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr "{0}/{1} membri"
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr "{count, plural, =0 {Nessuna richiesta di partecipazione} one {# richiesta di partecipazione} other {# richieste di partecipazione}}"
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr "{count, plural, one {# aggiornamento chat} other {# aggiornamenti chat}}"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr "{count, plural, one {# nuova richiesta di partecipazione} other {# nuove richieste di partecipazione}}"
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, one {# richiesta} other {# richieste}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# elemento non letto} other {# elementi non letti}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr "{count, plural, one {Aggiorna la pagina per vederlo.} other {Aggiorna la pagina per vederli tutti.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr "{count, plural, one {Questo post ha # foto.} other {Questo post ha # foto.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr "{count, plural, one {Aggiorna l'app per vederlo.} other {Aggiorna l'app per vederli tutti.}}"
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr "{count, plural, other {#+ richieste di partecipazione}}"
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "{count}+"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "{count}+ richieste"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} ti ha verificato"
msgid "{following} following"
msgstr "{following} seguiti"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "Non è possibile aggiungere {handle}"
@@ -547,7 +599,7 @@ msgstr "Non è possibile aggiungere {handle}"
msgid "{handle} can't be messaged"
msgstr "{handle} non può ricevere messaggi"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "{handle} non può ricevere messaggi"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# ora {minutesString}} other {# ore {minutesString}
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# ora} other {# ore}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "{JOIN_REQUESTS_THRESHOLD}+ nuove richieste di partecipazione"
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "{JOIN_REQUESTS_THRESHOLD}+ nuove richieste di partecipazione"
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,9 +643,9 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, other {Puoi nascondere un massimo di # risposte.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
-msgstr ""
+msgstr "{memberCount}/{memberLimit}"
#: src/features/liveNow/utils.ts:10
msgid "{minutes, plural, one {# minute} other {# minutes}}"
@@ -607,7 +669,7 @@ msgstr "Feed e utenti preferiti di {name} - unisciti!"
msgid "{name}'s starter pack"
msgstr "Starter pack di {name}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# elemento non letto} other {# elementi non letti}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, one {# richiesta} other {# richieste}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "{requestCount}+ richieste"
@@ -795,8 +857,11 @@ msgstr "Si è verificato un errore di rete. Controlla la tua connessione a inter
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Si è verificato un errore di rete. Controlla la tua connessione a internet."
@@ -804,7 +869,7 @@ msgstr "Si è verificato un errore di rete. Controlla la tua connessione a inter
msgid "A new code has been sent"
msgstr "È stato inviato un nuovo codice"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Una nuova forma di verifica"
@@ -827,11 +892,11 @@ msgstr "Uno screenshot di una pagina del profilo con un'icona a forma di campane
msgid "A screenshot of 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 "Uno screenshot mentre si scrive un post con un nuovo pulsante accanto al pulsante \"Post\" che ha testo \"Bozze\", con un effetto fuochi d'artificio color arcobaleno. Di seguito, nell'editor si legge \"Ehi, hai sentito la notizia? Bluesky ha le bozze ora!!!\"."
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
-msgstr ""
+msgstr "Uno dei destinatari selezionati non è seguito dal mittente."
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Comportamento offensivo o discriminatorio"
msgid "Accept"
msgstr "Accetta"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Accetta"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Accetta richiesta"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr "Accetta richiesta di partecipazione"
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Accetta richiesta"
@@ -860,17 +935,26 @@ msgstr "Accetta richiesta"
msgid "Accept this language suggestion"
msgstr "Accetta questa lingua suggerita"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr "Conversazioni accettate"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr "Richiesta di adesione inoltrata: il proprietario del gruppo esaminerà la tua richiesta."
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Accessibilità"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Impostazioni di accessibilità"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Account riattivato"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Gli account con una spunta blu dentellata <0><1/>0> possono verificare l'identità di altri account. I certificatori attendibili sono selezionati da Bluesky."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Attività da altri"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Notifiche attività"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Aggiungi"
@@ -999,8 +1079,8 @@ msgstr "Aggiungi account"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Aggiungi testo alternativo (opzionale)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Aggiungi un altro account"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Aggiungi un altro post"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Aggiungi un altro post al thread"
@@ -1035,7 +1115,7 @@ msgstr "Aggiungi password per app"
msgid "Add App Password"
msgstr "Aggiungi password per app"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "Aggiungi etichetta automazione all'account"
@@ -1043,7 +1123,7 @@ msgstr "Aggiungi etichetta automazione all'account"
msgid "Add emoji reaction"
msgstr "Aggiungi reazione con emoji"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Aggiungi membri della chat di gruppo"
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Aggiungi media al post"
@@ -1062,8 +1142,8 @@ msgstr "Aggiungi media al post"
msgid "Add members"
msgstr "Aggiungi membri"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Aggiungi ulteriori dettagli (facoltativo)"
@@ -1080,8 +1160,8 @@ msgstr "Aggiungi parola silenziata con le impostazioni indicate"
msgid "Add muted words and tags"
msgstr "Aggiungi parole e tag silenziati"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "Aggiunta membri alla lista..."
msgid "Additional details (limit 1000 characters)"
msgstr "Dettagli aggiuntivi (massimo 1000 caratteri)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Ulteriori dettagli (massimo 300 caratteri)"
@@ -1228,12 +1308,12 @@ msgstr "Verifica dell’età inviata con successo"
msgid "Age assurance only takes a few minutes"
msgstr "La verifica dell’età richiede solo pochi minuti"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Tutte"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "Tutti e {0}"
@@ -1278,13 +1358,13 @@ msgstr "Consenti l'accesso ai tuoi messaggi"
msgid "Allow anyone to reply"
msgstr "Permetti a chiunque di rispondere"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "Consenti messaggi diretti da"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr "Consenti inviti a chat di gruppo da"
@@ -1338,12 +1418,12 @@ msgstr "Hai già un account?"
msgid "Already signed in as @{0}"
msgstr "Hai effettuato l'accesso come @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Testo alternativo"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Il testo alternativo descrive le immagini per gli utenti non vedenti ed ipovedenti, fornendo un contesto a tutti."
@@ -1387,7 +1467,7 @@ msgstr "Si è verificato un errore"
msgid "An error occurred"
msgstr "Si è verificato un errore"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Si è verificato un errore durante la compressione del video."
@@ -1432,11 +1512,11 @@ msgstr "Si è verificato un errore nel salvare il codice QR!"
msgid "An error occurred while trying to follow all"
msgstr "Si è verificato un errore nel seguire tutti"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "Si è verificato un errore durante il caricamento del video. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "Si è verificato errore durante il caricamento del video. Verifica la tua connessione a internet e riprova."
@@ -1461,21 +1541,21 @@ msgstr "Un’immagine di diversi post su Bluesky con accanto le icone per ripubb
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Un'illustrazione che mostra che Bluesky seleziona certificatori attendibili e questi a loro volta verificano gli account dei singoli utenti."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "Un link di invito consente ad altri di unirsi a questa chat di gruppo senza essere aggiunti direttamente. Sei tu a decidere chi può utilizzare il link e se è necessaria la tua approvazione. Puoi disattivare il link in qualsiasi momento."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr "Un link di invito consente ad altri di partecipare a questa chat di gruppo senza essere aggiunti direttamente. Sei tu a decidere chi può partecipare alla chat. Puoi disattivare il link in qualsiasi momento."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Un problema non incluso in queste opzioni"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
-msgstr ""
+msgstr "Si è verificato un problema durante la creazione della chat di gruppo, riprova."
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
-msgstr ""
+msgstr "Si è verificato un problema durante l'avvio della chat, riprova."
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
msgid "An issue occurred while trying to open the chat"
@@ -1490,7 +1570,7 @@ msgstr "Si è verificato un problema nell'aprire la chat"
msgid "An issue occurred, please try again."
msgstr "Si è verificato un problema, riprova."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Un'immagine di un iPhone che mostra l'app Bluesky aperta sul profilo di un utente verificato, con un segno di spunta blu accanto al suo nome."
@@ -1539,15 +1619,19 @@ msgstr "Chiunque"
msgid "Anyone can interact"
msgstr "Tutti possono interagire"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr "Chiunque può partecipare"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "Chiunque può partecipare istantaneamente"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
-msgstr "Chiunque può richiedere di partecipare"
+msgstr "Chiunque può chiedere di partecipare"
#: src/screens/Settings/ActivityPrivacySettings.tsx:112
#: src/screens/Settings/ActivityPrivacySettings.tsx:117
@@ -1555,11 +1639,11 @@ msgstr "Chiunque può richiedere di partecipare"
msgid "Anyone who follows me"
msgstr "Chiunque mi segua"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
-msgstr "Chiunque lo abbia non potrà più iscriversi o richiedere l'iscrizione. Puoi sempre crearne uno nuovo."
+msgstr "Chiunque lo abbia non potrà più iscriversi o chiedere di partecipare. Puoi sempre crearne uno nuovo."
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "I nomi delle password per app devono essere lunghi almeno 4 caratteri"
msgid "App passwords"
msgstr "Password per app"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Password per app"
@@ -1618,7 +1702,7 @@ msgstr "Contesta la sospensione della diretta"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Appello inviato"
@@ -1632,14 +1716,14 @@ msgstr "Revisione sospensione"
msgid "Appeal Suspension"
msgstr "Revisione sospensione"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Fai ricorso contro questa decisione"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "Sei davvero sicuro?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Eliminare la password per app \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Eliminare questo messaggio? Il messaggio verrà eliminato per te, ma non per gli altri partecipanti."
@@ -1688,23 +1772,23 @@ msgstr "Eliminare questo starter pack?"
msgid "Are you sure you want to discard your changes?"
msgstr "Annullare le modifiche?"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
-msgstr "Lasciare {groupName}?"
+msgstr "Abbandonare {groupName}?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr "Vuoi abbandonare questa conversazione?"
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Vuoi rimuoverlo dai tuoi feed?"
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Scartare questo post?"
@@ -1752,7 +1836,7 @@ msgstr "Account automatizzato"
msgid "Automation label"
msgstr "Etichetta automazione"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "Etichetta automazione"
@@ -1767,12 +1851,12 @@ msgstr "Riproduci automaticamente video e GIF"
msgid "Available"
msgstr "Disponibile"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Disponibile"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Disponibile"
msgid "Back"
msgstr "Indietro"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Vai ai messaggi"
@@ -1840,12 +1926,12 @@ msgstr "Devi verificare il tuo indirizzo email, prima di poter accettare questa
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Devi verificare il tuo indirizzo email prima di poter ricevere notifiche relative ai post di {name}."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Devi verificare il tuo indirizzo email prima di poter inviare un messaggio a un altro utente."
@@ -1877,7 +1963,7 @@ msgstr "Compleanno"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "Blocca {displayName}"
msgid "Block account"
msgstr "Blocca account"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Bloccare l'account?"
@@ -1912,15 +1998,15 @@ msgstr "Bloccare account?"
msgid "Block accounts"
msgstr "Blocca gli account"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
-msgstr ""
+msgstr "Blocca ed elimina"
#. After-report action for a conversation
#: src/components/dms/AfterReportConversationDialog.tsx:167
msgctxt "button"
msgid "Block and leave"
-msgstr ""
+msgstr "Blocca e abbandona"
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
msgid "Block list"
@@ -1936,9 +2022,9 @@ msgstr "Vuoi bloccare questi account?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Blocca utente"
@@ -1946,17 +2032,17 @@ msgstr "Blocca utente"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Blocca utente"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
-msgstr "Blocca e/o elimina questa conversazione"
+msgstr "Blocca utente e/o elimina questa conversazione"
#: src/components/dms/AfterReportConversationDialog.tsx:217
msgid "Block user and/or leave this conversation"
-msgstr ""
+msgstr "Blocca utente e/o abbandona questa conversazione"
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Bloccato"
@@ -1964,13 +2050,13 @@ msgstr "Bloccato"
msgid "Blocked accounts"
msgstr "Account bloccati"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Account bloccati"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Gli account bloccati non possono rispondere alle tue discussioni, menzionarti o interagire in nessun altro modo con te."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky è meglio con gli amici!"
msgid "Bluesky is more fun with friends"
msgstr "Bluesky è più divertente con gli amici"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Bluesky è più divertente con gli amici! Importa i tuoi contatti per vedere chi è già qui."
@@ -2053,7 +2139,7 @@ msgstr "Bluesky sceglierà un set di account consigliati dal tuo network."
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 "Bluesky non mostrerà il tuo profilo e i tuoi post agli utenti che non hanno effettuato l'accesso. Altre applicazioni potrebbero non rispettare questa istruzione. Questo non rende il tuo account privato."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky verificherà in modo proattivo gli account notevoli e autentici."
@@ -2137,23 +2223,30 @@ msgstr "Attività commerciale"
msgid "Button to go back to the home timeline"
msgstr "Pulsante per tornare alla timeline principale"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Di {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Di <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr "Di <0>{ownerDisplayName}0>"
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr "di <0>@{0}0>"
@@ -2181,7 +2274,7 @@ msgstr "Iscrivendoti accetti i <0>Termini di servizio0>."
msgid "By you"
msgstr "Da te"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Fotocamera"
@@ -2192,8 +2285,8 @@ msgstr "Fotocamera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Fotocamera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Fotocamera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Annulla"
@@ -2248,9 +2341,9 @@ msgstr "Annulla la riattivazione e disconnettiti"
msgid "Cancel search"
msgstr "Annulla la ricerca"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Non puoi interagire con un utente bloccato"
@@ -2264,7 +2357,7 @@ msgstr "Sottotitoli (.vtt)"
msgid "Captions & alt text"
msgstr "Sottotitoli e testo alternativo"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "galleria a scorrimento"
@@ -2297,7 +2390,7 @@ msgstr "Cambia lingua app"
msgid "Change Handle"
msgstr "Modifica il nome utente"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Modifica servizio di moderazione"
@@ -2310,11 +2403,11 @@ msgstr "Cambia password"
msgid "Change password dialog"
msgstr "Finestra di modifica password"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Cambia categoria segnalazione"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Modifica motivo della segnalazione"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Le modifiche allo starter pack fatte dopo la sua creazione non cambieranno la lista. La lista sarà una copia indipendente."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Messaggi"
@@ -2361,6 +2454,13 @@ msgstr "Conversazione eliminata"
msgid "Chat ended"
msgstr "Chat terminata"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr "Link di invito alla chat non più disponibile"
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "Chat bloccata"
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Conversazione silenziata"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
-msgstr ""
+msgstr "Destinatario della chat non seguito dal mittente."
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Richieste"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Richieste di messaggi"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Impostazioni chat"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Impostazioni chat"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Conversazione riattivata"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Messaggi"
@@ -2479,7 +2579,7 @@ msgstr "Seleziona lingue del post"
msgid "Choose this color as your avatar"
msgstr "Scegli questo colore per il tuo avatar"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "Scegli chi e come può partecipare a questa chat di gruppo."
@@ -2533,7 +2633,7 @@ msgstr "Fai clic per informazioni"
msgid "click here"
msgstr "clicca qui"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "Fai clic qui per aggiungere persone a questa chat di gruppo"
@@ -2541,7 +2641,7 @@ msgstr "Fai clic qui per aggiungere persone a questa chat di gruppo"
msgid "Click here to contact our support team"
msgstr "Fai clic qui per contattare il nostro team di supporto"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "Fai clic qui per creare o gestire un link di invito per questa chat di gruppo"
@@ -2558,7 +2658,7 @@ msgstr "Fai clic qui per uscire"
msgid "Click here to resend the email"
msgstr "Fai cli qui per inviare nuovamente l'email"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Fai clic qui per riavviare il processo di verifica."
@@ -2567,11 +2667,11 @@ msgstr "Fai clic qui per riavviare il processo di verifica."
msgid "Click here to update your birthdate"
msgstr "Fai clic qui per aggiornare la tua data di nascita"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Fai clic qui per aggiornare il tuo indirizzo email"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "Fai clic qui per visualizzare il link di invito per questa chat di gruppo"
@@ -2580,7 +2680,7 @@ msgstr "Fai clic qui per visualizzare il link di invito per questa chat di grupp
msgid "Click to open tag menu for {0}"
msgstr "Fai clic per aprire il menu dei tag di {0}"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Clicca per riprovare l'invio"
@@ -2594,28 +2694,30 @@ msgstr "Clicca per riprovare l'invio"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Clicca per riprovare l'invio"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Chiudi la finestra attiva"
msgid "Close alert"
msgstr "Chiudi l'avviso"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr "Chiudi banner"
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Chiudi menu a scomparsa inferiore"
@@ -2657,8 +2763,9 @@ msgstr "Chiudi menu a scomparsa inferiore"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Chiudi la finestra di dialogo"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Chiudi l'immagine"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Chiudi visualizzatore immagini"
@@ -2683,6 +2790,14 @@ msgstr "Chiudi visualizzatore immagini"
msgid "Close menu"
msgstr "Chiudi menu"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr "Chiudi il banner delle richieste in arrivo"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Chiudi la finestra"
@@ -2695,7 +2810,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:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Annulla la creazione del post ed elimina la bozza"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Fumetti"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Linee guida della community"
@@ -2740,12 +2855,12 @@ msgstr "Completa la challenge"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Scrivi un nuovo post"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Scrivi post fino a {0, plural, other {# caratteri}}"
@@ -2753,11 +2868,11 @@ msgstr "Scrivi post fino a {0, plural, other {# caratteri}}"
msgid "Compose reply"
msgstr "Scrivi la risposta"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "Compressione GIF in corso..."
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Compressione del video..."
@@ -2780,7 +2895,7 @@ msgstr "Configurato nelle <0>impostazioni di moderazione0>."
msgid "Confirm"
msgstr "Conferma"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Contenuti e media"
msgid "Content and media"
msgstr "Contenuti e media"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Contenuti e media"
@@ -2889,7 +3004,7 @@ msgstr "Sfondo del menu contestuale, clicca per chiudere il menu."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Continua thread"
msgid "Continue thread..."
msgstr "Continua thread..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Continua al nome del gruppo"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Vai al passaggio successivo"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Conversazione"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Conversazione eliminata"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversazione eliminata"
@@ -2939,13 +3054,20 @@ msgstr "Conversazione eliminata"
#: src/components/dms/AfterReportConversationDialog.tsx:179
msgctxt "toast"
msgid "Conversation left"
-msgstr ""
+msgstr "Conversazione abbandonata"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr "Conversazione non trovata."
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Versione della build copiata negli appunti"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Copia DID"
msgid "Copy host"
msgstr "Copia host"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Copia link al profilo"
msgid "Copy link to starter pack"
msgstr "Copia link allo starter pack"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Copia testo del messaggio"
@@ -3052,7 +3175,7 @@ msgstr "Copia valore del record TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Politica sul diritto d'autore"
@@ -3065,7 +3188,7 @@ msgstr "Impossibile connettersi al feed personalizzato"
msgid "Could not connect to feed service"
msgstr "Impossibile connettersi al servizio feed"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr "Impossibile recuperare il post"
@@ -3085,15 +3208,19 @@ msgid "Could not follow all matches. {0}"
msgstr "Impossibile seguire tutte le corrispondenze. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
-msgstr "Errore nell'abbandonare la conversazione"
+msgstr "Impossibile abbandonare la chat"
#: src/screens/Profile/ProfileFeed/index.tsx:73
msgid "Could not load feed"
msgstr "Non è stato possibile caricare il feed"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr "Impossibile caricare l'invito"
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Codice nazione"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Crea"
@@ -3159,7 +3286,7 @@ msgstr "Crea un codice QR per uno starter pack"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Crea uno starter pack"
@@ -3174,13 +3301,14 @@ msgstr "Crea uno starter pack per me"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Crea un account"
msgid "Create an account without using this starter pack"
msgstr "Crea un account senza usare questo starter pack"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "In alternativa crea un avatar"
@@ -3206,7 +3334,7 @@ msgstr "In alternativa crea un avatar"
msgid "Create another"
msgstr "Creane un altro"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Crea chat di gruppo"
@@ -3228,19 +3356,20 @@ msgstr "Crea lista da starter pack"
msgid "Create moderation list"
msgstr "Crea lista di moderazione"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Crea un nuovo account"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr "Crea o modifica un link di invito per questa chat di gruppo"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Crea un report per {0}"
@@ -3256,8 +3385,8 @@ msgstr "Crea lista di utenti"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Creato {0}"
@@ -3341,7 +3470,7 @@ msgstr "Predefinito"
msgid "Default icons"
msgstr "Icone predefinite"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Elimina il record della dichiarazione della chat"
msgid "Delete contacts"
msgstr "Elimina contatti"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Elimina conversazione"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Elimina per me"
@@ -3399,11 +3528,11 @@ msgstr "Elimina per me"
msgid "Delete list"
msgstr "Elimina lista"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Elimina messaggio"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Elimina messaggio per me"
@@ -3413,7 +3542,7 @@ msgstr "Elimina il mio account"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Elimina il post"
@@ -3434,12 +3563,12 @@ msgstr "Eliminare questa lista?"
msgid "Delete this post?"
msgstr "Eliminare questo post?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Eliminato"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Account eliminato"
@@ -3507,13 +3636,13 @@ msgstr "Dialog: configura chi può interagire con questo post"
msgid "Dim"
msgstr "Soffuso"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Disabilita"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Disabilita 2FA"
@@ -3521,7 +3650,7 @@ msgstr "Disabilita 2FA"
msgid "Disable captions"
msgstr "Disabilita sottotitoli"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Disabilita 2FA via email"
@@ -3534,8 +3663,8 @@ msgstr "Disattiva 2FA via email"
msgid "Disable haptic feedback"
msgstr "Disattiva il feedback tattile"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr "Disabilita link"
@@ -3547,7 +3676,7 @@ msgstr "Disabilita le citazioni di questo post"
msgid "Disable replies entirely"
msgstr "Disabilita tutte le risposte"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "Disabilitare questo link di invito?"
@@ -3560,9 +3689,9 @@ msgstr "Disabilitato"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Scarta"
msgid "Discard changes?"
msgstr "Scartare le modifiche?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Scartare la bozza?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Scartare il post?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Disconnetti Germ DM"
@@ -3613,11 +3742,11 @@ msgstr "Scopri nuovi feed"
msgid "Dismiss"
msgstr "Ignora"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Chiudi banner"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Ignora errore"
@@ -3673,7 +3802,7 @@ msgstr "Non include nudità."
msgid "Domain verified!"
msgstr "Dominio verificato!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Non hai un codice o ne hai bisogno di uno nuovo? <0>Fai clic qui.0>"
@@ -3681,7 +3810,7 @@ msgstr "Non hai un codice o ne hai bisogno di uno nuovo? <0>Fai clic qui.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Non vedere un codice? <0>Fai clic qui per inviarlo di nuovo.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Non trovi l'email? <0>Fai clic qui per inviarla di nuovo.0>"
@@ -3700,16 +3829,19 @@ msgstr "Non preoccuparti! Tutti i messaggi e le impostazioni esistenti sono stat
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Fatto"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Tocca due volte o tieni premuto il messaggio per aggiungere una reazione"
@@ -3741,15 +3873,6 @@ msgstr "Tocca due volte per mettere mi piace"
msgid "Download Bluesky"
msgstr "Scarica Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Scarica il file CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Scarica il file CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Scarica dati delle chat"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Scarica dati delle chat"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Scarica immagine"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr "Scarica dati del profilo"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr "Scarica dati del profilo"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Diffusione di dati personali"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "es. Utenti che rispondono ripetutamente con annunci."
msgid "Eating disorders"
msgstr "Disturbi alimentari"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Modifica"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Modifica avatar"
@@ -3847,14 +3978,14 @@ msgstr "Modifica avatar"
msgid "Edit Feeds"
msgstr "Modifica i feed"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Modifica nome del gruppo"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Modifica immagine"
@@ -3868,7 +3999,16 @@ msgstr "Modifica impostazioni di interazione"
msgid "Edit interests"
msgstr "Modifica interessi"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr "Modifica link di invito"
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr "Modifica link di invito"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "Modifica impostazioni link"
@@ -3886,20 +4026,15 @@ msgstr "Modifica stato in diretta"
msgid "Edit moderation list"
msgstr "Modifica lista di moderazione"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Modifica i miei feed"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "Modifica nome"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Modifica notifiche da {0}"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Modifica utenti"
@@ -3925,7 +4060,7 @@ msgstr "Modifica profilo"
msgid "Edit starter pack"
msgstr "Modifica starter pack"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "Modifica il nome di questa chat di gruppo"
@@ -3937,7 +4072,7 @@ msgstr "Modifica lista di utenti"
msgid "Edit who can reply"
msgstr "Modifica chi può rispondere"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Modifica il tuo starter pack"
@@ -3971,7 +4106,7 @@ msgstr "Indirizzo email"
msgid "Email Resent"
msgstr "Email inviata nuovamente"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "Email inviata!"
@@ -4006,8 +4141,8 @@ msgstr "Incorpora questo post nel tuo sito web. Copia il seguente ritaglio e inc
msgid "Embedded video player"
msgstr "Lettore video incorporato"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Abilita"
@@ -4025,7 +4160,7 @@ msgstr "Attiva il contenuto per adulti"
msgid "Enable captions"
msgstr "Abilita sottotitoli"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Abilita 2FA via email"
@@ -4038,13 +4173,12 @@ msgstr "Abilita i media esterni"
msgid "Enable media players for"
msgstr "Attiva i lettori multimediali per"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Abilita le notifiche per un account visitandone il profilo e premendo l'<0>icona a forma di campanella0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Abilita notifiche push"
@@ -4091,8 +4225,8 @@ msgstr "Inserisci una password"
msgid "Enter a word or tag"
msgstr "Inserisci una parola o tag"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Inserisci codice"
@@ -4143,7 +4277,7 @@ msgstr "Passa a schermo intero"
msgid "Entertainment"
msgstr "Intrattenimento"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Errore"
@@ -4185,23 +4319,23 @@ msgstr "Tutti possono rispondere"
msgid "Everybody can reply to this post."
msgstr "Tutti possono rispondere a questo post."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Tutti"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Tutti"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Tutti"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Tutto il resto"
@@ -4217,8 +4351,8 @@ msgstr "Esclude gli utenti che segui"
msgid "Exit fullscreen"
msgstr "Esci da schermo intero"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Espandi il testo alternativo"
@@ -4226,7 +4360,7 @@ msgstr "Espandi il testo alternativo"
msgid "Expand list of users"
msgstr "Espandi la lista di utenti"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Espandi o comprimi il post a cui stai rispondendo"
@@ -4238,7 +4372,7 @@ msgstr "Espandi testo del post"
msgid "Expands or collapses post text"
msgstr "Espande o comprime il testo del post"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "L'URI dovrebbe risolvere in un record"
@@ -4277,9 +4411,9 @@ msgstr "Media espliciti o potenzialmente inquietanti."
msgid "Explicit sexual images."
msgstr "Immagini sessuali esplicite."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Esplora"
@@ -4289,11 +4423,8 @@ msgstr "Esplora"
msgid "Explore the app"
msgstr "Esplora l'app"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr "Esporta dati chat"
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "Esporta i miei dati della chat"
@@ -4322,7 +4453,7 @@ msgstr "Media esterni"
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 "I media esterni potrebbero consentire ai siti web di raccogliere informazioni su di te e sul tuo dispositivo. Nessuna informazione viene inviata o richiesta finché non si preme il pulsante \"Riproduci\"."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Preferenze media esterni"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Impossibile accettare la richiesta"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr "Impossibile accettare la richiesta di partecipazione"
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Non è stato possibile aggiungere la reazione"
@@ -4354,7 +4489,7 @@ msgstr "Non è stato possibile aggiungere allo starter pack"
msgid "Failed to change handle. Please try again."
msgstr "Non è stato possibile cambiare il nome utente. Riprovare."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "Impossibile copiare il link"
@@ -4367,7 +4502,7 @@ msgstr "Errore durante la creazione della password per app. Riprovare."
msgid "Failed to create conversation"
msgstr "Impossibile creare la conversazione"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "Impossibile creare il link di invito"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Impossibile eliminare la conversazione"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Errore nell'eliminazione del messaggio"
@@ -4394,24 +4529,24 @@ msgstr "Non è stato possibile eliminare il post, riprovare"
msgid "Failed to delete starter pack"
msgstr "Impossibile eliminare lo starter pack"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "Impossibile disattivare il link di invito"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Impossibile disconnettere Germ DM. Errore: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "Modifica del nome della chat di gruppo non riuscita"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "Impossibile modificare il link di invito"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "Impossibile abilitare il link di invito"
@@ -4427,19 +4562,27 @@ msgstr "Non è stato possibile seguire tutti i tuoi amici, riprova"
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "Impossibile nascondere il suggerimento, controlla la tua connessione a internet"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr "Impossibile ignorare la richiesta di partecipazione"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr "Impossibile partecipare alla chat di gruppo. Riprova."
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "Impossibile avviare l'app per gli SMS"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
-msgstr "Impossibile lasciare la chat di gruppo"
+msgstr "Impossibile abbandonare la chat di gruppo"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Impossibile caricare le conversazioni"
@@ -4456,17 +4599,8 @@ msgstr "Impossibile caricare i feed"
msgid "Failed to load feeds preferences"
msgstr "Impossibile caricare preferenze feed"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Non è stato possibile caricare le impostazioni delle notifiche."
@@ -4493,16 +4627,15 @@ msgstr "Impossibile caricare feed consigliati"
msgid "Failed to load suggested follows"
msgstr "Impossibile caricare follow consigliati"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "Impossibile bloccare la chat di gruppo"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Impossibile segnare le richieste come lette"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "Impossibile silenziare la chat di gruppo"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Errore nel fissare il post"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Impossibile riconnettere Germ DM. Errore: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Impossibile rimuovere i dati. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Non è stato possibile rimuovere la reazione"
@@ -4542,15 +4675,19 @@ msgstr "Impossibile rimuovere il membro dalla chat di gruppo"
msgid "Failed to remove verification"
msgstr "Non è stato possibile rimuovere la verifica"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr "Impossibile annullare la richiesta. Riprova."
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr "Impossibile determinare la posizione. Riprova."
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Impossibile salvare la bozza"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "Impossibile salvare l'immagine"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Non è stato possibile salvare i tuoi interessi."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Non è stato possibile inviare l'email. Riprova."
@@ -4580,7 +4717,7 @@ msgstr "Impossibile inviare il report"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Errore nell'invio dell'appello, riprovare."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Impossibile abilitare silenziamento thread, riprovare"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr "Impossibile sbloccare la chat di gruppo"
@@ -4597,12 +4734,12 @@ msgstr "Impossibile sbloccare la chat di gruppo"
msgid "Failed to unpin list"
msgstr "Impossibile rimuovere la lista dai fissati"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Non è stato possibile aggiornare le impostazioni della 2FA via email"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Non è stato possibile aggiornare l'email. Riprova."
@@ -4614,7 +4751,7 @@ msgstr "Impossibile aggiornare i feed"
msgid "Failed to update notification declaration"
msgstr "Impossibile aggiornare la dichiarazione delle notifiche"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Errore nell'aggiornamento delle impostazioni"
@@ -4641,7 +4778,7 @@ msgstr "Account falso o bot"
msgid "False information about elections"
msgstr "False informazioni sulle elezioni"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Feed"
@@ -4649,7 +4786,7 @@ msgstr "Feed"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Feed creato da {0}"
@@ -4662,7 +4799,7 @@ msgstr "Autore del feed"
msgid "Feed identifier"
msgstr "Identificativo del feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Menu del feed"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Feedback inviato"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Feed"
@@ -4739,7 +4876,7 @@ msgstr "Filtra la ricerca per lingua (attualmente: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Filtra chi può scegliere di ricevere notifiche per le tue attività"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Filtra da chi ricevi le notifiche"
@@ -4747,11 +4884,11 @@ msgstr "Filtra da chi ricevi le notifiche"
msgid "Finalizing"
msgstr "Finalizzando"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Era ora!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Finanza"
msgid "Find accounts to follow"
msgstr "Scopri account da seguire"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Trova contatti"
@@ -4799,7 +4936,7 @@ msgstr "Trova persone da seguire"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Cerca post, utenti, e feed su Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Trova i tuoi amici"
@@ -4944,8 +5081,12 @@ msgstr "Seguito da <0>{0}0> e <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Seguito da <0>{0}0>, <1>{1}1>, e {2, plural, one {# altro} other {# altri}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr "Chi segue può partecipare"
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Follower di @{0} che conosci"
@@ -4995,19 +5136,16 @@ msgstr "Stai seguendo {handle}"
msgid "Following feed preferences"
msgstr "Preferenze del feed Seguiti"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Preferenze del feed Seguiti"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Ti segue"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Ti segue"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Carattere"
@@ -5069,7 +5207,7 @@ msgstr "Password dimenticata?"
msgid "Free your feed"
msgstr "Libera il tuo feed"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "Da"
@@ -5086,35 +5224,35 @@ msgstr "Da <0/>"
msgid "Generate a starter pack"
msgstr "Genera uno starter pack"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Genera link di invito"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Genera nuovo link di invito"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Genera nuovo link"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germ DM disconnesso"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Collegamento a Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germ DM riconnesso"
@@ -5122,46 +5260,50 @@ msgstr "Germ DM riconnesso"
msgid "Get help"
msgstr "Ottieni aiuto"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr "Ricevi notifiche per le iscrizioni agli starter pack, per le verifiche e per altre attività."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Ricevi notifiche quando le persone ti seguono."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Ricevi notifiche quando le persone mettono mi piace ai post che hai ripostato."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Ricevi notifiche quando le persone mettono mi piace ai tuoi post."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr "Ricevi notifiche quando le persone mettono mi piace ai tuoi post."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Ricevi notifiche quando le persone ti menzionano."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Ricevi notifiche quando le persone citano i tuoi post."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Ricevi notifiche quando le persone rispondono ai tuoi post."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Ricevi notifiche quando le persone ripostano i post che hai ripostato."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Ricevi notifiche quando le persone ripostano i tuoi post."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr "Ricevi notifiche quando le persone ripostano i tuoi repost."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr "Ricevi notifiche quando ci sono attività relative ai post a cui sei iscritto."
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Ricevi notifiche di nuovi post"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Ricevi notifiche dei post e delle risposte dagli account che scegli."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Ricevi notifiche di nuovi post di {name}"
@@ -5174,27 +5316,27 @@ msgstr "Ricevi notifiche sull'attività di questo account"
msgid "Get notified when {name} posts"
msgstr "Ricevi notifiche dei post di {name}"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Ricevi notifiche quando qualcuno pubblica un post"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Per cominciare"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIF caricata"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Dai un volto al tuo profilo"
@@ -5213,20 +5355,21 @@ msgstr "Glorificazione della violenza"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Torna indietro"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Torna indietro"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Torna al passaggio precedente"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Vai alla home"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Vai alla home"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Vai alla home"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Vai alle impostazioni dell'account"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Vai alla conversazione con {0}"
@@ -5299,12 +5440,12 @@ msgstr "Prosegui"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Vai al profilo"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "Vai alla chat di gruppo chiamata \"{chatName}\""
@@ -5320,8 +5461,8 @@ msgstr "Vai al profilo dell'utente"
msgid "Going live is currently disabled for your account"
msgstr "La diretta è attualmente disabilitata per il tuo account"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Capito"
@@ -5340,59 +5481,75 @@ msgstr "Contenuti violenti espliciti"
msgid "Grooming or predatory behavior"
msgstr "Adescamento o comportamento predatorio"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr "Chat di gruppo"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "Finestra di dialogo link di invito alla chat di gruppo"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "Chat di gruppo bloccata"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "Chat di gruppo silenziata"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr "Nome chat di gruppo aggiornato"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "Impostazioni chat di gruppo"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "Chat di gruppo sbloccata"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "Chat di gruppo riattivata"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr "Le chat di gruppo non sono ancora disponibili"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr "Le chat di gruppo sono ora disponibili"
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr "Le chat di gruppo possono avere un massimo di {0, plural, other {# persone}}."
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "Il gruppo è bloccato"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Nome del gruppo"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Hacking o attacchi di sistema"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Nome utente troppo lungo. Provarne uno più breve."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "In corso"
@@ -5446,7 +5603,7 @@ msgstr "Attività nocive o a rischio elevato"
msgid "Harming or endangering minors"
msgstr "Danni o pericoli per i minori"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Hashtag"
@@ -5458,8 +5615,8 @@ msgstr "Hashtag {tag}"
msgid "Hate speech"
msgstr "Incitamento all'odio"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Hai un codice? <0>Fai clic qui.0>"
@@ -5483,7 +5640,7 @@ msgstr "Conservato da Bluesky per 7 giorni per prevenire abusi, poi eliminato"
msgid "Help"
msgstr "Aiuto"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Aiuta le persone a sapere che tu non sei un bot caricando una immagine o creando un avatar."
@@ -5652,18 +5809,18 @@ msgstr "Stiamo riscontrando problemi a caricare questi dati. Vedi sotto per magg
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Non siamo riusciti a caricare il servizio di moderazione."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Un po' di pazienza: stiamo gradualmente dando accesso al video e tu sei ancora in coda. Ricontrolla presto!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Con calma! Questa funzione non è ancora disponibile. Riprova più tardi."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Home"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Se il testo alternativo è lungo, attiva l'opzione Espandi testo alternativo"
@@ -5757,7 +5914,7 @@ msgstr "Se elimini questa lista, non potrai recuperarla."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Se hai un tuo dominio, puoi usarlo come nome utente. Questo consente di auto-verificare la tua identità. <0>Ulteriori informazioni.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "<0>Fai clic qui0> per aggiornare la tua email."
@@ -5765,7 +5922,7 @@ msgstr "<0>Fai clic qui0> per aggiornare la tua email."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Se rimuovi questo post, non potrai recuperarlo."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Se aggiorni il tuo indirizzo email, la 2FA via email verrà disabilitata."
@@ -5773,7 +5930,6 @@ msgstr "Se aggiorni il tuo indirizzo email, la 2FA via email verrà disabilitata
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Se vuoi modificare la password, ti invieremo un codice per verificare che questo è il tuo account."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Per limitare chi può ricevere notifiche sull'attività del tuo account vai in <0>Impostazioni → Privacy e sicurezza0>."
@@ -5786,23 +5942,33 @@ msgstr "Se sei uno sviluppatore, puoi utilizzare il tuo server."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr "Ignora"
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr "Ignora richiesta di partecipazione"
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Immagine"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "Immagine {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Immagine {0} di {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "Immagine {0} di {imageCount}"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Cache delle immagini svuotata, liberati {0}"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "Galleria immagini, {0} immagini"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "Immagine nascosta a causa delle impostazioni di moderazione."
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "Immagine non disponibile."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Opzioni immagine"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Impersonificazione"
msgid "Import contacts"
msgstr "Importa contatti"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Importa contatti"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Importa contatti per trovare i tuoi amici"
@@ -5881,40 +6047,40 @@ msgstr "Importati il {0}"
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 "Abbiamo bisogno di conoscere la tua data di nascita per fornirti un'esperienza adeguata alla tua età. Questa operazione va fatta una volta sola e i tuoi dati rimarranno privati."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "Nell'app"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Notifiche nell'app"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "Nell'app, Tutti"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr "Nell'app, tutti"
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "Nell'app, Persone che segui"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr "Nell'app, persone che segui"
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "Nell'app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr "Nell'app, push"
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "Nell'app, Push, Tutti"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr "Nell'app, push, tutti"
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "Nell'app, Push, Persone che segui"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr "Nell'app, push, persone che segui"
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "Posta in arrivo vuota"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Nessuna richiesta!"
@@ -5963,6 +6129,10 @@ msgstr "Presentazione dei post salvati, noti anche come segnalibri"
msgid "Invalid 2FA confirmation code."
msgstr "Codice di conferma 2FA non valido."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr "Codice chat di gruppo non valido."
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Nome utente non valido. Provarne un altro."
@@ -5977,10 +6147,14 @@ msgstr "Impostazioni di interazione non valide."
msgid "Invalid phone number"
msgstr "Numero di telefono non valido"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Oggetto segnalazione non valido"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr "Richiesta di annullamento non valida."
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Codice di verifica non valido"
@@ -6010,12 +6184,12 @@ msgstr "Invita amici"
msgid "Invite friends <0/>"
msgstr "Invita amici <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Link di invito"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "Link di invito creato"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "Link di invito disabilitato"
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Sei solo tu al momento! Aggiungi altre persone al tuo starter pack cercandole qui in alto."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID processo: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID processo: {0}"
msgid "Jobs"
msgstr "Opportunità di lavoro"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr "Partecipa"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Opportunità di lavoro"
msgid "Join Bluesky"
msgstr "Entra in Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr "Partecipa alla chat di gruppo"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr "Richiesta di partecipazione annullata."
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Partecipa alla conversazione"
msgid "Journalism"
msgstr "Giornalismo"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Continua a modificare"
@@ -6143,7 +6331,7 @@ msgstr "Etichette sul tuo account"
msgid "Labels on your content"
msgstr "Etichette sul tuo contenuto"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Impostazione delle lingue"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Recenti"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Ulteriori informazioni su questo avviso"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Scopri di più sulla verifica su Bluesky"
@@ -6239,7 +6427,7 @@ msgstr "Scopri di più sulla verifica su Bluesky"
msgid "Learn more about what is public on Bluesky."
msgstr "Scopri cosa è pubblico su Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Ulteriori informazioni sul tuo collegamento a Germ DM"
@@ -6252,8 +6440,8 @@ msgstr "Scopri di più nelle <0>impostazioni dell'account0>."
msgid "Learn more."
msgstr "Saperne di più."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Abbandona"
@@ -6276,7 +6464,7 @@ msgstr "Abbandona la chat"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Abbandona conversazione"
@@ -6284,15 +6472,15 @@ msgstr "Abbandona conversazione"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Abbandona conversazione"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
-msgstr "Lascia chat di gruppo"
+msgstr "Abbandona chat di gruppo"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
-msgstr "Lascia questa chat di gruppo"
+msgstr "Abbandona questa chat di gruppo"
#: src/components/dialogs/LinkWarning.tsx:83
#: src/components/dialogs/LinkWarning.tsx:91
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Chiaro"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Mi piace ({0, plural, one {# mi piace} other {# mi piace}})"
@@ -6346,11 +6534,7 @@ msgstr "Metti mi piace a 10 post"
msgid "Like 10 posts to train the Discover feed"
msgstr "Metti mi piace a 10 post per allenare il feed Discover"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Notifiche dei mi piace"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Metti mi piace a questo feed"
@@ -6358,8 +6542,8 @@ msgstr "Metti mi piace a questo feed"
msgid "Like this labeler"
msgstr "Mi piace"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Piace a"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Piace a {0, plural, one {# utente} other {# utenti}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Piace a {likeCount, plural, one {# utente} other {# utenti}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Mi piace"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Mi piace dei tuoi repost"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Notifiche dei mi piace dei tuoi repost"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Mi piace in questo post"
@@ -6409,11 +6589,11 @@ msgstr "Mi piace in questo post"
msgid "Linear"
msgstr "Classico"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "Link copiato negli appunti"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Lista"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Lista riattivata"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Liste"
@@ -6545,7 +6725,7 @@ msgstr "Evento in diretta non nascosto"
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."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "La funzionalità In diretta è in beta"
@@ -6595,27 +6775,27 @@ msgstr "Caricamento impostazioni di interazione del post..."
msgid "Loading..."
msgstr "Caricamento..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "Blocca"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "Blocca chat di gruppo"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "Bloccare la chat di gruppo?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "Blocca questa chat di gruppo"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "Bloccato"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Log"
@@ -6662,7 +6842,7 @@ msgstr "Sembra che ti manchi un feed di chi segui. <0>Clicca qui per aggiungere
msgid "Love GIFs"
msgstr "GIF d’amore"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Modifica le impostazioni dell'email del tuo account"
@@ -6687,9 +6867,8 @@ msgstr "Gestisci impostazioni di verifica"
msgid "Manage your muted words and tags"
msgstr "Gestisci parole e tag silenziati"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Segna tutto come letto"
@@ -6698,13 +6877,12 @@ msgstr "Segna tutto come letto"
msgid "Mark as read"
msgstr "Segna come letto"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Segnato tutto come letto"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Forse più tardi"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Contenuti che potrebbero disturbare o risultare inappropriati per alcuni tipi di pubblico."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Membri"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "I membri possono ancora leggere la cronologia della chat ma non possono inviare nuovi messaggi."
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Notifiche delle menzioni"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "utenti menzionati"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Menzioni"
@@ -6775,22 +6949,22 @@ msgstr "Messaggio {0}"
msgid "Message {displayName}"
msgstr "Invia messaggio a {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Messaggio eliminato"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Messaggio eliminato"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Impossibile inviare il messaggio."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Messaggio da @{0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Il messaggio è troppo lungo"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "Il messaggio è troppo lungo ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Opzioni messaggio"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Messaggi"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr "I messaggi di questa persona sono nascosti mentre ti sta bloccando."
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr "I messaggi di questa persona sono nascosti mentre la stai bloccando."
@@ -6838,10 +7012,6 @@ msgstr "Mezzanotte"
msgid "Minor harassment or bullying"
msgstr "Molestie sui minori o bullismo"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Notifiche varie"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Ingannevole"
@@ -6850,7 +7020,7 @@ msgstr "Ingannevole"
msgid "Missing media"
msgstr "File multimediale mancante"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderazione"
@@ -6894,7 +7064,7 @@ msgstr "Lista di moderazione aggiornata"
msgid "Moderation lists"
msgstr "Liste di moderazione"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Liste di moderazione"
@@ -6903,7 +7073,7 @@ msgstr "Liste di moderazione"
msgid "moderation settings"
msgstr "impostazioni di moderazione"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Stato di moderazione"
@@ -6949,7 +7119,7 @@ msgstr "Film"
msgid "Music"
msgstr "Musica"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Silenzia"
@@ -6994,7 +7164,7 @@ msgstr "Silenzia lista"
msgid "Mute these accounts?"
msgstr "Silenziare questi account?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "Silenzia questa chat di gruppo"
@@ -7032,7 +7202,7 @@ msgstr "Silenzia questa discussione"
msgid "Mute words & tags"
msgstr "Silenzia parole e tag"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "Silenziato"
@@ -7040,7 +7210,7 @@ msgstr "Silenziato"
msgid "Muted accounts"
msgstr "Account silenziati"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Account silenziati"
@@ -7108,8 +7278,8 @@ msgstr "Vai alla schermata successiva"
msgid "Navigates to your profile"
msgstr "Vai al tuo profilo"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Vuoi segnalare una violazione del diritto d'autore, una richiesta legale o un problema di conformità alle normative?"
@@ -7136,34 +7306,34 @@ msgstr "{postsCount, plural, one {Nuovo} other {Nuovi}} post di {firstAuthorLink
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{postsCount, plural, one {Nuovo} other {Nuovi}} post di {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Nuova chat"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "Nuova chat con {0}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "Nuova chat con {0} e {1}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "Nuova chat con {0}, {1} e {memberCount, plural, one {{memberCount} altro} other {{memberCount} altri}}."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Nuovo indirizzo email"
@@ -7174,29 +7344,25 @@ msgstr "Nuovo indirizzo email"
msgid "New Feature"
msgstr "Nuova funzionalità"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Notifiche di nuovi follower"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Nuovi follower"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "Nuova chat di gruppo"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "Nuova chat di gruppo"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "Nuova chat di gruppo con:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Nuovo post"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Nuovo post"
@@ -7262,8 +7428,8 @@ msgstr "Notizie"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "Nessuna GIF trovata con \"{query}\"."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "Nessuna GIF da mostrare in questo momento. Riprova tra un istante."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Nessuna immagine"
@@ -7362,7 +7528,7 @@ msgstr "Non segui più {0}"
msgid "No media yet"
msgstr "Ancora nessun media"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Ancora nessun messaggio"
@@ -7378,12 +7544,12 @@ msgstr "Nessun nome"
msgid "No notifications yet!"
msgstr "Ancora nessuna notifica!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Nessuno"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Nessuno"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Nessun risultato"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Nessun risultato"
@@ -7509,10 +7675,6 @@ msgstr "Immagini intime non consensuali"
msgid "Non-sexual Nudity"
msgstr "Nudità non sessuale"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Nessuno"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "Non disponibile su questa piattaforma."
msgid "Not followed by anyone you’re following"
msgstr "Non seguito da nessuno che segui"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Non trovato"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Non sei pronto a pubblicare? Conserva le tue idee migliori nelle Bozze fino al momento giusto."
@@ -7548,44 +7710,31 @@ msgstr "Nota: questo post è visibile solo agli utenti che hanno effettuato l'ac
msgid "Nothing saved yet"
msgstr "Non è stato ancora salvato nulla"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Impostazioni notifiche"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Suoni di notifica"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Notifiche"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Notifiche per tutto il resto, ad esempio quando qualcuno si iscrive usando uno dei tuoi starter pack."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "adesso"
@@ -7601,7 +7750,7 @@ msgstr "Il numero dovrebbe essere un numero di cellulare"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Disattivato"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "su<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Reimposta account"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
-msgstr ""
+msgstr "Uno dei destinatari selezionati non consente le chat di gruppo."
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Uno dei destinatari selezionati ti ha bloccato e non puoi inviargli messaggi."
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr "Uno o più dei file selezionati è troppo grande. La dimensione massima è di {VIDEO_MAX_SIZE_MB} MB."
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Uno o più post sono troppo lunghi per essere salvati come bozza. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Il numero massimo di caratteri è #.} other {Il numero massimo di caratteri è #.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "In uno o più video manca il testo alternativo."
@@ -7685,6 +7835,26 @@ msgstr "In uno o più video manca il testo alternativo."
msgid "Only {0} can reply."
msgstr "Solo gli {0} possono rispondere."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr "Solo {0} {2, plural, one {immagine è stata aggiunta} other {immagini sono state aggiunte}} su {1}; il limite è {MAX_GALLERY_IMAGES}"
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr "Solo gli amministratori possono accettare le richieste di partecipazione."
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr "Solo gli amministratori possono ignorare le richieste di partecipazione."
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr "Solo i follower possono partecipare a questa chat di gruppo."
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Solo i follower che seguo"
msgid "Only image files are supported"
msgstr "Sono supportati solo i file immagine"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr "Solo le persone che seguono {0} possono partecipare."
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr "Solo le persone seguite dal proprietario della chat possono partecipare"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Solo i file WebVTT (.vtt) sono supportati"
@@ -7712,7 +7892,7 @@ msgstr "Ops, c'è stato qualche problema!"
msgid "Oops!"
msgstr "Ops!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Apri il creatore di avatar"
@@ -7720,12 +7900,17 @@ msgstr "Apri il creatore di avatar"
msgid "Open camera"
msgstr "Apri fotocamera"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr "Apri chat"
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "Apri le opzioni dei membri della chat per {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Apri opzioni conversazione"
@@ -7739,16 +7924,16 @@ msgstr "Apri il menu a scomparsa"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Apri il selettore emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Apri schermata informazioni del feed"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Apri il menu delle opzioni del feed"
@@ -7760,13 +7945,17 @@ msgstr "Apri elenco completo di emoji"
msgid "Open Germ DM"
msgstr "Apri Germ DM"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr "Apri chat di gruppo"
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "Apri impostazioni chat di gruppo"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Apri link verso {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Apri pack"
msgid "Open post options menu"
msgstr "Apri il menu delle opzioni del post"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Apri profilo"
@@ -7817,6 +8006,10 @@ msgstr "Apri la pagina della cronologia"
msgid "Open system log"
msgstr "Apri il registro di sistema"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr "Apri questa chat di gruppo"
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Apre dettagli aggiuntivi per una debug entry"
msgid "Opens alt text dialog"
msgstr "Apre la finestra di dialogo del testo alternativo"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Apre la fotocamera sul dispositivo"
@@ -7858,22 +8051,24 @@ msgstr "Apre il compositore"
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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr "Apre la galleria del dispositivo per selezionare fino a {MAX_GALLERY_IMAGES, plural, other {# immagini}} o un singolo video o una GIF."
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Apre il procedimento per creare un nuovo account Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Apre la procedura per accedere al tuo account esistente di Bluesky"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Apre l'immagine completa"
@@ -7890,7 +8085,7 @@ msgstr "Apre selettore immagini"
msgid "Opens link {0}"
msgstr "Apre il link {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Apre la finestra di dialogo dello stato in diretta"
@@ -7919,9 +8114,9 @@ msgstr "Apre l'editor dei post"
msgid "Opens this draft in the composer"
msgstr "Apre questa bozza nell’editor"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Apre questo profilo"
@@ -7997,12 +8192,12 @@ msgstr "Il post sul blog"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Il team di moderazione ha ricevuto la tua segnalazione."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "I nostri moderatori hanno esaminato le segnalazioni e deciso di disabilitare il tuo accesso ai messaggi su Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "I nostri moderatori hanno esaminato le segnalazioni e deciso di disabili
msgid "Owner"
msgstr "Proprietario"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Pagina non trovata"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Pagina non trovata"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,36 +8264,36 @@ msgstr "Metti video in pausa"
msgid "People"
msgstr "Utenti"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "Le persone seguite da {ownerName} possono unirsi istantaneamente"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
-msgstr "Le persone seguite da {ownerName} possono richiedere di unirsi"
+msgstr "Le persone seguite da {ownerName} possono chiedere di partecipare"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Persone seguite da @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Persone che seguono @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Persone che seguo"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "Le persone che seguo possono unirsi istantaneamente"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
-msgstr "Le persone che seguo possono richiedere di unirsi"
+msgstr "Le persone che seguo possono chiedere di partecipare"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:510
msgid "People you follow"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Immagini consigliate ad un pubblico adulto."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Fissa feed"
@@ -8152,7 +8348,7 @@ msgstr "Fissa feed"
msgid "Pin to home"
msgstr "Fissa su home"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fissa su home"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Fissato"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} fissato su home"
@@ -8236,7 +8432,7 @@ msgstr "Scegli il tuo nome utente."
msgid "Please choose your password."
msgstr "Scegli la tua password."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Fai clic sul link presente nell'email che ti abbiamo appena inviato per verificare il tuo nuovo indirizzo email. Questo è un passaggio importante per continuare a usare tutte le funzionalità di Bluesky."
@@ -8244,7 +8440,7 @@ msgstr "Fai clic sul link presente nell'email che ti abbiamo appena inviato per
msgid "Please complete the verification captcha."
msgstr "Si prega di completare il captcha di verifica."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Conferma il tuo indirizzo email per caricare i video."
@@ -8265,14 +8461,14 @@ msgstr "Inserisci una password. Deve essere lunga almeno 8 caratteri."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Inserisci un nome univoco per questa password per app o usa quello generato casualmente."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Inserisci un codice valido."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Inserisci un indirizzo email valido."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Inserisci un indirizzo email valido e non temporaneo. Potresti dover accedere a questa email in futuro."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Inserisci qui sotto il codice che abbiamo inviato a <0>{0}0>."
@@ -8293,7 +8489,7 @@ msgstr "Inserisci qui sotto il codice che abbiamo inviato a <0>{0}0>."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Inserisci il codice che hai ricevuto e la nuova password che vuoi usare."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Inserisci il codice di sicurezza che abbiamo inviato al tuo indirizzo email precedente."
@@ -8306,7 +8502,7 @@ msgstr "Inserisci la tua email."
msgid "Please enter your invite code."
msgstr "Inserisci il tuo codice d'invito."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Inserisci il tuo nuovo indirizzo email."
@@ -8323,7 +8519,7 @@ msgstr "Inserisci il tuo nome utente"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Spiega perché ritieni che questa etichetta sia stata applicata in modo errato da {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Spiega perché ritieni che i tuoi messaggi siano stati disabilitati per errore"
@@ -8366,7 +8562,7 @@ msgstr "Usa l'app nativa per importare i tuoi contatti."
msgid "Please use the native app to sync your contacts."
msgstr "Usa l'app nativa per sincronizzare i tuoi contatti."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Verifica la tua email"
@@ -8383,7 +8579,7 @@ msgstr "Politica"
msgid "Porn"
msgstr "Porno"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Post"
@@ -8403,12 +8599,12 @@ msgstr "Pubblica una foto"
msgid "Post a video"
msgstr "Pubblica un video"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Posta tutti"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Pubblica comunque"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Post bloccato"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Pubblicato da @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Post eliminato"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Non è stato possibile inviare il post. Verifica la tua connessione a internet e riprova."
@@ -8454,7 +8650,7 @@ msgstr "Post nascosto da te"
msgid "Post interaction settings"
msgstr "Gestisci interazioni post"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Impostazioni interazioni"
@@ -8464,8 +8660,8 @@ msgstr "Impostazioni interazioni"
msgid "Post language selection"
msgstr "Selezione lingua del post"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Pubblica link"
@@ -8491,7 +8687,6 @@ msgstr "Post non più fissato"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "I post possono essere silenziati in base al loro testo, ai loro tag o a
msgid "Posts hidden"
msgstr "Post nascosto"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Post, risposte"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Link potenzialmente ingannevole"
@@ -8528,6 +8719,7 @@ msgstr "Premere per tentare di riconnetterti"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Premere per riprovare"
@@ -8536,7 +8728,7 @@ msgstr "Premere per riprovare"
msgid "Press to view followers of this account that you also follow"
msgstr "Clicca per vedere i follower di questo account che condividete"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Anteprima"
@@ -8559,21 +8751,20 @@ msgstr "Privacy"
msgid "Privacy and security"
msgstr "Privacy e sicurezza"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privacy e sicurezza"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Impostazioni privacy e sicurezza"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Informativa sulla privacy"
msgid "Privacy violation of a minor"
msgstr "Violazione della privacy di un minore"
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "Elaborazione GIF in corso..."
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Elaborazione video in corso..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Elaborazione in corso…"
@@ -8602,8 +8793,8 @@ msgstr "Elaborazione in corso…"
msgid "profile"
msgstr "profilo"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Pubblica post"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Pubblica i post"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Pubblica risposte"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Pubblica risposta"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Push"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Notifiche push"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
-msgstr "Push, Tutti"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr "Push, tutti"
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "Push, Persone che segui"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr "Push, persone che segui"
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "Codice QR scaricato!"
msgid "QR code saved to your camera roll!"
msgstr "Codice QR salvato nella galleria!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Notifiche delle citazioni"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Citazioni disattivate"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Citazioni"
@@ -8733,11 +8920,11 @@ msgstr "Limite di richieste superato. Riprova più tardi."
msgid "Re-attach quote"
msgstr "Riattacca citazione"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Riattiva link di invito"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Riattiva link"
@@ -8745,8 +8932,8 @@ msgstr "Riattiva link"
msgid "React with {emoji}"
msgstr "Reagisci con {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Reazioni"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "scopri come utilizzare i filtri di ricerca"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Leggi post del blog"
@@ -8812,11 +8999,11 @@ msgstr "Persone vere."
msgid "Reason for appeal"
msgstr "Motivo del ricorso"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Ricevi notifiche nell'app"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Ricevi notifiche push"
@@ -8841,6 +9028,10 @@ msgstr "Consigliati"
msgid "Reconnect"
msgstr "Riconnetti"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr "Aggiorna la pagina per vederlo."
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Rifiuta"
msgid "Reject chat request"
msgstr "Rifiuta richiesta"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Ricarica conversazioni"
@@ -8896,17 +9087,17 @@ msgstr "Rimuovi account"
msgid "Remove all contacts"
msgstr "Rimuovi tutti i contatti"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Rimuovi allegato"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Rimuovi avatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Rimuovi banner"
@@ -8914,8 +9105,9 @@ msgstr "Rimuovi banner"
msgid "Remove caption file"
msgstr "Rimuovi file dei sottotitoli"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Rimuovi allegato"
@@ -8933,8 +9125,8 @@ msgstr "Rimuovere il feed?"
msgid "Remove from chat"
msgstr "Rimuovi dalla chat"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Rimuovi dai post salvati"
msgid "Remove from your feeds?"
msgstr "Rimuovere dai tuoi feed?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Rimuovi immagine"
@@ -9009,11 +9201,11 @@ msgstr "Rimuovi verifica"
msgid "Remove your verification for this account?"
msgstr "Rimuovere la tua verifica per questo account?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Rimosso dall'autore"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Rimosso da te"
@@ -9035,7 +9227,7 @@ msgstr "Rimosso dai post salvati"
msgid "Removed from starter pack"
msgstr "Rimosso dallo starter pack"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Ti ha risposto"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Risposte"
@@ -9104,14 +9295,14 @@ msgstr "Risposte disattivate"
msgid "Replies to this post are disabled."
msgstr "Le risposte a questo post sono disattivate."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Rispondi"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Rispondi ({0, plural, one {# risposta} other {# risposte}})"
@@ -9125,10 +9316,6 @@ msgstr "Risposta nascosta dall'autore del thread"
msgid "Reply Hidden by You"
msgstr "Risposta nascosta da te"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Notifiche delle risposte"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Le impostazioni delle risposte sono scelte dall'autore del thread"
@@ -9146,9 +9333,9 @@ msgstr "Visibilità risposta aggiornata"
msgid "Reply was successfully hidden"
msgstr "Risposta nascosta con successo"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Segnala"
@@ -9164,13 +9351,13 @@ msgstr "Segnala account"
msgid "Report conversation"
msgstr "Segnala conversazione"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Segnala dialogo"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Segnala feed"
@@ -9179,7 +9366,7 @@ msgstr "Segnala feed"
msgid "Report list"
msgstr "Segnala lista"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Segnala messaggio"
@@ -9199,8 +9386,8 @@ msgstr "Segnala starter pack"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Segnalazione inviata"
@@ -9213,7 +9400,7 @@ msgstr "Segnala questa conversazione"
msgid "Report this feed"
msgstr "Segnala questo feed"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "Segnala questa chat di gruppo"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Segnala questa lista"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Segnala questa diretta"
@@ -9256,10 +9443,6 @@ msgstr "Repost"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Ripubblica ({0, plural, one {# ripubblicazione} other {# ripubblicazioni}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Notifiche dei repost"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Ripubblicato da te"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Repost"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Ripubblicazioni di questo post"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Repost dei tuoi repost"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Notifiche dei repost dei tuoi repost"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr "Richiedi l'accesso alla chat di gruppo"
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr "Richiesta approvata."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Richiedi codice"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr "Richiesta ignorata."
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr "Chiedi di partecipare"
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr "Richiesto"
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "Richieste"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr "Richieste di partecipazione"
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Richiedi il testo alternativo prima di pubblicare"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Richiedi un codice inviato via email per accedere al tuo account."
@@ -9328,7 +9534,11 @@ msgstr "Obbligatorio per questo fornitore"
msgid "Required in your region"
msgstr "Richiesto nel tuo paese"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr "Annulla richiesta"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Invia di nuovo"
@@ -9393,15 +9603,16 @@ msgstr "Ritenta l'ultima azione che ha generato un errore"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Ritenta l'ultima azione che ha generato un errore"
msgid "Retry"
msgstr "Riprova"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Ricarica opzioni"
@@ -9426,14 +9637,14 @@ msgstr "Ricarica opzioni"
msgid "Return to previous page"
msgstr "Ritorna alla pagina precedente"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Ritorna alla home"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Ritorna alla pagina precedente"
@@ -9454,7 +9665,7 @@ msgstr "GIF tristi"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Salva data di nascita"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Salva modifiche"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Salvare le modifiche?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Salva bozza"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Salvare la bozza?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Salva codice QR"
msgid "Save these options for next time"
msgstr "Salva queste opzioni per la prossima volta"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Salva nei miei feed"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Salvato"
msgid "Saved Feeds"
msgstr "Feed salvati"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Post salvati"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Salvato nei tuoi feed"
@@ -9551,8 +9764,8 @@ msgstr "Salvato nei tuoi feed"
msgid "Say hello!"
msgstr "Di' ciao!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "Saluta qualcuno"
@@ -9576,18 +9789,18 @@ msgstr "Scorri a destra"
msgid "Scroll to top"
msgstr "Scorri verso l'alto"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Cerca"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Cerca post di @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Cerca nei miei post"
msgid "Search posts"
msgstr "Cerca post"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Cerca profili"
msgid "Search..."
msgstr "Cerca..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Cerca profili"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Passaggio di sicurezza richiesto"
@@ -9759,7 +9972,7 @@ msgstr "Seleziona {langName}"
msgid "Select a color"
msgstr "Scegli un colore"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Seleziona un motivo"
@@ -9828,7 +10041,7 @@ msgstr "Seleziona GIF"
msgid "Select GIF \"{0}\""
msgstr "Seleziona GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "Seleziona membri della chat di gruppo"
@@ -9850,7 +10063,7 @@ msgstr "Seleziona lingua..."
msgid "Select languages"
msgstr "Seleziona lingue"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Seleziona il servizio di moderazione"
@@ -9904,11 +10117,11 @@ msgstr "Seleziona i tuoi interessi dalle seguenti opzioni"
msgid "Select your preferred language for translations in your feed."
msgstr "Seleziona la tua lingua preferita per le traduzioni nel tuo feed."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Seleziona i tuoi canali di notifica preferiti"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "La selezione di più tipi di media non è supportata."
@@ -9921,9 +10134,9 @@ msgstr "Comportamenti autolesionistici o pericolosi"
msgid "Send code"
msgstr "Invia codice"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Invia email"
@@ -9939,7 +10152,7 @@ msgstr "Invia segnalazione di errore"
msgid "Send feedback"
msgstr "Invia feedback"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Invia messaggio"
@@ -9952,7 +10165,7 @@ msgstr "Invia post a {name}"
msgid "Send post to..."
msgstr "Invia post a..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Invia la segnalazione a {title}"
@@ -9960,7 +10173,7 @@ msgstr "Invia la segnalazione a {title}"
msgid "Send the message from your phone"
msgstr "Invia il messaggio dal tuo telefono"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Invia tramite messaggi"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "Inviato alle {0}"
@@ -10015,14 +10228,14 @@ msgstr "Imposta la tua data di nascita qui sotto e potrai tornare a pubblicare e
msgid "Sets email for password reset"
msgstr "Imposta l'email per la reimpostazione della password"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Impostazioni"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Impostazioni per attività degli altri"
@@ -10030,39 +10243,39 @@ msgstr "Impostazioni per attività degli altri"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Impostazioni per consentire ad altri di ricevere notifiche dei tuoi post"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Impostazioni per notifiche di mi piace"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Impostazioni per notifiche di menzioni"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Impostazioni per notifiche di nuovi follower"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Impostazioni per notifiche di tutto il resto"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Impostazioni per notifiche di mi piace ai tuoi repost"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Impostazioni per notifiche di repost dei tuoi repost"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Impostazioni per notifiche di citazioni"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Impostazioni per notifiche di risposte"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Impostazioni per notifiche di repost"
@@ -10079,10 +10292,12 @@ msgstr "Attività sessuale o nudità erotica."
msgid "Sexually Suggestive"
msgstr "Sessualmente allusivo"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Condividi DID autore"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Condividi immagine"
@@ -10124,7 +10339,7 @@ msgstr "Condividi URL at:// del post"
msgid "Share QR code"
msgstr "Condividi codice QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Condividi questo feed"
@@ -10151,7 +10366,7 @@ msgstr "Condividi tramite..."
msgid "Share your contacts to find friends"
msgstr "Condividi i tuoi contatti per trovare amici"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Test preferenze condivise"
@@ -10167,16 +10382,16 @@ msgstr "Mostra testo alternativo"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Mostra comunque"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "Mostra etichetta automazione"
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Mostra avviso e filtra dai feed"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Mostra quando sei in diretta"
@@ -10297,15 +10512,17 @@ msgstr "Mostra il contenuto"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Accedi o crea un account"
msgid "Sign in or create your account to join the conversation!"
msgstr "Accedi o crea il tuo account per partecipare alla conversazione!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr "Accedi per accettare l'invito."
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Accedi a un account non in elenco"
@@ -10337,6 +10558,10 @@ msgstr "Accedi a un account non in elenco"
msgid "Sign in to Bluesky or create a new account"
msgstr "Accedi a Bluesky o crea un nuovo account"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr "Accedi per richiedere l'accesso a questa chat di gruppo."
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Accedi per visualizzare il post"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Esci"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Esci"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Vuoi uscire?"
@@ -10391,7 +10616,7 @@ msgstr "Salta"
msgid "Skip contact sharing and continue to the app"
msgstr "Salta la condivisione dei contatti e continua con l'app"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Saltare i post vuoti?"
@@ -10405,7 +10630,7 @@ msgstr "Salta l'introduzione e inizia a usare il tuo account"
msgid "Skip to next step"
msgstr "Vai al passo successivo"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "slide"
@@ -10413,7 +10638,7 @@ msgstr "slide"
msgid "Smaller"
msgstr "Più piccolo"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Posticipa il promemoria"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "Qualcuno ha lasciato il gruppo"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Qualcuno ha reagito con {0}"
@@ -10487,17 +10712,22 @@ msgstr "Qualcuno è stato rimosso"
msgid "Someone was removed from the group"
msgstr "Qualcuno è stato rimosso dal gruppo"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr "C'è qualcosa di nuovo"
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "C'è stato qualche problema con i dati che stai provando a segnalare. Contatta l'assistenza."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Qualcosa è andato storto"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Qualcosa è andato storto!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Qualcosa è andato storto, riprova tra qualche istante."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "C'è stato qualche problema. Riprovare."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Qualcosa non va? Faccelo sapere."
@@ -10568,7 +10798,7 @@ msgstr "Sport"
msgid "Start a conversation, and it will appear here."
msgstr "Inizia una conversazione, e comparirà qui."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Avvia una nuova conversazione"
@@ -10582,17 +10812,17 @@ msgstr "Inizia ad aggiungere persone"
msgid "Start adding people!"
msgstr "Inizia ad aggiungere persone!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Avvia chat"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Avvia conversazione con {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Starter Pack"
@@ -10654,12 +10884,12 @@ msgstr "Spazio di archiviazione eliminato. Riavvia l'app."
msgid "Stored as part of a secure code for matching with others"
msgstr "Archiviato come parte di un codice sicuro per trovare corrispondenze con altri"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Cronologia"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 "Stai trasmettendo su Twitch? Imposta in Bluesky il tuo stato in diretta per aggiungere un badge al tuo avatar. Toccandolo, le persone verranno indirizzate direttamente alla tua diretta."
@@ -10671,8 +10901,8 @@ msgstr "Stai trasmettendo su Twitch? Imposta in Bluesky il tuo stato in diretta
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Invia"
@@ -10684,9 +10914,9 @@ msgstr "Invia richiesta"
msgid "Submit Appeal"
msgstr "Invia richiesta"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Invia segnalazione"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Iscriviti"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr "Iscriviti a {0}"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr "Iscriviti a {publicationTitle} su {0}"
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Successo"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Successo!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr "Adesione alla chat di gruppo completata!"
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Verificato con successo"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Suggeriti"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Tramonto"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,20 +11014,20 @@ msgstr "Supporto"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Il supporto per questa funzionalità non è ancora attivo nella tua nazione! Riprova in seguito."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
-msgstr ""
+msgstr "Gli account sospesi non possono partecipare alle chat di gruppo."
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
-msgstr ""
+msgstr "Gli account sospesi non possono partecipare alle chat."
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Cambia account"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Cambia account"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Passa a {0}"
@@ -10828,7 +11062,7 @@ msgstr "Solo tag"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Tocca qui sotto per consentire a Bluesky di accedere alla tua posizione GPS. Utilizzeremo tali dati per determinare con maggiore precisione il contenuto e le funzionalità disponibili nella tua zona."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr "Tocca per dettagli"
@@ -10854,33 +11088,51 @@ msgstr "Tocca per confermare di aver compreso e accettato questi aggiornamenti e
msgid "Tap to close context menu"
msgstr "Tocca per chiudere il menu"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr "Tocca per copiare questo link di invito"
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Tocca per ignorare"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr "Tocca per partecipare subito a questa chat di gruppo"
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr "Tocca per aprire questa chat di gruppo"
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Tocca per rimuovere"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "Tocca per rimuovere la tua reazione {0}"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr "Tocca per chiedere di partecipare a questa chat di gruppo"
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Tocca per riprovare"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "Tocca per mostrare le reazioni {0}"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Tocca per mostrare tutte le reazioni"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Tocca per vedere le reazioni"
@@ -10924,7 +11176,7 @@ msgstr "Termini"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Testo e tag"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Campo di testo"
@@ -11049,6 +11301,11 @@ msgstr "Queste impostazioni saranno utilizzate come predefinite quando si crea u
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "Le leggi vigenti nella tua regione richiedono di verificare che tu sia un adulto prima di accedere a determinate funzionalità. Tocca per ulteriori informazioni."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr "È stato raggiunto il limite dei membri."
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "Il post a cui stai rispondendo è stato contrassegnato dall'autore come scritto in {suggestedLanguageName}. Vuoi rispondere in <0>{suggestedLanguageName}0>?"
@@ -11057,10 +11314,10 @@ msgstr "Il post a cui stai rispondendo è stato contrassegnato dall'autore come
msgid "The Privacy Policy has been moved to <0/>"
msgstr "L'informativa sulla privacy è stata spostata a <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
-msgstr "Il video selezionato è più grande di {videoSize} MB. Riprova con un file più piccolo."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
+msgstr "Il video selezionato è più grande di {VIDEO_MAX_SIZE_MB} MB. Riprova con un file più piccolo."
#: src/lib/hooks/useCleanError.ts:41
#: src/lib/strings/errors.ts:19
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "Non c'è alcun link di invito per questa chat di gruppo."
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "Si è verificato un problema durante il caricamento delle GIF. Controlla la connessione e riprova."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "Si è verificato un problema con la tua connessione a internet, riprova"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "Si è verificato un problema con la tua connessione a internet, riprova"
msgid "There was an issue contacting the server"
msgstr "Si è verificato un problema durante il contatto con il server"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Si è verificato un problema contattando il server, verifica la tua connessione a internet e riprova."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Si è verificato un problema durante il recupero delle notifiche. Tocca qui per riprovare."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Si è verificato un problema nel recupero dei post. Tocca qui per riprovare."
@@ -11161,7 +11420,7 @@ msgstr "Si è verificato un problema durante il recupero delle tue informazioni
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Si è verificato un problema durante la rimozione di questo feed. Verifica la tua connessione a internet e riprova."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Questo ricorso verrà inviato a <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Questo appello verrà inviato al servizio di moderazione Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Questo appello verrà inviato al servizio di moderazione Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "Questo autore ha scelto di rendere i propri post visibili solo a chi ha effettuato l'accesso."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "Questo pulsante consente agli altri di aprire l'app Germ DM per inviarti un messaggio. Puoi gestire la sua visibilità dall'app Germ DM, oppure puoi disconnettere il tuo account Bluesky da Germ DM facendo clic sul pulsante qui sotto."
@@ -11271,7 +11530,12 @@ msgstr "Questo pulsante consente agli altri di aprire l'app Germ DM per inviarti
msgid "This chat has ended"
msgstr "Questa chat è terminata"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr "Questa chat è al completo"
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "Questa chat è bloccata"
@@ -11310,7 +11574,11 @@ msgstr "Questo contenuto non è disponibile perché uno degli utenti coinvolti h
msgid "This content is not viewable without a Bluesky account."
msgstr "Questo contenuto non è visualizzabile senza un account Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr "Questa conversazione è bloccata."
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "L'utente di questa conversazione ha disattivato o eliminato l'account. P
msgid "This draft will be permanently deleted."
msgstr "Questa bozza sarà eliminata definitivamente."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Questa email è già associata al tuo account."
@@ -11360,7 +11628,7 @@ msgstr "Questo feed non è più online. Stiamo mostrando <0>Discover0> al suo
msgid "This handle is reserved. Please try a different one."
msgstr "Questo nome utente è riservato. Prova con un altro nome utente."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "Questa immagine non può essere usata. Prova un altro formato come .jpg o .png."
@@ -11368,6 +11636,18 @@ msgstr "Questa immagine non può essere usata. Prova un altro formato come .jpg
msgid "This information is private and not shared with other users."
msgstr "Queste informazioni sono private e non vengono condivise con altri utenti."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr "Questo link di invito è stato disabilitato."
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr "Questo link di invito è scaduto"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr "Questo link di invito non è valido"
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "Questo è uno stato vuoto"
@@ -11377,7 +11657,7 @@ msgstr "Questo è uno stato vuoto"
msgid "This is not a valid link"
msgstr "Non è un link valido"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "Questa etichetta permette al chiunque di sapere che questo account è automatizzato. Quanto è attivata, l'etichetta appare accanto al nome dell'account sul suo profilo e nei suoi post. Può essere attivata o disattivata in qualsiasi momento."
@@ -11410,13 +11690,13 @@ msgstr "Questa lista, creata da te, contiene possibili violazioni delle linee gu
msgid "This list is empty."
msgstr "Questa lista è vuota."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr "Questo messaggio è nascosto perché questo utente ti sta bloccando."
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr "Questo messaggio è nascosto perché stai bloccando questo utente."
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "L'autore del post ha disattivato le citazioni."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Questa risposta verrà spostata in una sezione nascosta in fondo al thread e le notifiche delle risposte saranno disattivate - sia per te che per gli altri."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "Questa schermata è disponibile solo per le conversazioni di gruppo."
@@ -11494,18 +11775,18 @@ msgstr "Questo utente non può essere verificato poiché non ha un nome visualiz
msgid "This user doesn't have any followers."
msgstr "Questo utente non ha follower."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Questo utente ti ha bloccato e non puoi inviargli messaggi."
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr "Questo utente ti ha bloccato. Non è possibile visualizzare il suo contenuto."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
-msgstr ""
+msgstr "Questo utente ha disabilitato la chat e è possibile inviargli messaggi."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
@@ -11574,7 +11855,7 @@ msgstr "Preferenze delle discussioni"
msgid "Threaded"
msgstr "Thread"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Preferenze per le discussioni"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Per disabilitare il metodo 2FA via email, verifica il tuo accesso all'indirizzo email."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Per disabilitare il metodo 2FA via email, verifica il tuo accesso a <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Popolari"
msgid "Top replies first"
msgstr "Prima le risposte più popolari"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Argomento"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Video di tendenza"
msgid "Trolling"
msgstr "Comportamento provocatorio / trolling"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "La fiducia nasce dalle relazioni, dalle comunità e dal contesto condiviso, quindi stiamo anche introducendo i <0>certificatori attendibili0>: organizzazioni che possono rilasciare direttamente la verifica."
@@ -11763,13 +12044,17 @@ msgstr "Impossibile contattare il servizio. Verifica la tua connessione a intern
msgid "Unable to delete"
msgstr "Impossibile eliminare"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
-msgid "Unable to find a selected recipient."
-msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr "Impossibile recuperare le richieste di partecipazione."
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr "Impossibile trovare uno dei destinatari selezionati."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
-msgstr ""
+msgstr "Impossibile trovare il destinatario selezionato."
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
@@ -11791,7 +12076,7 @@ msgstr "Non disponibile"
msgid "Unavailable feed information"
msgstr "Informazioni sui feed non disponibili"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Sblocca lista"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Annulla"
@@ -11872,7 +12157,7 @@ msgstr "Smetti di seguire"
msgid "Unfollows the user"
msgstr "Smetti di seguire"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Purtroppo, nessuna delle etichette a cui sei iscritto supporta questo tipo di segnalazione."
@@ -11904,13 +12189,13 @@ msgstr "Altro contenuto per adulti"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Altro contenuto per adulti, offensivo o non consensuale"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Non mi piace più ({0, plural, one {# mi piace} other {# mi piace}})"
@@ -11918,7 +12203,7 @@ msgstr "Non mi piace più ({0, plural, one {# mi piace} other {# mi piace}})"
msgid "Unlock chat"
msgstr "Sblocca chat"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr "Sblocca questa chat di gruppo"
@@ -11955,7 +12240,7 @@ msgstr "Riattiva conversazione"
msgid "Unmute list"
msgstr "Riattiva lista"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "Riattiva questa chat di gruppo"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Non fissare più"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Non fissare più il feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Non fissare più su home"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Non fissare più la lista di moderazione"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} non più fissato su home"
@@ -12030,11 +12315,11 @@ msgstr "Disiscriviti da etichetta"
msgid "Unsubscribed from list"
msgstr "Disiscritto dalla lista"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "Contenuto degli appunti non supportato"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Tipo di video non supportato: {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "Aggiorna"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Aggiorna <0>{displayName}0> nelle liste"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr "Aggiorna app"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Aggiorna email"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Aggiorna link di invito"
@@ -12065,11 +12354,19 @@ msgstr "Aggiorna link di invito"
msgid "Update to {domain}"
msgstr "Aggiorna a {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr "Aggiorna la tua app"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr "Aggiorna la tua app per vederlo."
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "Aggiorna la tua app all'ultima versione per partecipare!"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Aggiorna la tua email"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Impossibile aggiornare visibilità risposte"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "In alternativa carica una foto"
@@ -12098,39 +12395,40 @@ msgstr "In alternativa carica una foto"
msgid "Upload a text file to:"
msgstr "Carica un file di testo su:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Carica dalla fotocamera"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Carica dai file"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Carica dalla galleria"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "Caricamento GIF in corso..."
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Caricamento immagini..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Caricamento miniatura del link..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Caricamento del video..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "utente"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Utente bloccato"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Lista di {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "Elenco utenti di {0}"
@@ -12255,12 +12553,12 @@ msgstr "utenti seguiti da <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "utenti che seguono <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "Utenti che seguo"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Utenti che seguo"
@@ -12277,7 +12575,7 @@ msgstr "Verifica non riuscita, riprovare."
msgid "Verification settings"
msgstr "Impostazioni di verifica"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Impostazioni di verifica"
@@ -12304,8 +12602,8 @@ msgstr "Verifica di nuovo"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Verifica codice"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Verifica record DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Verifica codice email"
@@ -12349,7 +12647,7 @@ msgstr "Verificare questo account?"
msgid "Verify your age"
msgstr "Verifica la tua età"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Versione {0}"
msgid "Video"
msgstr "Video"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Elaborazione video fallita"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Feed dei video"
@@ -12419,7 +12717,7 @@ msgstr "Video non trovato."
msgid "Video settings"
msgstr "Impostazioni video"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Video caricato"
@@ -12432,18 +12730,18 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Video"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr "I video devono durare meno di 3 minuti."
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Vedi"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr "Vedi {0}"
@@ -12455,7 +12753,7 @@ msgstr "Vedi l'avatar di {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Vedi il profilo di {0}"
msgid "View {0}’s profile"
msgstr "Vedi il profilo di {0}"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "Vedi il profilo di {displayName}"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr "Vedi {publicationTitle}"
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr "Vedi il profilo di @{0}"
@@ -12503,10 +12801,18 @@ msgstr "Vedi dettagli"
msgid "View full thread"
msgstr "Vedi la discussione completa"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr "Vedi le richieste di chat di gruppo in arrivo"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr "Vedi richieste in arrivo"
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr "Visualizza le richieste di partecipazione a questa chat di gruppo"
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Visualizza le informazioni su queste etichette"
@@ -12522,7 +12828,7 @@ msgstr "Mostra di più"
msgid "View more trending videos"
msgstr "Vedi altri video di tendenza"
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Vedi post"
@@ -12539,10 +12845,10 @@ msgstr "Vedi il profilo"
msgid "View profile banner"
msgstr "Vedi banner del profilo"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr "Vedi pubblicazione"
@@ -12550,7 +12856,7 @@ msgstr "Vedi pubblicazione"
msgid "View the avatar"
msgstr "Vedi l'avatar"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "Vedi il link di invito per questa chat di gruppo"
@@ -12563,7 +12869,7 @@ msgstr "Visualizza il servizio di etichettatura fornito da @{0}"
msgid "View this user's verifications"
msgstr "Vedi le verifiche di questo utente"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Visualizza gli utenti a cui piace questo feed"
@@ -12596,8 +12902,8 @@ msgstr "Vedi i tuoi account silenziati"
msgid "View your verifications"
msgstr "Vedi le tue verifiche"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Vedi l'immagine completa"
@@ -12640,8 +12946,8 @@ msgstr "Mostra avviso"
msgid "Warn content and filter from feeds"
msgstr "Avvisa i contenuti e filtra dai feed"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Guarda ora"
@@ -12665,10 +12971,14 @@ msgstr "Nessun risultato per questo tag."
msgid "We couldn't find any results for that topic."
msgstr "Nessun risultato per questo argomento."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Non riusciamo a caricare questa conversazione"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr "Non è stato possibile caricare le richieste di partecipare a questa conversazione"
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "Non è stato possibile caricare le impostazioni di questa conversazione"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Consigliamo di selezionare almeno due interessi."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Abbiamo inviato un'email a <0>{0}0> contenente un link. Fai clic su di esso per completare la procedura di verifica dell'email."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Non è stato possibile verificare se puoi caricare video. Riprova."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "Ti avviseremo quando troveremo i tuoi amici."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Manderemo un'email a <0>{0}0> contenente un link. Fai clic su di esso per completare la procedura di verifica dell'email."
@@ -12779,12 +13089,12 @@ msgstr "Stiamo riscontrando problemi nell'inizializzazione del processo di verif
msgid "We're having network issues, try again"
msgstr "Stiamo riscontrando problemi di rete, riprova"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "Stiamo riscontrando problemi di rete, riprova"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Stiamo introducendo un nuovo livello di verifica su Bluesky -- una spunta riconoscibile."
@@ -12814,12 +13124,12 @@ msgstr "Non è stato possibile completare la ricerca. Riprova tra qualche minuto
msgid "We're sorry, you cannot access this screen at this time."
msgstr "Spiacenti: non puoi accedere a questa schermata al momento."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Come vuoi chiamare il tuo starter pack?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Come va?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Quando tocchi un segno di spunta, vedrai quali organizzazioni hanno rilasciato la verifica."
@@ -12878,7 +13188,7 @@ msgstr "Quando tocchi un segno di spunta, vedrai quali organizzazioni hanno rila
msgid "Who can interact with this post?"
msgstr "Chi può interagire con questo post?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "Chi e come può partecipare a questa chat di gruppo"
@@ -12887,13 +13197,13 @@ msgstr "Chi e come può partecipare a questa chat di gruppo"
msgid "Who can reply"
msgstr "Chi può rispondere"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Chi può verificare?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Ops!"
@@ -12939,19 +13249,19 @@ msgstr "Perché questo starter pack dovrebbe essere esaminato?"
msgid "Why should this user be reviewed?"
msgstr "Perché questo utente dovrebbe essere esaminato?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Vuoi bloccare questo utente e/o eliminare questa conversazione?"
#: src/components/dms/AfterReportConversationDialog.tsx:47
msgid "Would you like to block this user and/or leave this conversation?"
-msgstr ""
+msgstr "Bloccare questo utente e/o abbandonare questa conversazione?"
#: src/view/com/composer/drafts/DraftsButton.tsx:110
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr "Salvare come bozza prima di visualizzare le tue bozze?"
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr "Salvare come bozza da modificare più tardi?"
@@ -12960,12 +13270,12 @@ msgstr "Salvare come bozza da modificare più tardi?"
msgid "Write a post"
msgstr "Scrivi un post"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Scrivi un post"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Scrivi la tua risposta"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Il server ha restituito un DID errato. Ricevuto: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "Tipo di conversazione errato"
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "Stai accedendo a Bluesky da una regione che ci impone per legge di verificare la tua età prima di consentirti l'accesso all'app."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr "Stai bloccando {0}"
@@ -13068,7 +13379,7 @@ msgstr "Sei in diretta"
msgid "You are no longer live"
msgstr "Non sei più in diretta"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Non sei autorizzato a caricare video."
@@ -13117,12 +13428,12 @@ msgstr "Puoi sempre scegliere di disattivare la funzionalità e cancellare i tuo
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Puoi scegliere se attivare il suono delle notifiche di nuovi Messaggi nelle impostazioni all’interno dell’app"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Puoi proseguire le conversazioni in corso indipendentemente dall'impostazione scelta."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Ora puoi scegliere di ricevere una notifica quando determinate persone pubblicano qualcosa. Se vuoi aggiornamenti tempestivi da qualcuno, vai sul suo profilo e cerca la nuova icona a forma di campanella vicino al pulsante Segui."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "Puoi salvare le bozze solo se hanno fino a 1000 caratteri."
@@ -13139,11 +13455,11 @@ msgstr "Puoi salvare le bozze solo se hanno fino a 1000 caratteri."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "Puoi salvare le bozze solo se hanno fino a 1000 caratteri. Vuoi eliminare questo post prima di visualizzare le bozze?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr "Puoi selezionare una sola GIF alla volta."
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Puoi selezionare un solo video alla volta."
@@ -13155,10 +13471,10 @@ msgstr "Puoi riattivare il tuo account per accedere. Il tuo profilo e i tuoi pos
msgid "You can read chat history but can’t send new messages."
msgstr "Puoi leggere la cronologia della chat ma non puoi inviare nuovi messaggi."
-#. 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: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."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr "Puoi selezionare fino a {MAX_GALLERY_IMAGES, plural, other {# immagini}} in totale."
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,9 +13482,9 @@ msgstr "È possibile selezionare fino a {MAX_IMAGES, plural, other {# immagini}}
msgid "You can update this later from your settings."
msgstr "Puoi modificare questa preferenza dalle impostazioni."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
-msgstr ""
+msgstr "Non puoi ancora creare una chat di gruppo."
#: src/lib/hooks/useCleanError.ts:54
#: src/lib/strings/errors.ts:28
@@ -13197,6 +13513,10 @@ msgstr "Non hai salvato nessun feed."
msgid "You got here first"
msgstr "Sei arrivato qui per primo"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr "Sei stato precedentemente rimosso da questo gruppo e non puoi partecipare usando questo link."
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
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?"
@@ -13336,7 +13656,7 @@ msgstr "Devi seguire almeno altri 7 utenti per creare uno starter pack."
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "È necessario consentire l'accesso alla tua libreria multimediale."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Probabilmente è il momento di riavviare l'app."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Hai reagito con {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "Hai cambiato di recente la tua data di nascita"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Verrai disconnesso da tutti i tuoi account."
@@ -13390,7 +13710,7 @@ msgstr "Riceverai le notifiche per questo thread"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Riceverai un'email con un codice di recupero. Inserisci il codice qui, poi inserisci la tua nuova password."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "Non sarai in grado di rientrare finché non sarai invitato a farlo."
@@ -13463,7 +13783,7 @@ msgstr "Hai raggiunto la fine del contenuto attivo."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Hai raggiunto la fine del tuo feed! Trova altri account da seguire."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "Hai raggiunto il numero massimo di bozze"
@@ -13475,11 +13795,11 @@ msgstr "Hai raggiunto il numero massimo di richieste consentite. Riprova più ta
msgid "You've reached the start of the active content."
msgstr "Hai raggiunto l'inizio del contenuto attivo."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi byte)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi video)"
@@ -13499,10 +13819,18 @@ msgstr "Il tuo account è stato eliminato, addio! ✌️"
msgid "Your account has been suspended"
msgstr "Il tuo account è stato sospeso"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Il tuo account è troppo recente per caricare video. Riprova più tardi."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr "Il tuo account è troppo recente"
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr "Il tuo account deve essere stato creato da almeno 7 giorni prima di poter creare una nuova chat di gruppo."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "L'archivio del tuo account, che contiene tutti i record di dati pubblici, può essere scaricato come file \"CAR\". Questo file non include elementi multimediali incorporati, come immagini o dati privati, che devono essere recuperati separatamente."
@@ -13519,7 +13847,7 @@ msgstr "La richiesta di revisione è stata inviata. Se il ricorso ha esito posit
msgid "Your birth date"
msgstr "Data di nascita"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Le tue conversazioni sono state disabilitate"
@@ -13561,7 +13889,7 @@ msgstr "La tua email"
msgid "Your email appears to be invalid."
msgstr "Sembra che il tuo indirizzo email non sia corretto."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "La tua email non è stata ancora verificata. Verifica la tua email per poter usare tutte le funzionalità di Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "Il tuo feed Seguiti è vuoto! Segui più utenti per vedere cosa sta succ
msgid "Your full handle will be <0>@{0}0>"
msgstr "Il tuo nome utente completo sarà <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "La tua posizione è stata aggiornata."
msgid "Your muted words"
msgstr "Le tue parole silenziate"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "Il tuo nome, il tuo avatar e il nome della chat di gruppo saranno visibili a chiunque."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr "Il tuo nome, il tuo avatar, il nome della chat di gruppo e il numero di membri saranno visibili a chiunque."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "Il tuo post è stato inviato"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "I tuoi post sono stati inviati"
@@ -13635,7 +13963,7 @@ msgstr "I tuoi post sono stati inviati"
msgid "Your preferred language"
msgstr "La tua lingua preferita"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "Immagine del tuo profilo"
@@ -13648,12 +13976,12 @@ msgstr "L'immagine del tuo profilo circondata da cerchi concentrici con immagini
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, i tuoi post, i tuoi feed e le tue 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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Risposta inviata"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "La segnalazione sarà inviata a <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "La segnalazione sarà inviata a <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Gli interessi che selezioni ci permettono di mostrare i contenuti più pertinenti."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "Il tuo thread ha dei post vuoti che verranno saltati. Gli altri post verranno pubblicati come thread."
diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po
index 3b82f5018b..c38b8707d9 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, other {#分}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, other {#ヶ月}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr "{0, plural, other {#個の新規参加リクエスト}}"
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, other {#人}}がリアクションしました – {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, other {#秒}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, other {#件の未読}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr "{0, plural, other {#分}}"
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} フォロー中"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr "{0}はあなたをブロックしています"
@@ -264,7 +269,7 @@ msgstr "{0} / 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0}が{1}とリアクションしました"
@@ -309,16 +314,38 @@ msgstr "{0}、{1}によるリスト"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "{0}のアバター"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "{0}のアバター"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr "{0}/{1}"
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr "{0}/{1}{2, plural, other {人}}"
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr "{0}/{1}メンバー"
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}分"
msgid "{0}s"
msgstr "{0}秒"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr "{count, plural, =0 {参加リクエストはありません} other {#件の参加リクエスト}}"
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr "{count, plural, other {チャットの更新#件}}"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr "{count, plural, other {#件の新規参加リクエスト}}"
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, other {リクエスト#件}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, other {#件の未読}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr "{count, plural, other {ページを更新して、すべて表示。}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr "{count, plural, other {この投稿には#枚の写真。}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr "{count, plural, other {アプリを更新して、すべて表示。}}"
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr "{count, plural, other {#件以上の新規参加リクエスト}}"
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "{count}+"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "{count}+件のリクエスト"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} があなたを認証しました"
msgid "{following} following"
msgstr "{following} フォロー"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "{handle}は追加できません"
@@ -547,7 +599,7 @@ msgstr "{handle}は追加できません"
msgid "{handle} can't be messaged"
msgstr "{handle}にメッセージを送れません"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "{handle}にメッセージを送れません"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, other {#時間{minutesString}}}"
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, other {#時間}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "{JOIN_REQUESTS_THRESHOLD}件以上の新規参加リクエスト"
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "{JOIN_REQUESTS_THRESHOLD}件以上の新規参加リクエスト"
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,9 +643,9 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, other {返信は最大#件まで非表示にできます。}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
-msgstr ""
+msgstr "{memberCount}/{memberLimit}"
#: src/features/liveNow/utils.ts:10
msgid "{minutes, plural, one {# minute} other {# minutes}}"
@@ -607,7 +669,7 @@ msgstr "{name}のお気に入りのフィードとユーザーです - 参加し
msgid "{name}'s starter pack"
msgstr "{name}のスターターパック"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, other {#件の未読}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, other {#リクエスト}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "{requestCount}+リクエスト"
@@ -795,8 +857,11 @@ msgstr "ネットワークエラーが発生しました。インターネット
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "ネットワークエラーが発生しました。インターネット接続を確認してください。"
@@ -804,7 +869,7 @@ msgstr "ネットワークエラーが発生しました。インターネット
msgid "A new code has been sent"
msgstr "新しいコードが送信されました"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "認証の新しい形"
@@ -827,11 +892,11 @@ msgstr "プロフィールページのスクリーンショットには、フォ
msgid "A screenshot of 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 "投稿ボタンの隣に虹色の花火のエフェクトで飾られた「下書き」と書かれた新しいボタンがある投稿作成画面のスクリーンショット。下には「ねえ、ニュースを聞いた?Blueskyに下書きが出来たって!!!」と投稿画面に書かれている。"
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
-msgstr ""
+msgstr "選択された受信者は送信者がフォローしていません。"
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "虐待または差別的な行動"
msgid "Accept"
msgstr "承認"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "承認"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "チャットのリクエストを承認する"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr "参加リクエストを承認"
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "リクエストを承認"
@@ -860,17 +935,26 @@ msgstr "リクエストを承認"
msgid "Accept this language suggestion"
msgstr "この言語の提案を受け入れる"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr "承認された会話"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr "アクセスをリクエストしました!グループのオーナーがリクエストをレビューします。"
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "アクセシビリティ"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "アクセシビリティの設定"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "アカウントのミュートを解除しました"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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によって選択されています。"
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "他のユーザーからのアクティビティ"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "アクティビティの通知"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "追加"
@@ -999,8 +1079,8 @@ msgstr "アカウントを追加"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "ALTテキストを追加(オプション)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "他のアカウントを追加"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "他の投稿を追加"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "スレッドに他の投稿を追加"
@@ -1035,7 +1115,7 @@ msgstr "アプリパスワードを追加"
msgid "Add App Password"
msgstr "アプリパスワードを追加"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "アカウントに自動化ラベルを追加"
@@ -1043,7 +1123,7 @@ msgstr "アカウントに自動化ラベルを追加"
msgid "Add emoji reaction"
msgstr "絵文字リアクションを追加"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "グループチャットメンバーを追加"
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "投稿にメディアを追加する"
@@ -1062,8 +1142,8 @@ msgstr "投稿にメディアを追加する"
msgid "Add members"
msgstr "メンバーを追加"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "詳細を追加(オプション)"
@@ -1080,8 +1160,8 @@ msgstr "選択した設定でミュートワードを追加"
msgid "Add muted words and tags"
msgstr "ミュートするワードとタグを追加"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "リストにメンバーを追加しています…"
msgid "Additional details (limit 1000 characters)"
msgstr "追加の詳細(1000文字まで)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "追加の詳細(300文字まで)"
@@ -1228,12 +1308,12 @@ msgstr "年齢保証の問い合わせが送られました"
msgid "Age assurance only takes a few minutes"
msgstr "年齢保証には数分かかります"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "すべて"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "全{0}"
@@ -1278,13 +1358,13 @@ msgstr "ダイレクトメッセージへのアクセスを許可"
msgid "Allow anyone to reply"
msgstr "誰でも返信を許可"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "ダイレクトメッセージを誰から受け取れるか:"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr "グループチャットの招待を誰から受け取れるか:"
@@ -1338,12 +1418,12 @@ msgstr "既にアカウントを持ってますか?"
msgid "Already signed in as @{0}"
msgstr "@{0}としてすでにサインイン済み"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "ALTテキスト"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "ALTテキストは、すべての人が文脈を理解できるようにするために、視覚障害者や低視力者向けに提供する画像の説明文です。"
@@ -1387,7 +1467,7 @@ msgstr "エラーが発生しました"
msgid "An error occurred"
msgstr "エラーが発生しました"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "ビデオの圧縮中にエラーが発生しました。"
@@ -1432,11 +1512,11 @@ msgstr "QRコードの保存中にエラーが発生しました!"
msgid "An error occurred while trying to follow all"
msgstr "すべてフォローしようとしたらエラーが発生しました"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "ビデオのアップロード中にエラーが発生しました。 {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "ビデオのアップロード中にエラーが発生しました。インターネット接続を確認して、もう一度お試しください。"
@@ -1461,21 +1541,21 @@ msgstr "リポスト、いいね、そしてコメントのアイコンと一緒
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Blueskyが信頼された認証者を選択し、信頼された認証者が個々のユーザアカウントを認証することを示す図。"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "招待リンクを使用すると、ユーザーを直接追加せずにグループチャットに参加してもらうことができます。リンクの使用権限や承認の必要性はあなたが管理できます。リンクはいつでも無効にできます。"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr "招待リンクを使用すると、ユーザーを直接追加せずにグループチャットに参加してもらうことができます。誰が参加できるかは、はあなたが管理できます。リンクはいつでも無効にできます。"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "ほかの選択肢にはあてはまらない問題"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
-msgstr ""
+msgstr "グループ チャットの作成中に問題が発生しました。もう一度やり直してください。"
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
-msgstr ""
+msgstr "チャット開始時に問題が発生しました。もう一度やり直してください。"
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
msgid "An issue occurred while trying to open the chat"
@@ -1490,7 +1570,7 @@ msgstr "チャットを開始しようとした時に問題が発生しました
msgid "An issue occurred, please try again."
msgstr "問題が発生しました。もう一度お試しください。"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Blueskyアプリが表示されているiPhoneのモックアップで、認証されたユーザーのプロフィールを開くと、表示名の横に青色のチェックマークが表示されています。"
@@ -1539,13 +1619,17 @@ msgstr "誰でも"
msgid "Anyone can interact"
msgstr "誰でも反応可能"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr "誰でも参加できます"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "誰でも即座に参加可能"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "誰でも参加リクエスト可能"
@@ -1555,11 +1639,11 @@ msgstr "誰でも参加リクエスト可能"
msgid "Anyone who follows me"
msgstr "フォローしている人"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr "それを持っている人はもう参加できなくなり、また、参加のリクエストもできなくなります。いつでも新しいものを作成できます。"
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "アプリパスワードの名前は長さが4文字以上である必
msgid "App passwords"
msgstr "アプリパスワード"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "アプリパスワード"
@@ -1618,7 +1702,7 @@ msgstr "ライブ配信の停止に異議申し立て"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "異議申し立てを送信しました"
@@ -1632,14 +1716,14 @@ msgstr "アカウント停止に異議申し立て"
msgid "Appeal Suspension"
msgstr "アカウント停止に異議申し立て"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "この決定に異議を申し立てる"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "本当に、本当によろしいですか?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "アプリパスワード「{0}」を本当に削除しますか?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "このメッセージを本当に削除しますか?このメッセージはあなたからは削除したように見えますが、他の参加者にとっては削除されません。"
@@ -1688,23 +1772,23 @@ msgstr "本当にこのスターターパックを削除したいですか?"
msgid "Are you sure you want to discard your changes?"
msgstr "本当に変更を破棄したいですか?"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "{groupName} から退出しますか?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr "本当にこの会話を終了しますか?"
-#: 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 "この会話から退出しますか?あなたのメッセージはあなたからは削除したように見えますが、他の参加者からは削除されません。"
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr "本当にこのフィードをあなたのフィードから削除したいですか?"
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "本当にこの投稿を削除しますか?"
@@ -1752,7 +1836,7 @@ msgstr "自動化アカウント"
msgid "Automation label"
msgstr "自動化ラベル"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "自動化ラベル"
@@ -1767,12 +1851,12 @@ msgstr "ビデオとGIFの自動再生"
msgid "Available"
msgstr "利用可能"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "利用可能"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "利用可能"
msgid "Back"
msgstr "戻る"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "チャットへ戻る"
@@ -1840,12 +1926,12 @@ msgstr "このチャットのリクエストを受け付けるには、まずメ
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "{name}の投稿の通知を受け取る前に、まずメールアドレスを確認してください。"
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "他のユーザーにメッセージを送るには、まずメールアドレスの確認が必要です。"
@@ -1877,7 +1963,7 @@ msgstr "生年月日"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "{displayName}をブロック"
msgid "Block account"
msgstr "アカウントをブロック"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "アカウントをブロックしますか?"
@@ -1912,15 +1998,15 @@ msgstr "アカウントをブロックしますか?"
msgid "Block accounts"
msgstr "アカウントをブロック"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
-msgstr ""
+msgstr "ブロックして削除"
#. After-report action for a conversation
#: src/components/dms/AfterReportConversationDialog.tsx:167
msgctxt "button"
msgid "Block and leave"
-msgstr ""
+msgstr "ブロックして退出"
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
msgid "Block list"
@@ -1936,9 +2022,9 @@ msgstr "これらのアカウントをブロックしますか?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "ユーザーをブロック"
@@ -1946,17 +2032,17 @@ msgstr "ユーザーをブロック"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "ユーザーをブロック"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "ユーザーをブロックするかこの会話を削除(あるいは両方)"
#: src/components/dms/AfterReportConversationDialog.tsx:217
msgid "Block user and/or leave this conversation"
-msgstr ""
+msgstr "ユーザーをブロックするかこの会話から退出(あるいは両方)"
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "ブロックされています"
@@ -1964,13 +2050,13 @@ msgstr "ブロックされています"
msgid "Blocked accounts"
msgstr "ブロック中のアカウント"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "ブロック中のアカウント"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "ブロック中のアカウントは、あなたのスレッドでの返信、あなたへのメンション、その他の方法であなたとやり取りすることはできません。"
@@ -2029,7 +2115,7 @@ msgstr "Blueskyは友達と一緒のほうが楽しい!"
msgid "Bluesky is more fun with friends"
msgstr "Blueskyは友達と一緒のほうが楽しい"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Blueskyは友達と一緒だともっと楽しくなります!連絡先をインポートして、すでにここにいる人を確認してください。"
@@ -2053,7 +2139,7 @@ msgstr "Blueskyはあなたのつながっているユーザーからおすす
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 "Blueskyはログアウトしたユーザーにあなたのプロフィールや投稿を表示しません。他のアプリはこのリクエストに応じない場合があります。この設定はあなたのアカウントを非公開にするものではありません。"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Blueskyは著名な本物のアカウントを積極的に認証します。"
@@ -2137,23 +2223,30 @@ msgstr "ビジネス"
msgid "Button to go back to the home timeline"
msgstr "ホームタイムラインに戻るボタン"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "作成者:{0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "作成者:<0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr "By <0>{ownerDisplayName}0>"
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr "著者:<0>@{0}0>"
@@ -2181,7 +2274,7 @@ msgstr "アカウントを作成することで、<0>利用規約0>に同意
msgid "By you"
msgstr "作成者:あなた"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "カメラ"
@@ -2192,8 +2285,8 @@ msgstr "カメラ"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "カメラ"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "カメラ"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "キャンセル"
@@ -2248,9 +2341,9 @@ msgstr "再有効化をキャンセルしてサインアウト"
msgid "Cancel search"
msgstr "検索をキャンセル"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "ブロックしたユーザーとはやりとりできません"
@@ -2264,7 +2357,7 @@ msgstr "キャプション(.vtt)"
msgid "Captions & alt text"
msgstr "キャプション&ALTテキスト"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "カルーセル"
@@ -2297,7 +2390,7 @@ msgstr "アプリの言語を変更"
msgid "Change Handle"
msgstr "ハンドルを変更"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "モデレーションサービスを変更"
@@ -2310,11 +2403,11 @@ msgstr "パスワードの変更"
msgid "Change password dialog"
msgstr "パスワード変更ダイアログ"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "レポートカテゴリの変更"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "報告の理由を変更"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "作成後、スターターパックへの変更はリストに反映されません。リストは独立したコピーとなります。"
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "チャット"
@@ -2361,6 +2454,13 @@ msgstr "チャットを削除しました"
msgid "Chat ended"
msgstr "チャットが終了しました"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr "チャットの招待リンクはもう利用できません"
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "チャットがロックされました"
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "チャットをミュートしました"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
-msgstr ""
+msgstr "チャットの受信者は送信者がフォローしていません。"
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "チャット要求の受信トレイ"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "チャットの要求"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "チャットの設定"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "チャットの設定"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "チャットのミュートを解除しました"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "チャット"
@@ -2479,7 +2579,7 @@ msgstr "投稿の言語を選択"
msgid "Choose this color as your avatar"
msgstr "この色をアバターとして選択"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "このグループチャットに誰がどのように参加可能かを選択してください。"
@@ -2533,7 +2633,7 @@ msgstr "クリックして情報を表示"
msgid "click here"
msgstr "こちらをクリック"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "ここをクリックしてこのグループチャットに人を追加"
@@ -2541,7 +2641,7 @@ msgstr "ここをクリックしてこのグループチャットに人を追加
msgid "Click here to contact our support team"
msgstr "こちらをクリックしてサポートチームにご連絡ください"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "ここをクリックして、このグループチャットの招待リンクを作成・管理"
@@ -2558,7 +2658,7 @@ msgstr "ここをクリックしてログアウト"
msgid "Click here to resend the email"
msgstr "ここをクリックしてメールを再送信"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "確認プロセスを再開するには、ここをクリックしてください。"
@@ -2567,11 +2667,11 @@ msgstr "確認プロセスを再開するには、ここをクリックしてく
msgid "Click here to update your birthdate"
msgstr "ここをクリックして生年月日を更新"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "メールアドレスの更新は、ここをクリック"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "ここをクリックしてこのグループチャットの招待リンクを表示"
@@ -2580,7 +2680,7 @@ msgstr "ここをクリックしてこのグループチャットの招待リン
msgid "Click to open tag menu for {0}"
msgstr "クリックして {0} のタグメニューを開く"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "送信失敗したメッセージを再送信"
@@ -2594,28 +2694,30 @@ msgstr "送信失敗したメッセージを再送信"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "送信失敗したメッセージを再送信"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "アクティブなダイアログを閉じる"
msgid "Close alert"
msgstr "アラートを閉じる"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr "バナーを閉じる"
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "一番下の引き出しを閉じる"
@@ -2657,8 +2763,9 @@ msgstr "一番下の引き出しを閉じる"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "ダイアログを閉じる"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "画像を閉じる"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "画像ビューワーを閉じる"
@@ -2683,6 +2790,14 @@ msgstr "画像ビューワーを閉じる"
msgid "Close menu"
msgstr "メニューを閉じる"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr "リクエストバナーを閉じる"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "このダイアログを閉じる"
@@ -2695,7 +2810,7 @@ msgstr "ウェルカムモーダルを閉じる"
msgid "Closes password update alert"
msgstr "パスワード更新アラートを閉じる"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "投稿の編集画面を閉じて下書きを破棄"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "漫画"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "コミュニティガイドライン"
@@ -2740,12 +2855,12 @@ msgstr "テストをクリアしてください"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "新しい投稿を作成"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "最大{0, plural, other {#文字}}まで投稿を編集"
@@ -2753,11 +2868,11 @@ msgstr "最大{0, plural, other {#文字}}まで投稿を編集"
msgid "Compose reply"
msgstr "返信を作成"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "GIFを圧縮中…"
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "ビデオを圧縮中…"
@@ -2780,7 +2895,7 @@ msgstr "<0>モデレーションの設定0>で設定されています。"
msgid "Confirm"
msgstr "確認"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "コンテンツ&メディア"
msgid "Content and media"
msgstr "コンテンツとメディア"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "コンテンツとメディア"
@@ -2889,7 +3004,7 @@ msgstr "コンテキストメニューの背景をクリックし、メニュー
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "スレッドの続き"
msgid "Continue thread..."
msgstr "スレッドの続き…"
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "グループ名に進む"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "次のステップへ進む"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "会話"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "会話が削除されました"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "会話が削除されました"
@@ -2939,13 +3054,20 @@ msgstr "会話が削除されました"
#: src/components/dms/AfterReportConversationDialog.tsx:179
msgctxt "toast"
msgid "Conversation left"
-msgstr ""
+msgstr "会話から退出しました"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr "会話が見つかりません。"
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "ビルドバージョンをクリップボードにコピーしました"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "DIDをコピー"
msgid "Copy host"
msgstr "ホストをコピー"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "プロフィールへのリンクをコピー"
msgid "Copy link to starter pack"
msgstr "スターターパックへのリンクをコピー"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "メッセージのテキストをコピー"
@@ -3052,7 +3175,7 @@ msgstr "TXTレコードの値をコピー"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "著作権ポリシー"
@@ -3065,7 +3188,7 @@ msgstr "カスタムフィードへ接続できませんでした"
msgid "Could not connect to feed service"
msgstr "フィードサービスへ接続できませんでした"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr "投稿を取得できませんでした"
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "マッチした全員をフォローできませんでした。{0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "チャットからの退出に失敗しました"
@@ -3094,6 +3217,10 @@ msgstr "チャットからの退出に失敗しました"
msgid "Could not load feed"
msgstr "フィードの読み込みに失敗しました"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr "招待を読み込めませんでした"
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "国コード"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "作成"
@@ -3159,7 +3286,7 @@ msgstr "スターターパックのQRコードを作成"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "スターターパックを作成"
@@ -3174,13 +3301,14 @@ msgstr "私向けのスターターパックを作成"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "アカウントを作成"
msgid "Create an account without using this starter pack"
msgstr "このスターターパックを使用せずにアカウントを作成する"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "代わりにアバターを作成"
@@ -3206,7 +3334,7 @@ msgstr "代わりにアバターを作成"
msgid "Create another"
msgstr "別のものを作成"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "グループ チャットを作成"
@@ -3228,19 +3356,20 @@ msgstr "スターターパックからリストを作成"
msgid "Create moderation list"
msgstr "モデレーションリストを作成"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "新しいアカウントを作成"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr "このグループチャットの招待リンクを作成・変更"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "{0}の報告を作成"
@@ -3256,8 +3385,8 @@ msgstr "ユーザーリストを作成"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "{0}に作成"
@@ -3341,7 +3470,7 @@ msgstr "デフォルト"
msgid "Default icons"
msgstr "デフォルトアイコン"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "チャットの宣言レコードを削除"
msgid "Delete contacts"
msgstr "連絡先を削除"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "会話を削除"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "自分宛を削除"
@@ -3399,11 +3528,11 @@ msgstr "自分宛を削除"
msgid "Delete list"
msgstr "リストを削除"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "メッセージを削除"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "メッセージの宛先から自分を削除"
@@ -3413,7 +3542,7 @@ msgstr "アカウントを削除"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "投稿を削除"
@@ -3434,12 +3563,12 @@ msgstr "このリストを削除しますか?"
msgid "Delete this post?"
msgstr "この投稿を削除しますか?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "削除されています"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "削除されたアカウント"
@@ -3507,13 +3636,13 @@ msgstr "ダイアログ:この投稿に誰が反応できるか調整"
msgid "Dim"
msgstr "グレー"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "無効にする"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "2要素認証を無効に"
@@ -3521,7 +3650,7 @@ msgstr "2要素認証を無効に"
msgid "Disable captions"
msgstr "キャプションを無効化"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "メールでの2要素認証を無効にする"
@@ -3534,8 +3663,8 @@ msgstr "メールでの2要素認証を無効にする"
msgid "Disable haptic feedback"
msgstr "触覚フィードバックを無効化"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr "リンクを無効化"
@@ -3547,7 +3676,7 @@ msgstr "この投稿の引用投稿を無効にする"
msgid "Disable replies entirely"
msgstr "返信を完全に無効にする"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "この招待リンクを無効にしますか?"
@@ -3560,9 +3689,9 @@ msgstr "無効"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "破棄"
msgid "Discard changes?"
msgstr "変更を破棄しますか?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "下書きを削除しますか?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "投稿を削除しますか?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Germ DMを切断"
@@ -3613,11 +3742,11 @@ msgstr "新しいフィードを探す"
msgid "Dismiss"
msgstr "消す"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "バナーを閉じる"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "エラーを消す"
@@ -3673,7 +3802,7 @@ msgstr "ヌードは含まれません。"
msgid "Domain verified!"
msgstr "ドメインを確認しました!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "コードを持っていないか、新しいコードが必要ですか?<0>ここをクリックしてください。0>"
@@ -3681,7 +3810,7 @@ msgstr "コードを持っていないか、新しいコードが必要ですか
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "コードが届いていませんか?<0>ここをクリックすれば再送信します。0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "メールが届いていませんか?<0>ここをクリックすれば再送信します。0>"
@@ -3700,16 +3829,19 @@ msgstr "心配しないでください!すべての既存のメッセージと
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "完了"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "メッセージをダブルタップか長押しでリアクションを追加"
@@ -3741,15 +3873,6 @@ msgstr "ダブルタップでいいね"
msgid "Download Bluesky"
msgstr "Blueskyをダウンロード"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "CARファイルをダウンロード"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "CARファイルをダウンロード"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "チャットのデータをダウンロード"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "チャットのデータをダウンロード"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "画像をダウンロード"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr "プロフィールのデータをダウンロード"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr "プロフィールのデータをダウンロード"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "ドクシング(個人情報晒し)"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "例: 繰り返し広告付きで返信するユーザー。"
msgid "Eating disorders"
msgstr "摂食障害"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "編集"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "アバターを編集"
@@ -3847,14 +3978,14 @@ msgstr "アバターを編集"
msgid "Edit Feeds"
msgstr "フィードを編集"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "グループ名を編集"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "画像を編集"
@@ -3868,7 +3999,16 @@ msgstr "反応関連の設定を編集"
msgid "Edit interests"
msgstr "「気になること」を編集"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr "招待リンクを編集"
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr "招待リンクを編集"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "リンクの設定を編集"
@@ -3886,20 +4026,15 @@ msgstr "ライブステータスを編集"
msgid "Edit moderation list"
msgstr "モデレーションリストを編集"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "マイフィードを編集"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "名前を編集"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "{0}からの通知を編集"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "ユーザーを編集"
@@ -3925,7 +4060,7 @@ msgstr "プロフィールを編集"
msgid "Edit starter pack"
msgstr "スターターパックを編集"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "このグループチャットの名前を編集"
@@ -3937,7 +4072,7 @@ msgstr "ユーザーリストを編集"
msgid "Edit who can reply"
msgstr "誰が返信できるのかを編集"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "スターターパックを編集"
@@ -3971,7 +4106,7 @@ msgstr "メールアドレス"
msgid "Email Resent"
msgstr "メール再送済"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "メールを送りました!"
@@ -4006,8 +4141,8 @@ msgstr "この投稿をあなたのウェブサイトに埋め込みます。以
msgid "Embedded video player"
msgstr "埋め込みビデオプレーヤー"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "有効にする"
@@ -4025,7 +4160,7 @@ msgstr "成人向けコンテンツを有効にする"
msgid "Enable captions"
msgstr "キャプションを有効化"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "メールでの2要素認証を有効にする"
@@ -4038,13 +4173,12 @@ msgstr "外部メディアを有効にする"
msgid "Enable media players for"
msgstr "有効にするメディアプレーヤー"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "プロフィールにアクセスして<0>ベルのアイコン0><1/>を押すことでアカウントの通知を有効にします。"
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "プッシュ通知を有効にする"
@@ -4091,8 +4225,8 @@ msgstr "パスワードを入力"
msgid "Enter a word or tag"
msgstr "ワードまたはタグを入力"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "コードを入力"
@@ -4143,7 +4277,7 @@ msgstr "フルスクリーンで表示"
msgid "Entertainment"
msgstr "エンターテインメント"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "エラー"
@@ -4185,23 +4319,23 @@ msgstr "誰でも返信可能"
msgid "Everybody can reply to this post."
msgstr "この投稿に全員が返信できる。"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "全員"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "全員"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "全員"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "他すべて"
@@ -4217,8 +4351,8 @@ msgstr "フォローしているユーザーは除外"
msgid "Exit fullscreen"
msgstr "全画面表示を終了"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "ALTテキストを展開"
@@ -4226,7 +4360,7 @@ msgstr "ALTテキストを展開"
msgid "Expand list of users"
msgstr "ユーザーリストを展開"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "返信する投稿全体を展開または折りたたむ"
@@ -4238,7 +4372,7 @@ msgstr "投稿のテキストを展開"
msgid "Expands or collapses post text"
msgstr "テキストを展開または折りたたむ"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "レコードを指すURIではありません"
@@ -4277,9 +4411,9 @@ msgstr "露骨な、または不愉快になる可能性のあるメディア。
msgid "Explicit sexual images."
msgstr "露骨な性的画像。"
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "検索"
@@ -4289,11 +4423,8 @@ msgstr "検索"
msgid "Explore the app"
msgstr "アプリを探索"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr "チャットデータをエクスポート"
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "自分のチャットデータをエクスポート"
@@ -4322,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "外部メディアの設定"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "チャットの受け入れに失敗しました"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr "参加リクエストを承認できませんでした"
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "絵文字リアクションを追加できませんでした"
@@ -4354,7 +4489,7 @@ msgstr "スターターパックへの追加に失敗しました"
msgid "Failed to change handle. Please try again."
msgstr "ハンドルの変更に失敗しました。もう一度試してください。"
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "リンクのコピーに失敗しました"
@@ -4367,7 +4502,7 @@ msgstr "アプリパスワードの作成に失敗しました。もう一度試
msgid "Failed to create conversation"
msgstr "会話の作成に失敗しました"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "招待リンクを作成できませんでした"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "チャットの承認に失敗しました"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "メッセージの削除に失敗しました"
@@ -4394,24 +4529,24 @@ msgstr "投稿の削除に失敗しました。もう一度お試しください
msgid "Failed to delete starter pack"
msgstr "スターターパックの削除に失敗しました"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "招待リンクを無効にできませんでした"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Germ DMの切断に失敗しました。エラー: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "グループチャット名の編集に失敗"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "招待リンクを編集できませんでした"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "招待リンクを有効にできませんでした"
@@ -4427,19 +4562,27 @@ msgstr "すべての友達をフォローできませんでした。もう一度
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "提案を非表示にできませんでした。インターネット接続を確認してください"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr "参加リクエストの無視に失敗しました"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr "グループチャットに参加できませんでした。もう一度やり直してください。"
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "SMSアプリの起動に失敗しました"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "グループチャットからの退出に失敗"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "会話の読み込みに失敗しました"
@@ -4456,17 +4599,8 @@ msgstr "フィードの読み込みに失敗しました"
msgid "Failed to load feeds preferences"
msgstr "フィードの設定の読み込みに失敗しました"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "通知設定の読み込みに失敗しました。"
@@ -4493,16 +4627,15 @@ msgstr "おすすめのフィードの読み込みに失敗しました"
msgid "Failed to load suggested follows"
msgstr "おすすめのフォローの読み込みに失敗しました"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "グループチャットのロックに失敗しました"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "すべての要求を既読としてマークできませんでした"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "グループチャットのミュートに失敗"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "投稿の固定に失敗しました"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Germ DMの再接続に失敗しました。エラー: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "データの削除に失敗しました。 {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "絵文字リアクションの削除に失敗しました"
@@ -4542,15 +4675,19 @@ msgstr "グループチャットからメンバーを外せませんでした"
msgid "Failed to remove verification"
msgstr "認証の削除に失敗しました"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr "リクエストを取り消すことができませんでした。もう一度やり直してください。"
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr "位置情報の調査に失敗しました。もう一度試してください。"
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "下書きの保存に失敗しました"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "画像の保存に失敗しました"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "「気になること」の保存に失敗しました。"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "メールの送信に失敗しました。後でもう一度お試しください。"
@@ -4580,7 +4717,7 @@ msgstr "レポートの送信に失敗しました"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "異議申し立ての送信に失敗しました。もう一度お試しください。"
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "スレッドのミュートの切り替えに失敗しました。もう一度お試しください"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr "グループチャットのロックを解除できませんでした"
@@ -4597,12 +4734,12 @@ msgstr "グループチャットのロックを解除できませんでした"
msgid "Failed to unpin list"
msgstr "リストのピン留めの解除に失敗しました"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "メールでの2要素認証の設定の更新に失敗しました"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "メールの更新に失敗しました。後でもう一度お試しください。"
@@ -4614,7 +4751,7 @@ msgstr "フィードの更新に失敗しました"
msgid "Failed to update notification declaration"
msgstr "通知受信制限の更新に失敗しました"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "設定の更新に失敗しました"
@@ -4641,7 +4778,7 @@ msgstr "偽のアカウントまたはボット"
msgid "False information about elections"
msgstr "選挙に関する誤った情報"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "フィード"
@@ -4649,7 +4786,7 @@ msgstr "フィード"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "{0}によるフィード"
@@ -4662,7 +4799,7 @@ msgstr "フィードの作者"
msgid "Feed identifier"
msgstr "フィードの識別子"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "フィードメニュー"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "フィードの運営者にフィードバックを送りました"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "フィード"
@@ -4739,7 +4876,7 @@ msgstr "言語で検索をフィルター(現在の設定:{currentLanguageLa
msgid "Filter who can opt to receive notifications for your activity"
msgstr "あなたのアクティビティの通知について、誰が受信できるのかフィルターを設定します"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "通知を受け取るユーザーをフィルターする"
@@ -4747,11 +4884,11 @@ msgstr "通知を受け取るユーザーをフィルターする"
msgid "Finalizing"
msgstr "最後に"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "ついに!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "ついに!気になる投稿を追いかけましょう。いつでも見返せるように保存。"
@@ -4768,8 +4905,8 @@ msgstr "ファイナンス"
msgid "Find accounts to follow"
msgstr "フォローするアカウントを探す"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "連絡先を見つける"
@@ -4799,7 +4936,7 @@ msgstr "フォローするユーザーを探す"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Blueskyの投稿、ユーザー、フィードを検索"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "友達を見つける"
@@ -4944,8 +5081,12 @@ msgstr "<0>{0}0>と<1>{1}1>がフォロー中"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "<0>{0}0>、<1>{1}1>および{2, plural, other {他#人}}がフォロー中"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr "フォロワーは参加できます"
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "あなたが知っている@{0}のフォロワー"
@@ -4995,19 +5136,16 @@ msgstr "{handle}をフォローしています"
msgid "Following feed preferences"
msgstr "Followingフィードの設定"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Followingフィードの設定"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "あなたをフォロー"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "あなたをフォロー"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "フォント"
@@ -5069,7 +5207,7 @@ msgstr "忘れた?"
msgid "Free your feed"
msgstr "フィードを解放しよう"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "通知対象"
@@ -5086,35 +5224,35 @@ msgstr "<0/>から"
msgid "Generate a starter pack"
msgstr "スターターパックを生成"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "招待リンクを生成"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "新しい招待リンクを生成"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "新しいリンクを生成"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germ DMは切断されています"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Germ DMのリンク"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germ DMに再接続"
@@ -5122,46 +5260,50 @@ msgstr "Germ DMに再接続"
msgid "Get help"
msgstr "ヘルプを表示"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr "スターターパックでの参加、認証、その他のアクティビティの通知を受け取る。"
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "フォローされたときに通知を受け取る。"
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "リポストした投稿をいいねされたら通知を受け取る。"
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "投稿をいいねされたら通知を受け取る。"
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr "リポストがいいねされたら通知を受け取る。"
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "メンションされたら通知を受け取る。"
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "投稿を引用されたら通知を受け取る。"
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "投稿に返信があったら通知を受け取る。"
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "リポストした投稿をリポストされたら通知を受け取る。"
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "投稿をリポストされたら通知を受け取る。"
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr "リポストがリポストされたら通知を受け取る。"
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr "購読している投稿にアクティビティがあれば通知を受け取る。"
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "新しい投稿の通知を受け取る"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "選択したアカウントの投稿と返信の通知を受け取る。"
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "{name} の新しい投稿の通知を受け取る"
@@ -5174,27 +5316,27 @@ msgstr "このアカウントのアクティビティの通知を受け取る"
msgid "Get notified when {name} posts"
msgstr "{name} が投稿した時に通知を受け取る"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "誰かが投稿したときに通知を受け取る"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "開始"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIFをアップロードしました"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "プロフィールに顔をつける"
@@ -5213,20 +5355,21 @@ msgstr "暴力の賛美"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "戻る"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "戻る"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "前のステップに戻る"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "ホームへ"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "ホームへ"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "ホームへ"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "アカウント設定へ移動"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "{0}との会話へ"
@@ -5299,12 +5440,12 @@ msgstr "次へ"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "プロフィールへ"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "\"{chatName} \"という名前のグループチャットに移動"
@@ -5320,8 +5461,8 @@ msgstr "ユーザーのプロフィールへ移動"
msgid "Going live is currently disabled for your account"
msgstr "ライブの開始はあなたのアカウントでは現在無効です"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "了解"
@@ -5340,59 +5481,75 @@ msgstr "露骨な暴力的コンテンツ"
msgid "Grooming or predatory behavior"
msgstr "グルーミングまたは捕食的行為(性的搾取目的の接近)"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr "グループチャット"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "グループチャット招待リンクのダイアログ"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "グループチャットをロックしました"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "グループチャットをミュートしました"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr "グループチャット名が更新されました"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "グループチャットの設定"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "グループチャットのロックを解除しました"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "グループチャットのミュートを解除しました"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr "グループチャットはまだ利用できません"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr "グループチャットが利用可能になりました"
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr "グループチャットの最大人数は{0, plural, other {#人}}です。"
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "グループはロックされています"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "グループ名"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "ハッキングまたはシステム攻撃"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "ハンドルが長すぎます。短いものをお試しください。"
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "現在ライブ中"
@@ -5446,7 +5603,7 @@ msgstr "有害または高リスクの活動"
msgid "Harming or endangering minors"
msgstr "未成年者への危害または危険行為"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "ハッシュタグ"
@@ -5458,8 +5615,8 @@ msgstr "ハッシュタグ {tag}"
msgid "Hate speech"
msgstr "ヘイトスピーチ"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "コードがありませんか?<0>ここをクリックしてください。0>"
@@ -5483,7 +5640,7 @@ msgstr "不正利用防止のため、Bluesky が7日間保持した後に削除
msgid "Help"
msgstr "ヘルプ"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "画像をアップロードするかアバターを作ってあなたがbotではないことをみんなに知らせましょう。"
@@ -5652,18 +5809,18 @@ msgstr "このデータの読み込みに問題があるようです。詳細は
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "そのモデレーションサービスを読み込めませんでした。"
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "待って!徐々にビデオへのアクセスを許可していますが、あなたの順番はまだです。しばらくしてもう一度確認を!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "ちょっとお待ちください!この機能はまだご利用いただけません。あとでお試しください。"
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "ホーム"
@@ -5721,7 +5878,7 @@ msgstr "理解した"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "私は {0} としてBlueskyにいます。私を見つけて! https://bsky.app/download"
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "ALTテキストが長い場合、ALTテキストの展開状態を切り替える"
@@ -5757,7 +5914,7 @@ msgstr "このリストを削除すると、復元できなくなります。"
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "自分のドメインを持っていれば、ハンドルとして利用できます。これによりあなたのアイデンティティを自己証明できます。<0>詳しくはこちら。0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "メールを更新する必要がある場合は、<0>ここ0>をクリックしてください。"
@@ -5765,7 +5922,7 @@ msgstr "メールを更新する必要がある場合は、<0>ここ0>をク
msgid "If you remove this post, you won't be able to recover it."
msgstr "この投稿を削除すると、復元できなくなります。"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "メールアドレスを更新すると、メールでの2要素認証は無効になります。"
@@ -5773,7 +5930,6 @@ msgstr "メールアドレスを更新すると、メールでの2要素認証
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "パスワードを変更する場合は、あなたのアカウントであることを確認するためのコードをお送りします。"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "あなたのアクティビティの通知を受信できるユーザーを制限したい場合は、<0>設定 → プライバシーとセキュリティ0>で変更できます。"
@@ -5786,23 +5942,33 @@ msgstr "あなたが開発者ならば、自分でサーバーをホストでき
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "ハンドルやメールアドレスを変えるのであれば、無効化の前に変更してください。"
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr "無視"
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr "参加リクエストを無視"
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "画像"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "画像 {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "画像 {0} / {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "画像 {0} / {imageCount}"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "画像のキャッシュをクリアし、 {0} が解放されました"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "画像ギャラリー、 {0}枚の画像"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "モデレーションの設定により画像は非表示になっています。"
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "画像は利用できません。"
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "画像オプション"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "なりすまし"
msgid "Import contacts"
msgstr "連絡先をインポート"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "連絡先をインポート"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "連絡先をインポートして友達を見つける"
@@ -5881,40 +6047,40 @@ msgstr "{0}に読み込みました"
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 "年齢に応じた体験を提供するために、あなたの生年月日を知る必要があります。これは一回限りのことであり、あなたのデータはプライベートに保たれます。"
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "アプリ内"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "アプリ内通知"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr "アプリ内、全員"
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr "アプリ内、フォロー中の人"
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr "アプリ内、プッシュ"
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr "アプリ内、プッシュ、全員"
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr "アプリ内、プッシュ、フォロー中の人"
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "受信トレイが空です"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "受信トレイが空です!"
@@ -5963,6 +6129,10 @@ msgstr "保存済投稿、いわゆるブックマークを紹介します"
msgid "Invalid 2FA confirmation code."
msgstr "無効な2要素認証の確認コードです。"
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr "グループチャットコードが無効です。"
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "無効なハンドルです。他のものを試してください。"
@@ -5977,10 +6147,14 @@ msgstr "無効な反応関連の設定。"
msgid "Invalid phone number"
msgstr "無効な電話番号"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "報告の件名が無効です"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr "無効な取消リクエストです。"
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "無効な確認コード"
@@ -6010,12 +6184,12 @@ msgstr "友達を招待"
msgid "Invite friends <0/>"
msgstr "友達を招待 <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "招待リンク"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "招待リンクを作成しました"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "招待リンクが無効になりました"
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "今はあなただけ!上で検索してスターターパックにより多くのユーザーを追加してください。"
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ジョブID:{0}"
@@ -6083,6 +6257,11 @@ msgstr "ジョブID:{0}"
msgid "Jobs"
msgstr "仕事"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr "参加"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "仕事"
msgid "Join Bluesky"
msgstr "Blueskyに参加"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr "グループチャットに参加"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr "参加リクエストが取り消されました。"
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "会話に参加"
msgid "Journalism"
msgstr "報道"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "編集を続ける"
@@ -6143,7 +6331,7 @@ msgstr "あなたのアカウントのラベル"
msgid "Labels on your content"
msgstr "あなたのコンテンツのラベル"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "言語の設定"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "最新"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "この警告の詳細"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Blueskyの認証についてもっと詳しく(英語)"
@@ -6239,7 +6427,7 @@ msgstr "Blueskyの認証についてもっと詳しく(英語)"
msgid "Learn more about what is public on Bluesky."
msgstr "Blueskyで公開されている内容はこちらを参照してください。"
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Germ DMのリンクについての詳細"
@@ -6252,8 +6440,8 @@ msgstr "<0>アカウント設定で詳細を確認する。0>"
msgid "Learn more."
msgstr "詳細。"
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "退出"
@@ -6276,7 +6464,7 @@ msgstr "チャットを退出"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "会話を退出"
@@ -6284,13 +6472,13 @@ msgstr "会話を退出"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "会話を退出"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "グループチャットを退出"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr "このグループチャットから退出する"
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "ライト"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "いいねする({0, plural, other {#件のいいね}})"
@@ -6346,11 +6534,7 @@ msgstr "10投稿をいいね"
msgid "Like 10 posts to train the Discover feed"
msgstr "Discoverフィードを訓練するために10投稿をいいねする"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "いいねの通知"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "このフィードをいいね"
@@ -6358,8 +6542,8 @@ msgstr "このフィードをいいね"
msgid "Like this labeler"
msgstr "このラベラーをいいね"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "いいねしたユーザー"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "{0, plural, other {#人のユーザー}}がいいね"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "{likeCount, plural, other {#人のユーザー}}がいいね"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "いいね"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "リポストへのいいね"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "リポストへのいいねの通知"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "この投稿をいいねする"
@@ -6409,11 +6589,11 @@ msgstr "この投稿をいいねする"
msgid "Linear"
msgstr "リニア"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "リンクをクリップボードにコピーしました"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "リスト"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "リストのミュートを解除しました"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "リスト"
@@ -6545,7 +6725,7 @@ msgstr "ライブイベントの非表示を解除"
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "ライブ機能はベータ版です"
@@ -6595,27 +6775,27 @@ msgstr "投稿への反応の設定を読み込み中…"
msgid "Loading..."
msgstr "読み込み中…"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "ロック"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "グループチャットをロック"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "グループチャットをロックしますか?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "このグループチャットをロック"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "ロック中"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "ログ"
@@ -6662,7 +6842,7 @@ msgstr "Followingフィードを消したようです。<0>ここをクリック
msgid "Love GIFs"
msgstr "愛のGIF"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "アカウントのメール設定を調整する"
@@ -6687,9 +6867,8 @@ msgstr "認証設定の管理"
msgid "Manage your muted words and tags"
msgstr "ミュートしたワードとタグの管理"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "すべて既読にする"
@@ -6698,13 +6877,12 @@ msgstr "すべて既読にする"
msgid "Mark as read"
msgstr "既読にする"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "すべて既読にしました"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "後で"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "一部の閲覧者にとっては困惑する、あるいは不適切なメディアです。"
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "メンバー"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "メンバーはまだチャット履歴を読むことができますが、新しいメッセージを送信することはできません。"
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "メンションの通知"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "メンションされたユーザー"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "メンション"
@@ -6775,22 +6949,22 @@ msgstr "{0}へメッセージを送る"
msgid "Message {displayName}"
msgstr "{displayName}にメッセージ"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "メッセージは削除されました"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "メッセージは削除されました"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "メッセージを送信できませんでした。"
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "@{0}からのメッセージ:{1}"
@@ -6813,19 +6987,19 @@ msgstr "メッセージが長すぎます"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "メッセージが長すぎます({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "メッセージのオプション"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "メッセージ"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr "このユーザーからのメッセージはあなたをブロック中は非表示です。"
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr "このユーザーからのメッセージはあなたがブロック中は非表示です。"
@@ -6838,10 +7012,6 @@ msgstr "ミッドナイト"
msgid "Minor harassment or bullying"
msgstr "未成年者への嫌がらせまたはいじめ"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "その他の通知"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "誤解を招くこと"
@@ -6850,7 +7020,7 @@ msgstr "誤解を招くこと"
msgid "Missing media"
msgstr "メディアが見つかりません"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "モデレーション"
@@ -6894,7 +7064,7 @@ msgstr "モデレーションリストを更新しました"
msgid "Moderation lists"
msgstr "モデレーションリスト"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "モデレーションリスト"
@@ -6903,7 +7073,7 @@ msgstr "モデレーションリスト"
msgid "moderation settings"
msgstr "モデレーションの設定"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "モデレーションのステータス"
@@ -6949,7 +7119,7 @@ msgstr "映画"
msgid "Music"
msgstr "音楽"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "ミュート"
@@ -6994,7 +7164,7 @@ msgstr "リストをミュート"
msgid "Mute these accounts?"
msgstr "これらのアカウントをミュートしますか?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "このグループチャットをミュート"
@@ -7032,7 +7202,7 @@ msgstr "スレッドをミュート"
msgid "Mute words & tags"
msgstr "ワードとタグをミュート"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "ミュート済み"
@@ -7040,7 +7210,7 @@ msgstr "ミュート済み"
msgid "Muted accounts"
msgstr "ミュート中のアカウント"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "ミュート中のアカウント"
@@ -7108,8 +7278,8 @@ msgstr "次の画面に移動します"
msgid "Navigates to your profile"
msgstr "あなたのプロフィールに移動します"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "著作権侵害、法的要求、または規制遵守の問題を報告する必要がありますか?"
@@ -7136,34 +7306,34 @@ msgstr "{firstAuthorLink}からの新しい{postsCount, plural, other {投稿}}"
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{firstAuthorName}からの新しい{postsCount, plural, other {投稿}}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "新しいチャット"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "{0}との新しいチャット"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "{0}や{1}との新しいチャット"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "{0}、{1}、そして{memberCount, plural, other {さらに{memberCount}人}}との新しいチャット。"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "新しいメールアドレス"
@@ -7174,29 +7344,25 @@ msgstr "新しいメールアドレス"
msgid "New Feature"
msgstr "新機能"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "新しいフォロワーの通知"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "新しいフォロワー"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "新しいグループチャット"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "新しいグループチャット"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "新しいグループチャット:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "新しい投稿"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "新しい投稿"
@@ -7262,8 +7428,8 @@ msgstr "ニュース"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "「{query}」のGIFが見つかりません。"
msgid "No GIFs to show right now. Try again in a moment."
msgstr "現在表示するGIFがありません。しばらくしてからもう一度お試しください。"
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "画像なし"
@@ -7362,7 +7528,7 @@ msgstr "{0}のフォローを解除しました"
msgid "No media yet"
msgstr "まだメディアがありません"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "メッセージはありません"
@@ -7378,12 +7544,12 @@ msgstr "名前なし"
msgid "No notifications yet!"
msgstr "お知らせはありません!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "誰からも受け取らない"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "誰からも受け取らない"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "結果はありません"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "結果はありません"
@@ -7509,10 +7675,6 @@ msgstr "同意のない親密画像(NCII)"
msgid "Non-sexual Nudity"
msgstr "性的ではないヌード"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "なし"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "このプラットフォームでは利用できません。"
msgid "Not followed by anyone you’re following"
msgstr "あなたがフォローしている誰からもフォローされていません"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "見つかりません"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "投稿をポストする準備ができていませんか?ちょうど良いタイミングとなるまで、あなたの最高のアイデアを下書きに保存しておきましょう。"
@@ -7548,44 +7710,31 @@ msgstr "注:この投稿はログイン中のユーザーにのみ表示され
msgid "Nothing saved yet"
msgstr "まだ何も保存されていません"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "通知設定"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "通知音"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "通知"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "誰かがあなたのスターターパックを経由して参加した等、その他のすべての通知。"
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "今"
@@ -7601,7 +7750,7 @@ msgstr "電話番号は携帯の電話番号でなければなりません"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "オフ"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "オンボーディングのリセット"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
-msgstr ""
+msgstr "選択した受信者のいずれかがグループチャットを許可していません。"
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
-msgstr ""
+msgstr "選択した受信者のいずれかがあなたをブロックしていてメッセージを送れません。"
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "1つもしくは複数のGIFにALTテキストがありません。"
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "1つもしくは複数の画像にALTテキストがありません。"
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr "選択したファイルの 1つ以上がサポートされていません。"
-#: 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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr "選択したファイルの1つ以上が大きすぎます。最大サイズは {VIDEO_MAX_SIZE_MB}MBです。"
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "一つ以上の投稿が下書きとしては長すぎます。{MAX_DRAFT_GRAPHEME_LENGTH, plural,other {最大で#文字です。}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "1つもしくは複数のビデオにALTテキストがありません。"
@@ -7685,6 +7835,26 @@ msgstr "1つもしくは複数のビデオにALTテキストがありません
msgid "Only {0} can reply."
msgstr "{0}のみ返信可能。"
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr "{1}枚の{2, plural, other {画像}}中{0}枚のみを追加しました。最大で{MAX_GALLERY_IMAGES}枚です"
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr "管理者のみが参加リクエストを受け付けることができます。"
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr "管理者のみが参加リクエストを無視できます。"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr "このグループチャットに参加できるのはフォロワーのみです。"
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "フォロー中のフォロワーのみ"
msgid "Only image files are supported"
msgstr "画像ファイルのみに対応しています"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr "{0}がフォローしているユーザーだけが参加できます。"
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr "チャットのオーナーがフォローしているユーザーだけが参加できます"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "WebVTT(.vtt)ファイルのみに対応しています"
@@ -7712,7 +7892,7 @@ msgstr "おっと、何らかの問題が発生したようです!"
msgid "Oops!"
msgstr "おっと!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "アバター・クリエイターを開く"
@@ -7720,12 +7900,17 @@ msgstr "アバター・クリエイターを開く"
msgid "Open camera"
msgstr "カメラを起動"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr "チャットを開く"
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "{displayName}のチャットメンバーオプションを開く"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "会話のオプションを開く"
@@ -7739,16 +7924,16 @@ msgstr "引き出しメニューを開く"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "絵文字を入力"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "フィードを画面で開く"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "フィードの設定メニューを開く"
@@ -7760,13 +7945,17 @@ msgstr "全絵文字リストを開く"
msgid "Open Germ DM"
msgstr "Germ DMを開く"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr "グループチャットを開く"
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "グループチャットの設定を開く"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "{niceUrl}へのリンクを開く"
@@ -7790,8 +7979,8 @@ msgstr "パックを開く"
msgid "Open post options menu"
msgstr "投稿のオプションを開く"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "プロフィールを開く"
@@ -7817,6 +8006,10 @@ msgstr "絵本のページを開く"
msgid "Open system log"
msgstr "システムのログを開く"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr "このグループチャットを開く"
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "デバッグエントリーの追加詳細を開く"
msgid "Opens alt text dialog"
msgstr "ALTテキストのダイアログを開く"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "デバイスのカメラを開く"
@@ -7858,22 +8051,24 @@ msgstr "編集画面を開く"
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: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つを選択します。"
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr "デバイスのギャラリーを開いて最大{MAX_GALLERY_IMAGES, plural, other {#枚の画像}}、あるいは動画またはGIFを1つを選択します。"
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "新しいBlueskyのアカウントを作成するフローを開く"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "既存のBlueskyアカウントにサインインする画面を開きます"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "画像全体を表示"
@@ -7890,7 +8085,7 @@ msgstr "画像選択を開く"
msgid "Opens link {0}"
msgstr "リンク{0}を開く"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "ライブステータスのダイアログを開く"
@@ -7919,9 +8114,9 @@ msgstr "投稿作成画面を開く"
msgid "Opens this draft in the composer"
msgstr "この下書きを編集画面で開く"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "プロフィールを開く"
@@ -7997,12 +8192,12 @@ msgstr "私たちのブログの記事"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "あなたの報告をモデレーションチームが受け付けました。"
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "モデレーターが報告をレビューし、Blueskyであなたがチャットにアクセスできないようにしました。"
@@ -8010,16 +8205,17 @@ msgstr "モデレーターが報告をレビューし、Blueskyであなたが
msgid "Owner"
msgstr "オーナー"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "ページが見つかりません"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "ページが見つかりません"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "ビデオを一時停止"
msgid "People"
msgstr "ユーザー"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "{ownerName}がフォロー中の人は即座に参加できます"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "{ownerName}がフォロー中の人は参加をリクエストできます"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "@{0}がフォロー中のユーザー"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "@{0}をフォロー中のユーザー"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "フォロー中の人"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "フォロー中の人はすぐに参加できます"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "フォロー中の人は参加をリクエストできます"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "成人向けの画像です。"
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "フィードをピン留め"
@@ -8152,7 +8348,7 @@ msgstr "フィードをピン留め"
msgid "Pin to home"
msgstr "ホームにピン留め"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "ホームにピン留め"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "固定"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0}をホームにピン留めしました"
@@ -8236,7 +8432,7 @@ msgstr "ハンドルをお選びください。"
msgid "Please choose your password."
msgstr "パスワードを選択してください。"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "新しいメールアドレスを確認するために送信したメールのリンクをクリックしてください。 これは、Blueskyのすべての機能を楽しみ続けるための重要なステップです。"
@@ -8244,7 +8440,7 @@ msgstr "新しいメールアドレスを確認するために送信したメー
msgid "Please complete the verification captcha."
msgstr "CAPTCHA認証を完了してください。"
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "動画をアップロードするにはメールアドレスの確認をしてください。"
@@ -8265,14 +8461,14 @@ msgstr "パスワードを入力してください。8 文字以上である必
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "このアプリパスワードに固有の名前を入力するか、ランダムに生成された名前を使用してください。"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "有効なコードを入力してください。"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "有効な形式のメールアドレスを入力してください。"
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "一時的ではない有効なメールアドレスを入力してください。今後このメールアドレスにアクセスする必要があるかもしれません。"
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "以下の<0>{0}0>に送信したコードを入力してください。"
@@ -8293,7 +8489,7 @@ msgstr "以下の<0>{0}0>に送信したコードを入力してください
msgid "Please enter the code you received and the new password you would like to use."
msgstr "受け取ったコードと、使用したい新しいパスワードを入力してください。"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "前のメールアドレスに送ったセキュリティコードを入力してください。"
@@ -8306,7 +8502,7 @@ msgstr "メールアドレスを入力してください。"
msgid "Please enter your invite code."
msgstr "招待コードを入力してください。"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "新しいメールアドレスを入力してください。"
@@ -8323,7 +8519,7 @@ msgstr "ユーザー名を入力してください"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "{0}によって適用されたこのラベルが誤りであると思われる理由を説明してください"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "チャットが間違って無効化されたと考える理由を説明してください"
@@ -8366,7 +8562,7 @@ msgstr "連絡先を読み込むには、ネイティブアプリを使用して
msgid "Please use the native app to sync your contacts."
msgstr "連絡先を同期するためにネイティブアプリを使用してください。"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "メールアドレスを確認してください"
@@ -8383,7 +8579,7 @@ msgstr "政治"
msgid "Porn"
msgstr "ポルノ"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "投稿"
@@ -8403,12 +8599,12 @@ msgstr "写真を投稿"
msgid "Post a video"
msgstr "ビデオを投稿"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "すべてポスト"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "とにかく投稿する"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "ブロックされた投稿"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "@{0}による投稿"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "投稿を削除しました"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "投稿のアップロードに失敗しました。インターネット接続を確認し、再度試してください。"
@@ -8454,7 +8650,7 @@ msgstr "あなたが非表示にした投稿"
msgid "Post interaction settings"
msgstr "投稿への反応の設定"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "投稿への反応の設定"
@@ -8464,8 +8660,8 @@ msgstr "投稿への反応の設定"
msgid "Post language selection"
msgstr "投稿言語を選択"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "リンクを投稿"
@@ -8491,7 +8687,6 @@ msgstr "投稿の固定を解除しました"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "投稿はテキスト、タグ、またはその両方に基づいてミ
msgid "Posts hidden"
msgstr "非表示の投稿"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "投稿、返信"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "誤解を招く可能性のあるリンク"
@@ -8528,6 +8719,7 @@ msgstr "再接続してみる"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "再実行する"
@@ -8536,7 +8728,7 @@ msgstr "再実行する"
msgid "Press to view followers of this account that you also follow"
msgstr "あなたもフォローしているこのアカウントのフォロワーを見る"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "プレビュー"
@@ -8559,21 +8751,20 @@ msgstr "プライバシー"
msgid "Privacy and security"
msgstr "プライバシーとセキュリティ"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "プライバシーとセキュリティ"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "プライバシーとセキュリティの設定"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "プライバシーポリシー"
msgid "Privacy violation of a minor"
msgstr "未成年者のプライバシー侵害"
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "GIFを処理しています…"
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "ビデオを処理中…"
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "処理中…"
@@ -8602,8 +8793,8 @@ msgstr "処理中…"
msgid "profile"
msgstr "プロフィール"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "投稿を公開"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "投稿を公開"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "返信を公開"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "返信を公開"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "プッシュ"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "プッシュ通知"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr "プッシュ、全員"
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr "プッシュ、フォロー中の人"
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "QRコードをダウンロードしました!"
msgid "QR code saved to your camera roll!"
msgstr "QRコードをカメラロールに保存しました!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "引用の通知"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "引用投稿は無効です"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "引用"
@@ -8733,11 +8920,11 @@ msgstr "レート制限を超えました。後でもう一度お試しくださ
msgid "Re-attach quote"
msgstr "引用を再度関連付ける"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "招待リンクを再度有効化"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "リンクを再度有効化"
@@ -8745,8 +8932,8 @@ msgstr "リンクを再度有効化"
msgid "React with {emoji}"
msgstr "{emoji}でリアクションする"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "反応"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "検索フィルタの使い方を読む"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "ブログ記事を読む"
@@ -8812,11 +8999,11 @@ msgstr "リアルな人々。"
msgid "Reason for appeal"
msgstr "異議申し立ての理由"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "アプリ内通知を受け取る"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "プッシュ通知を受け取る"
@@ -8841,6 +9028,10 @@ msgstr "おすすめ"
msgid "Reconnect"
msgstr "再接続"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr "表示するいはページを更新してください。"
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "拒否"
msgid "Reject chat request"
msgstr "チャットのリクエストを拒否する"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "会話を再読み込み"
@@ -8896,17 +9087,17 @@ msgstr "アカウント切替リストから取り除く"
msgid "Remove all contacts"
msgstr "すべての連絡先を削除"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "添付を削除"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "アバターを削除"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "バナーを削除"
@@ -8914,8 +9105,9 @@ msgstr "バナーを削除"
msgid "Remove caption file"
msgstr "キャプションファイルを削除"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "埋め込みを削除"
@@ -8933,8 +9125,8 @@ msgstr "フィードを削除しますか?"
msgid "Remove from chat"
msgstr "チャットから削除"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "保存済投稿から削除"
msgid "Remove from your feeds?"
msgstr "フィードから削除しますか?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "イメージを削除"
@@ -9009,11 +9201,11 @@ msgstr "認証を削除"
msgid "Remove your verification for this account?"
msgstr "このアカウントの認証を削除しますか?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "投稿者が削除しました"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "あなたが削除しました"
@@ -9035,7 +9227,7 @@ msgstr "保存済投稿から削除しました"
msgid "Removed from starter pack"
msgstr "スターターパックから削除しました"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "あなたへの返信"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "返信"
@@ -9104,14 +9295,14 @@ msgstr "返信できません"
msgid "Replies to this post are disabled."
msgstr "この投稿への返信は無効化されています。"
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "返信"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "返信する({0, plural, other {#件の返信}})"
@@ -9125,10 +9316,6 @@ msgstr "返信はスレッドの投稿者によって非表示に"
msgid "Reply Hidden by You"
msgstr "返信はあなたによって非表示に"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "返信の通知"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "返信の設定はスレッドの投稿者によって選択されています"
@@ -9146,9 +9333,9 @@ msgstr "返信の表示設定を更新しました"
msgid "Reply was successfully hidden"
msgstr "返信を非表示にすることができました"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "報告"
@@ -9164,13 +9351,13 @@ msgstr "アカウントを報告"
msgid "Report conversation"
msgstr "会話を報告"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "報告ダイアログ"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "フィードを報告"
@@ -9179,7 +9366,7 @@ msgstr "フィードを報告"
msgid "Report list"
msgstr "リストを報告"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "メッセージを報告"
@@ -9199,8 +9386,8 @@ msgstr "スターターパックを報告"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "報告を送信しました"
@@ -9213,7 +9400,7 @@ msgstr "この会話を報告"
msgid "Report this feed"
msgstr "このフィードを報告"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "このグループチャットを報告"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "このリストを報告"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "このライブ配信を報告する"
@@ -9256,10 +9443,6 @@ msgstr "リポスト"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "リポストする({0, plural, other {#件のリポスト}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "リポストの通知"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "あなたのリポスト"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "リポスト"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "この投稿をリポストする"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "リポストのリポスト"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "リポストのリポストの通知"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr "グループチャットへのアクセスをリクエスト"
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr "リクエストが承認されました。"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "コードをリクエスト"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr "リクエストは無視されました。"
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr "参加リクエスト"
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr "リクエスト済"
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "リクエスト"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr "参加リクエスト"
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "画像投稿時にALTテキストを必須とする"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "アカウントにサインインするにはメールの確認コードが必要です。"
@@ -9328,7 +9534,11 @@ msgstr "このプロバイダーに必要"
msgid "Required in your region"
msgstr "あなたの地域では必要"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr "リクエストの取消"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "再送する"
@@ -9393,15 +9603,16 @@ msgstr "エラーになった最後のアクションをやり直す"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "エラーになった最後のアクションをやり直す"
msgid "Retry"
msgstr "再試行"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "報告オプションの読み込みを再試行する"
@@ -9426,14 +9637,14 @@ msgstr "報告オプションの読み込みを再試行する"
msgid "Return to previous page"
msgstr "前のページに戻る"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "ホームページに戻る"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "前のページに戻る"
@@ -9454,7 +9665,7 @@ msgstr "悲しいGIF"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "生年月日を保存"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "変更を保存"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "変更を保存しますか?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "下書きを保存"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "下書きを保存しますか?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "QRコードを保存"
msgid "Save these options for next time"
msgstr "これらのオプションを次回のために保存する"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "マイフィードに保存"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "保存済"
msgid "Saved Feeds"
msgstr "保存されたフィード"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "保存済投稿"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "フィードを保存しました"
@@ -9551,8 +9764,8 @@ msgstr "フィードを保存しました"
msgid "Say hello!"
msgstr "よろしく!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "誰かに挨拶してみよう"
@@ -9576,18 +9789,18 @@ msgstr "右にスクロール"
msgid "Scroll to top"
msgstr "一番上までスクロール"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "検索"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "@{0}の投稿を検索"
@@ -9667,7 +9880,7 @@ msgstr "自分の投稿を検索"
msgid "Search posts"
msgstr "投稿を検索"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "プロフィールを検索"
msgid "Search..."
msgstr "検索…"
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "プロフィールを検索"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "セキュリティのステップが必要"
@@ -9759,7 +9972,7 @@ msgstr "{langName}を選択"
msgid "Select a color"
msgstr "色を選択"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "理由を選択"
@@ -9828,7 +10041,7 @@ msgstr "GIFを選ぶ"
msgid "Select GIF \"{0}\""
msgstr "GIF「{0}」を選ぶ"
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "グループチャットのメンバーを選択"
@@ -9850,7 +10063,7 @@ msgstr "言語を選択…"
msgid "Select languages"
msgstr "言語を選択"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "モデレーションサービスを選択"
@@ -9904,11 +10117,11 @@ msgstr "次のオプションから興味のあるものを選択してくださ
msgid "Select your preferred language for translations in your feed."
msgstr "フィード内の翻訳に使用する言語を選択します。"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "お好みの通知チャンネルを選択してください"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "複数のメディアタイプの選択はサポートされていません。"
@@ -9921,9 +10134,9 @@ msgstr "自傷または危険行為"
msgid "Send code"
msgstr "コードを送信"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "メールを送信"
@@ -9939,7 +10152,7 @@ msgstr "エラーレポートを送信"
msgid "Send feedback"
msgstr "フィードバックを送信"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "メッセージを送信"
@@ -9952,7 +10165,7 @@ msgstr "投稿を {name} に送る"
msgid "Send post to..."
msgstr "投稿を送る…"
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "{title}に報告を送信"
@@ -9960,7 +10173,7 @@ msgstr "{title}に報告を送信"
msgid "Send the message from your phone"
msgstr "携帯電話からメッセージを送信する"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "ダイレクトメッセージで送信"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "{0}に送信しました"
@@ -10015,14 +10228,14 @@ msgstr "下記に生年月日を設定すると、すぐに投稿や閲覧に戻
msgid "Sets email for password reset"
msgstr "パスワードをリセットするためのメールアドレスを入力"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "設定"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "他のユーザーのアクティビティの通知の設定"
@@ -10030,39 +10243,39 @@ msgstr "他のユーザーのアクティビティの通知の設定"
msgid "Settings for allowing others to be notified of your posts"
msgstr "あなたの投稿の通知を他のユーザーが受け取るのを許可する設定"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "いいねの通知の設定"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "メンションの通知の設定"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "新しいフォロワーの通知の設定"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "その他すべての通知の設定"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "リポストへのいいねの通知の設定"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "リポストのリポストの通知の設定"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "引用の通知の設定"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "返信の通知の設定"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "リポストの通知の設定"
@@ -10079,10 +10292,12 @@ msgstr "性的行為または性的なヌード。"
msgid "Sexually Suggestive"
msgstr "性的にきわどい"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "著者DIDを共有"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "画像を共有"
@@ -10124,7 +10339,7 @@ msgstr "投稿のat:// URIをコピー"
msgid "Share QR code"
msgstr "QRコードを共有"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "このフィードを共有"
@@ -10151,7 +10366,7 @@ msgstr "共有…"
msgid "Share your contacts to find friends"
msgstr "連絡先を共有して友達を見つける"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Shared Preferencesのテスター"
@@ -10167,16 +10382,16 @@ msgstr "ALTテキストを表示"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "とにかく表示"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "自動化ラベルを表示"
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "警告の表示とフィードからのフィルタリング"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "ライブ状態を表示"
@@ -10297,15 +10512,17 @@ msgstr "コンテンツを表示"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "サインインまたはアカウントを作成"
msgid "Sign in or create your account to join the conversation!"
msgstr "会話に参加するにはサインインするか新しくアカウントを登録してください!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr "サインインして招待を受け入れる。"
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "リストにないアカウントにサインイン"
@@ -10337,6 +10558,10 @@ msgstr "リストにないアカウントにサインイン"
msgid "Sign in to Bluesky or create a new account"
msgstr "Blueskyにサインイン または 新規アカウントの登録"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr "サインインしてこのグループチャットへの参加をリクエストする。"
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "サインインして投稿を表示"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "サインアウト"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "サインアウト"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "サインアウトしますか?"
@@ -10391,7 +10616,7 @@ msgstr "スキップ"
msgid "Skip contact sharing and continue to the app"
msgstr "連絡先の共有をスキップしてアプリに進む"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "空の投稿をスキップしますか?"
@@ -10405,7 +10630,7 @@ msgstr "チュートリアルをスキップしてアカウントの使用を開
msgid "Skip to next step"
msgstr "次のステップへスキップ"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "スライド"
@@ -10413,7 +10638,7 @@ msgstr "スライド"
msgid "Smaller"
msgstr "小さい"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "リマインダーをスヌーズ"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "誰かがグループから退出しました"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "誰かが{0}とリアクションしました"
@@ -10487,17 +10712,22 @@ msgstr "誰かが削除されました"
msgid "Someone was removed from the group"
msgstr "誰かがグループから外されました"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr "何か新しいものがここにあります"
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "報告しようとしているデータに問題がありました。サポートに連絡してください。"
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "何らかの問題が発生したようです"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "何らかの問題が発生したようです!"
msgid "Something went wrong. Please try again in a moment."
msgstr "問題が発生しました。しばらくしてからもう一度お試しください。"
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "問題が発生しました。もう一度お試しください。"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "何か問題がありますか?お知らせください。"
@@ -10568,7 +10798,7 @@ msgstr "スポーツ"
msgid "Start a conversation, and it will appear here."
msgstr "会話を開始すると、ここに表示されます。"
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "新しいチャットを開始"
@@ -10582,17 +10812,17 @@ msgstr "ユーザーを追加する"
msgid "Start adding people!"
msgstr "ユーザーを追加して!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "チャットを開始"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "{displayName}とのチャットを開始"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "スターターパック"
@@ -10654,12 +10884,12 @@ msgstr "ストレージがクリアされたため、今すぐアプリを再起
msgid "Stored as part of a secure code for matching with others"
msgstr "他のユーザーとのマッチングのため、セキュアなコードの一部として保存されます"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "ストーリーブック"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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で配信中ですか?Blueskyのライブステータスを設定して、アバターにバッジを追加しましょう。タップすると、あなたのストリームに直接ユーザーがアクセスできます。"
@@ -10671,8 +10901,8 @@ msgstr "Twitchで配信中ですか?Blueskyのライブステータスを設
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "送信"
@@ -10684,9 +10914,9 @@ msgstr "異議申し立てを送信"
msgid "Submit Appeal"
msgstr "異議申し立てを送信"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "報告を送信"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "登録"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr "{0}を購読"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr "{0}の{publicationTitle}を購読"
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "成功"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "成功!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr "グループチャットに参加できました!"
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "正常に認証されました"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "おすすめ"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "サンセット"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,20 +11014,20 @@ msgstr "サポート"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "お住まいの国ではこの機能がサポートされていません!後でもう一度確認してください。"
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
-msgstr ""
+msgstr "停止中のアカウントはグループチャットに参加できません。"
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
-msgstr ""
+msgstr "停止中のアカウントはチャットに参加できません。"
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "アカウントを切り替える"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "アカウントを切り替える"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "{0}へ切り替える"
@@ -10828,7 +11062,7 @@ msgstr "タグのみ"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "下をタップするとBlueskyがGPSの位置情報にアクセスできるようになります。 その後、そのデータを使用して、お住まいの地域で利用可能なコンテンツと機能をより正確に決定します。"
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr "タップして詳細を表示"
@@ -10854,33 +11088,51 @@ msgstr "タップして、これらの更新を理解して同意し、Bluesky
msgid "Tap to close context menu"
msgstr "タップしてコンテキストメニューを閉じる"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr "タップしてこの招待リンクをコピー"
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "タップして消す"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr "タップしてすぐにこのグループチャットに参加する"
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr "タップしてこのグループチャットを開く"
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "タップして削除"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "タップしてリアクション{0}を削除"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr "タップしてこのグループチャットへの参加をリクエストします"
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "タップして再試行"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "タップして{0}のリアクションを表示"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "タップしてすべてのリアクションを表示"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "タップしてリアクションを表示"
@@ -10924,7 +11176,7 @@ msgstr "規約"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "テキストとタグ"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "テキストの入力フィールド"
@@ -11049,6 +11301,11 @@ msgstr "新しい投稿を作成する場合、以下の設定がデフォルト
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "あなたの地域の法律では、特定の機能にアクセスするにはあなたが成人であることを確認する必要があります。詳細はタップしてください。"
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr "メンバーの上限に達しました。"
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "返信した投稿は、作成者によって {suggestedLanguageName}で書かれていると設定されています。<0>{suggestedLanguageName}0>で返信しますか?"
@@ -11057,10 +11314,10 @@ msgstr "返信した投稿は、作成者によって {suggestedLanguageName}で
msgid "The Privacy Policy has been moved to <0/>"
msgstr "プライバシーポリシーは<0/>に移動しました"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
-msgstr "選択したビデオが {videoSize} MBより大きいです。小さいファイルでもう一度やり直してください。"
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
+msgstr "選択したビデオが{VIDEO_MAX_SIZE_MB} MBより大きいです。小さいファイルでもう一度やり直してください。"
#: src/lib/hooks/useCleanError.ts:41
#: src/lib/strings/errors.ts:19
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "このグループチャットの招待リンクはありません。"
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "GIF の読み込み中に問題が発生しました。接続を確認して、もう一度やり直してください。"
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "インターネット接続に問題が発生しました。もう一度やり直してください"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "インターネット接続に問題が発生しました。もう一度
msgid "There was an issue contacting the server"
msgstr "サーバーへの問い合わせ中に問題が発生しました"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "サーバーへの問い合わせ中に問題が発生したので、インターネットへの接続を確認の上、もう一度試してください。"
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "通知の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。"
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "投稿の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。"
@@ -11161,7 +11420,7 @@ msgstr "サービス情報の取得中に問題が発生しました"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "フィードの削除中に問題が発生しました。インターネットへの接続を確認の上、もう一度試してください。"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "この申し立ては<0>{sourceName}0>に送られます。"
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "この異議申し立てはBlueskyのモデレーション・サービスに送られます。"
@@ -11263,7 +11522,7 @@ msgstr "この異議申し立てはBlueskyのモデレーション・サービ
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "この投稿者は、サインインしている人にのみ投稿を表示するように設定しています。"
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "このボタンを他のユーザーがクリックすると、Germ DMアプリを開いてあなたにメッセージを送信できます。 Germ DMアプリから見えるかどうかを管理できます。 また、下のボタンをクリックすることでBlueskyアカウントをGerm DMから完全に切断することもできます。"
@@ -11271,7 +11530,12 @@ msgstr "このボタンを他のユーザーがクリックすると、Germ DM
msgid "This chat has ended"
msgstr "このチャットは終了しました"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr "このチャットは満員です"
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "このチャットはロックされています"
@@ -11310,7 +11574,11 @@ msgstr "このコンテンツは関係するユーザーの一方が他方をブ
msgid "This content is not viewable without a Bluesky account."
msgstr "このコンテンツはBlueskyのアカウントがないと閲覧できません。"
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr "この会話はロックされています。"
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "削除あるいは無効化されたアカウントとの会話です。押すと選択肢が表示されます"
@@ -11318,7 +11586,7 @@ msgstr "削除あるいは無効化されたアカウントとの会話です。
msgid "This draft will be permanently deleted."
msgstr "この下書きは完全に削除されます。"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "このメールアドレスはすでにあなたのアカウントと関連付けられています。"
@@ -11360,7 +11628,7 @@ msgstr "このフィードはもはやオンラインではありません。代
msgid "This handle is reserved. Please try a different one."
msgstr "このハンドルは予約されています。他のものをお試しください。"
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "この画像は使用できませんでした。.jpgまたは.pngのような別の形式で試してください。"
@@ -11368,6 +11636,18 @@ msgstr "この画像は使用できませんでした。.jpgまたは.pngのよ
msgid "This information is private and not shared with other users."
msgstr "この情報はプライベートで他のユーザーと共有されません。"
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr "この招待リンクは無効化されました。"
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr "この招待リンクは期限切れです"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr "この招待リンクは無効です"
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "これは空の状態です"
@@ -11377,7 +11657,7 @@ msgstr "これは空の状態です"
msgid "This is not a valid link"
msgstr "有効なリンクではありません"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "このラベルは、このアカウントが自動化されていることを示します。有効化すると、ラベルがアカウントのプロフィールと投稿でアカウント名の横に表示されます。いつでも有効化や無効化できます。"
@@ -11410,13 +11690,13 @@ msgstr "あなたが作成したこのリストは名前または説明がBluesk
msgid "This list is empty."
msgstr "このリストは空です。"
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr "このユーザーがあなたをブロックしているため、このメッセージは非表示です。"
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr "このユーザーをブロックしているため、このメッセージは非表示です。"
@@ -11454,7 +11734,7 @@ msgstr "この投稿は投稿者によって削除されました"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "この投稿はフィードとスレッドから非表示になります。元に戻すことはできません。"
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "この投稿の投稿者は引用投稿を無効にしています。"
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "この返信はスレッドの一番下にある非表示のセクションに移動され、その後のあなたや他のユーザー宛の返信の通知をミュートします。"
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "この画面はグループ会話でのみ利用できます。"
@@ -11494,18 +11775,18 @@ msgstr "このユーザーには表示名がないため認証できません。
msgid "This user doesn't have any followers."
msgstr "このユーザーにはフォロワーがいません。"
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
-msgstr ""
+msgstr "このユーザーはあなたをブロックしているため、メッセージを送信できません。"
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr "このユーザーはあなたをブロックしているため、あなたはこのユーザーのコンテンツを閲覧できません。"
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
-msgstr ""
+msgstr "このユーザーはチャットを無効にしているため、メッセージできません。"
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
@@ -11574,7 +11855,7 @@ msgstr "スレッドの設定"
msgid "Threaded"
msgstr "スレッド"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "スレッドの設定"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "メールでの2要素認証を無効にするには、メールアドレスにアクセスできるか確認してください。"
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "メールでの2要素認証を無効にするには、<0>{0}0>にアクセスできるか確認してください"
@@ -11646,12 +11927,12 @@ msgstr "トップ"
msgid "Top replies first"
msgstr "トップの返信を最初に"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "トピック"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "話題のビデオ"
msgid "Trolling"
msgstr "トローリング(荒らし)"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "信頼は人間関係、コミュニティ、共有されている文脈から得られるため、<0>信頼できる認証者0>(認証を直接発行できる組織)を有効にしています。"
@@ -11763,13 +12044,17 @@ msgstr "あなたのサービスに接続できません。インターネット
msgid "Unable to delete"
msgstr "削除できません"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
-msgid "Unable to find a selected recipient."
-msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr "参加リクエストを取得できませんでした。"
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr "選択した受信者を見つけられません。"
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
-msgstr ""
+msgstr "選択した受信者が見つけられません。"
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
@@ -11791,7 +12076,7 @@ msgstr "利用不可"
msgid "Unavailable feed information"
msgstr "フィードの情報が利用できません"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "リストのブロックを解除"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "元に戻す"
@@ -11872,7 +12157,7 @@ msgstr "アカウントのフォローを解除"
msgid "Unfollows the user"
msgstr "ユーザーのフォローを解除"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "残念ながら、登録しているラベラーはどれもこのタイプの報告をサポートしていません。"
@@ -11904,13 +12189,13 @@ msgstr "ラベルのない成人向けコンテンツ"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "ラベルなし、虐待的、または合意のない成人向けコンテンツ"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr "いいねを外す"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "いいねを外す({0, plural, other {#件のいいね}})"
@@ -11918,7 +12203,7 @@ msgstr "いいねを外す({0, plural, other {#件のいいね}})"
msgid "Unlock chat"
msgstr "チャットのロックを解除"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr "このグループチャットのロックを解除"
@@ -11955,7 +12240,7 @@ msgstr "会話のミュートを解除"
msgid "Unmute list"
msgstr "リストのミュートを解除"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "このグループチャットのミュートを解除"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "ピン留めを解除"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "フィードのピン留めを外す"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "ホームからピン留めを解除"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "モデレーションリストのピン留めを解除"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0}のピン留めを解除しました"
@@ -12030,11 +12315,11 @@ msgstr "このラベラーの登録を解除"
msgid "Unsubscribed from list"
msgstr "リストの登録を解除しました"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "サポートされていなクリップボードのコンテンツ"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "サポートしていないビデオ形式:{mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "更新する"
msgid "Update <0>{displayName}0> in Lists"
msgstr "リストの<0>{displayName}0>を更新"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr "アプリを更新"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "メールアドレスの更新"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "招待リンクを更新"
@@ -12065,11 +12354,19 @@ msgstr "招待リンクを更新"
msgid "Update to {domain}"
msgstr "{domain}に更新"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr "アプリを更新してください"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr "表示するにはアプリを更新してください。"
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "アプリを最新バージョンに更新して参加しましょう!"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "メールアドレスの更新"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "返信の表示設定の更新に失敗しました"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "代わりに写真をアップロード"
@@ -12098,39 +12395,40 @@ msgstr "代わりに写真をアップロード"
msgid "Upload a text file to:"
msgstr "テキストファイルのアップロード先:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "カメラからアップロード"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "ファイルからアップロード"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "ライブラリーからアップロード"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "GIFをアップロード中…"
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "画像をアップロード中…"
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "リンクのサムネイルをアップロード中…"
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "ビデオをアップロード中…"
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "ユーザー"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "ユーザーをブロックしました"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "<0/>の作成したユーザーリスト"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "{0} によるユーザーリスト"
@@ -12255,12 +12553,12 @@ msgstr "<0>@{0}0>にフォローされているユーザー"
msgid "users following <0>@{0}0>"
msgstr "<0>@{0}0>をフォローしているユーザー"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "フォローしているユーザー"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "フォローしているユーザー"
@@ -12277,7 +12575,7 @@ msgstr "認証に失敗しました。再度試してください。"
msgid "Verification settings"
msgstr "認証設定"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "認証設定"
@@ -12304,8 +12602,8 @@ msgstr "再度認証する"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "コードを確認する"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "DNSレコードを確認"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "メールのコードを確認"
@@ -12349,7 +12647,7 @@ msgstr "このアカウントを認証しますか?"
msgid "Verify your age"
msgstr "年齢を認証する"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "バージョン {0}"
msgid "Video"
msgstr "ビデオ"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "ビデオの処理に失敗"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "ビデオフィード"
@@ -12419,7 +12717,7 @@ msgstr "ビデオが見つかりません。"
msgid "Video settings"
msgstr "ビデオの設定"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "ビデオをアップロードしました"
@@ -12432,18 +12730,18 @@ msgstr "ビデオ:{0}"
msgid "Videos"
msgstr "ビデオ"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr "ビデオは3分未満でなければなりません。"
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "表示"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr "{0}を表示"
@@ -12455,7 +12753,7 @@ msgstr "{0}のアバターを表示"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "{0}のプロフィールを表示"
msgid "View {0}’s profile"
msgstr "{0}のプロフィールを見る"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "{displayName}のプロフィールを見る"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr "{publicationTitle}を表示"
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr "@{0}のプロフィールを表示"
@@ -12503,10 +12801,18 @@ msgstr "詳細を表示"
msgid "View full thread"
msgstr "スレッドをすべて表示"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr "グループチャットのリクエストを表示"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr "受信したリクエストを表示"
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr "このグループチャットへの参加リクエストを表示"
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "これらのラベルに関する情報を見る"
@@ -12522,7 +12828,7 @@ msgstr "もっと表示"
msgid "View more trending videos"
msgstr "話題のビデオをもっと見る"
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "投稿を表示"
@@ -12539,10 +12845,10 @@ msgstr "プロフィールを表示"
msgid "View profile banner"
msgstr "プロフィールのバナーを見る"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr "媒体を表示"
@@ -12550,7 +12856,7 @@ msgstr "媒体を表示"
msgid "View the avatar"
msgstr "アバターを表示"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "このグループチャットの招待リンクを表示"
@@ -12563,7 +12869,7 @@ msgstr "@{0}によって提供されるラベリングサービスを見る"
msgid "View this user's verifications"
msgstr "このユーザーの認証情報を表示"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "このフィードにいいねしたユーザーを見る"
@@ -12596,8 +12902,8 @@ msgstr "ミュートしたアカウントを見る"
msgid "View your verifications"
msgstr "あなたの認証情報を表示"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "画像全体を表示"
@@ -12640,8 +12946,8 @@ msgstr "コンテンツの警告"
msgid "Warn content and filter from feeds"
msgstr "コンテンツの警告とフィードからのフィルタリング"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "今すぐ見る"
@@ -12665,10 +12971,14 @@ msgstr "そのタグの検索結果は見つかりませんでした。"
msgid "We couldn't find any results for that topic."
msgstr "そのトピックについての検索結果は見つかりませんでした。"
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "この会話を読み込めませんでした"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr "この会話への参加リクエストを読み込めませんでした"
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "この会話の設定を読み込めませんでした"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "すくなくとも2つの「気になること」を選択するのをお勧めします。"
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "<0>{0}0>にリンクが含まれているメールを送信しました。メールアドレスの確認プロセスを完了するために、そのリンクをクリックしてください。"
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "あなたがビデオのアップロードを許可されているかどうか判断できません。もう一度お試しください。"
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "お友達を見つけたらお知らせします。"
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "<0>{0}0>にリンクが含まれているメールを送信します。メールアドレスの確認プロセスを完了するために、そのリンクをクリックしてください。"
@@ -12779,12 +13089,12 @@ msgstr "あなたのアカウントの年齢保証手順の初期化に問題が
msgid "We're having network issues, try again"
msgstr "ネットワークで問題が発生しています。もう一度試してください"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "ネットワークで問題が発生しています。もう一度試してください"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Blueskyに新しい認証方式を導入しました。見やすいチェックマークです。"
@@ -12814,12 +13124,12 @@ msgstr "大変申し訳ありませんが、検索を完了できませんでし
msgid "We're sorry, you cannot access this screen at this time."
msgstr "申し訳ありませんが、現時点ではこの画面にアクセスできません。"
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "大変申し訳ありません!返信しようとしている投稿は削除されました。"
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "大変申し訳ありません!お探しのページは見つかりません。"
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "あなたのスターターパックを何と呼びたいですか?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "最近どう?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "チェックをタップすると、どの組織が認証を与えているかが表示されます。"
@@ -12878,7 +13188,7 @@ msgstr "チェックをタップすると、どの組織が認証を与えてい
msgid "Who can interact with this post?"
msgstr "誰がこの投稿に反応できますか?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "誰がどのようにこのグループチャットに参加できるか"
@@ -12887,13 +13197,13 @@ msgstr "誰がどのようにこのグループチャットに参加できるか
msgid "Who can reply"
msgstr "返信できるユーザー"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "誰が認証できますか?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "おっと!"
@@ -12939,19 +13249,19 @@ msgstr "なぜこのスターターパックをレビューする必要があり
msgid "Why should this user be reviewed?"
msgstr "なぜこのユーザーをレビューする必要がありますか?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "ユーザーをブロックするかこの会話を削除しますか(あるいは両方)?"
#: src/components/dms/AfterReportConversationDialog.tsx:47
msgid "Would you like to block this user and/or leave this conversation?"
-msgstr ""
+msgstr "ユーザーをブロックするかこの会話を削除しますか(あるいは両方)?"
#: src/view/com/composer/drafts/DraftsButton.tsx:110
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr "保存されている下書きを表示する前にこれを下書きとして保存しますか?"
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr "後で編集するためにこれを下書きとして保存しますか?"
@@ -12960,12 +13270,12 @@ msgstr "後で編集するためにこれを下書きとして保存しますか
msgid "Write a post"
msgstr "投稿を書く"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "投稿を書く"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "返信を書く"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "サーバーから間違ったDIDが送られてきました。受信したもの:{0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "会話の種類が正しくありません"
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "お客様は、アプリにアクセスする前に年齢を確認することを法的に要求する地域からBlueskyにアクセスしています。"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr "{0}をブロックしています"
@@ -13068,7 +13379,7 @@ msgstr "ライブ中"
msgid "You are no longer live"
msgstr "もうライブ中ではありません"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "あなたはビデオのアップロードを許可されていません。"
@@ -13117,12 +13428,12 @@ msgstr "いつでもオプトアウトしてデータを削除することがで
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "アプリ内のチャット設定でチャット通知の音の有無を選択できます"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "どの設定を選択しても進行中の会話は続けることができます。"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "特定のユーザーが投稿した時に通知を受け取ることができるようになります。更新情報をタイムリーに受け取りたい人がいたら、その人のプロフィールのページに移動し、フォローボタンの近くのベルのアイコンを探してください。"
@@ -13131,7 +13442,12 @@ msgstr "特定のユーザーが投稿した時に通知を受け取ることが
msgid "You can now sign in with your new password."
msgstr "新しいパスワードでサインインできるようになりました。"
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "下書きは最大で1000文字です。"
@@ -13139,11 +13455,11 @@ msgstr "下書きは最大で1000文字です。"
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "下書きは最大で1000文字です。下書きを表示する前にこの投稿を履きしますか?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr "一度に1つのGIFしか選択できません。"
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "一度に1つのビデオしか選択できません。"
@@ -13155,10 +13471,10 @@ msgstr "アカウントを再有効化してログインし続けることがで
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
-msgstr "合計で{MAX_IMAGES, plural, other {#枚の画像}}まで選択できます。"
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr "合計で{MAX_GALLERY_IMAGES, plural, other {#枚の画像}}まで選択できます。"
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,9 +13482,9 @@ msgstr "合計で{MAX_IMAGES, plural, other {#枚の画像}}まで選択でき
msgid "You can update this later from your settings."
msgstr "これは設定画面から後で変更できます。"
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
-msgstr ""
+msgstr "あなたはまだグループチャットを作成できません。"
#: src/lib/hooks/useCleanError.ts:54
#: src/lib/strings/errors.ts:28
@@ -13197,6 +13513,10 @@ msgstr "保存されたフィードがありません。"
msgid "You got here first"
msgstr "あなたが最初にここにやって来ました"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr "あなたは以前このグループから外されており、このリンクを使用して参加できません。"
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ msgstr "メールアドレスの確認に成功しました。このダイアロ
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "ビデオのアップロードの制限に一時的に到達しました。時間をおいてもう一度お試しください。"
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr "この下書きに未保存の変更があります。保存しますか?"
@@ -13336,7 +13656,7 @@ msgstr "スターターパックを作成するには、少なくとも7人を
msgid "You must grant access to your photo library to save a QR code"
msgstr "QRコードを保存するには写真ライブラリへのアクセスを許可する必要があります"
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "メディアライブラリへのアクセスを許可する必要があります。"
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "今すぐアプリを再起動したほうが良いでしょう。"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "あなたは{0}とリアクションしました"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "最近、生年月日を変更しました"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "すべてのアカウントからサインアウトします。"
@@ -13390,7 +13710,7 @@ msgstr "これ以降、このスレッドに関する通知を受け取ること
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "「リセットコード」が記載されたメールが届きます。ここにコードを入力し、新しいパスワードを入力します。"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "招待されない限り、再び参加することはできません。"
@@ -13463,7 +13783,7 @@ msgstr "アクティブなコンテンツの最後に到達しました。"
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "フィードはここまでです!もっとフォローするアカウントを見つけましょう。"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "下書きの数の上限に達しました"
@@ -13475,11 +13795,11 @@ msgstr "リクエスト数の上限に達しました。後でもう一度お試
msgid "You've reached the start of the active content."
msgstr "アクティブなコンテンツの先頭に移動しました。"
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "ビデオのアップロードの一日の上限に到達しました(容量が大きすぎます)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "ビデオのアップロードの一日の上限に到達しました(ビデオの数が多すぎます)"
@@ -13499,10 +13819,18 @@ msgstr "あなたのアカウントは削除されました。またね! ✌
msgid "Your account has been suspended"
msgstr "あなたのアカウントは停止されています"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "あなたのアカウントは作成して間もないため動画をアップロードできません。もう一度お試しください。"
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr "あなたのアカウントは新しすぎます"
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr "新しいグループチャットを作るにはアカウントを作って少なくとも7日経ってなくてはなりません。"
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "あなたのアカウントの公開データの全記録を含むリポジトリは、「CAR」ファイルとしてダウンロードできます。このファイルには、画像などのメディア埋め込み、また非公開のデータは含まれていないため、それらは個別に取得する必要があります。"
@@ -13519,7 +13847,7 @@ msgstr "あなたの異議申し立てが送信されました。異議申し立
msgid "Your birth date"
msgstr "生年月日"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "あなたのチャットは無効化されています"
@@ -13561,7 +13889,7 @@ msgstr "あなたのメールアドレス"
msgid "Your email appears to be invalid."
msgstr "メールアドレスが無効なようです。"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "あなたのメールアドレスはまだ確認されていません。Blueskyのすべての機能を楽しむためにあなたのメールアドレスを確認してください。"
@@ -13582,7 +13910,7 @@ msgstr "Followingフィードは空です!もっと多くのユーザーをフ
msgid "Your full handle will be <0>@{0}0>"
msgstr "フルハンドルは<0>@{0}0>になります"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "位置情報が更新されました。"
msgid "Your muted words"
msgstr "ミュートしたワード"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "あなたの名前、アバター、およびグループチャットの名前は誰でも見ることができます。"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr "あなたの名前、アバター、グループチャットの名前、メンバーの人数は誰でも見ることができます。"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,11 @@ msgstr "パスワードが正常に変更されました!これからBluesky
msgid "Your password must be at least 8 characters long."
msgstr "パスワードは 8 文字以上である必要があります。"
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "投稿が送信されました"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "投稿が送信されました"
@@ -13635,7 +13963,7 @@ msgstr "投稿が送信されました"
msgid "Your preferred language"
msgstr "あなたの主要言語"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "あなたのプロフィール画像"
@@ -13648,12 +13976,12 @@ msgstr "あなたのプロフィール写真のまわりを、他のユーザー
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "返信が送信されました"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "報告は <0>{0}0>に送信されます。"
@@ -13661,7 +13989,7 @@ msgstr "報告は <0>{0}0>に送信されます。"
msgid "Your selected interests help us serve you content you care about."
msgstr "「気になること」は興味を引くコンテンツを提供するために役立てます。"
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "あなたのスレッドには空の投稿がありますが、それらはスキップされます。他の残りの投稿はスレッドとして公開されます。"
diff --git a/src/locale/locales/kab/messages.po b/src/locale/locales/kab/messages.po
index 6222504579..092d2da12f 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Kabyle\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr ""
msgid "{0, plural, one {# month} other {# months}}"
msgstr ""
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr ""
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:203
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:639
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr ""
msgid "{0}s"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr ""
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:850
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:811
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,8 +643,8 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:33
-msgid "{memberCount}/{MEMBER_LIMIT}"
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
+msgid "{memberCount}/{memberLimit}"
msgstr ""
#: src/features/liveNow/utils.ts:10
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:52
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:47
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,6 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -802,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -825,7 +892,11 @@ msgstr ""
msgid "A screenshot of 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:547
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
+msgid "A selected recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -841,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -854,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr ""
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr ""
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -939,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr ""
@@ -993,8 +1079,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1006,16 +1092,16 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1029,7 +1115,7 @@ msgstr ""
msgid "Add App Password"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1037,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1046,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1056,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
+#: src/components/moderation/ReportDialog/index.tsx:528
#: src/components/moderation/ReportDialog/index.tsx:532
-#: src/components/moderation/ReportDialog/index.tsx:536
msgid "Add more details (optional)"
msgstr ""
@@ -1074,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1159,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:550
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1222,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1235,7 +1321,7 @@ msgstr ""
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1272,13 +1358,13 @@ msgstr ""
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1332,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr ""
@@ -1356,7 +1442,7 @@ msgid "Alt Text"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr ""
@@ -1381,7 +1467,7 @@ msgstr ""
msgid "An error occurred"
msgstr ""
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr ""
@@ -1426,11 +1512,11 @@ msgstr ""
msgid "An error occurred while trying to follow all"
msgstr ""
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1455,20 +1541,20 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:56
-msgid "An issue occurred creating the group chat, please try again"
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
+msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:42
-msgid "An issue occurred starting the chat, please try again"
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
+msgid "An issue occurred starting the chat, please try again."
msgstr ""
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
@@ -1484,7 +1570,7 @@ msgstr ""
msgid "An issue occurred, please try again."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1533,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1549,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1591,7 +1681,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr ""
@@ -1612,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr ""
@@ -1626,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr ""
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1669,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1682,23 +1772,23 @@ msgstr ""
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1746,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1761,12 +1851,12 @@ msgstr ""
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1777,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1790,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1834,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:94
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1871,7 +1963,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1881,8 +1973,8 @@ msgstr ""
msgid "Block {displayName}"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:277
-#: src/components/dms/ConvoMenu.tsx:281
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749
#: src/screens/Messages/components/RequestButtons.tsx:149
@@ -1892,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1906,8 +1998,14 @@ msgstr ""
msgid "Block accounts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:147
-msgid "Block and Delete"
+#: src/components/dms/AfterReportDialog.tsx:148
+msgid "Block and delete"
+msgstr ""
+
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:167
+msgctxt "button"
+msgid "Block and leave"
msgstr ""
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
@@ -1922,20 +2020,29 @@ msgstr ""
msgid "Block these accounts?"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:188
-#: src/components/dms/AfterReportDialog.tsx:191
+#: src/components/dms/AfterReportConversationDialog.tsx:221
+#: src/components/dms/AfterReportConversationDialog.tsx:224
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:153
-msgid "Block User"
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:182
+msgctxt "button"
+msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:184
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:196
+#: src/components/dms/AfterReportConversationDialog.tsx:217
+msgid "Block user and/or leave this conversation"
+msgstr ""
+
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr ""
@@ -1943,13 +2050,13 @@ msgstr ""
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -2008,7 +2115,7 @@ msgstr ""
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2032,7 +2139,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:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2116,23 +2223,30 @@ msgstr ""
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:853
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:74
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2160,7 +2274,7 @@ msgstr ""
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr ""
@@ -2171,8 +2285,8 @@ msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2191,10 +2305,10 @@ msgstr ""
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2207,11 +2321,11 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr ""
@@ -2227,9 +2341,9 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -2243,7 +2357,7 @@ msgstr ""
msgid "Captions & alt text"
msgstr ""
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2276,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:449
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2289,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:394
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2323,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr ""
@@ -2340,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2352,31 +2473,35 @@ msgstr ""
msgid "Chat messages - sound"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:199
+#: src/components/dms/ConvoMenu.tsx:216
msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/Navigation.tsx:588
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
+msgid "Chat recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:82
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/components/dms/ConvoMenu.tsx:84
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr ""
@@ -2393,14 +2518,14 @@ msgstr ""
msgid "Chat unlocked"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:201
+#: src/components/dms/ConvoMenu.tsx:218
msgctxt "toast"
msgid "Chat unmuted"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2454,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2508,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2516,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2533,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2542,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2555,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr ""
@@ -2569,24 +2694,30 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
-#: src/components/dms/AfterReportDialog.tsx:93
-#: src/components/dms/AfterReportDialog.tsx:98
+#: src/components/dms/AddMembersFlow.tsx:377
+#: src/components/dms/AfterReportConversationDialog.tsx:91
+#: src/components/dms/AfterReportConversationDialog.tsx:96
+#: src/components/dms/AfterReportConversationDialog.tsx:247
+#: src/components/dms/AfterReportConversationDialog.tsx:252
+#: src/components/dms/AfterReportDialog.tsx:94
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2594,14 +2725,14 @@ msgstr ""
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2618,6 +2749,10 @@ msgstr ""
msgid "Close alert"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr ""
@@ -2628,8 +2763,9 @@ msgstr ""
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr ""
@@ -2643,7 +2779,7 @@ msgid "Close image"
msgstr ""
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2654,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr ""
@@ -2666,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2696,7 +2840,7 @@ msgid "Comics"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr ""
@@ -2711,12 +2855,12 @@ msgstr ""
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr ""
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2724,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr ""
@@ -2751,7 +2895,7 @@ msgstr ""
msgid "Confirm"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2813,7 +2957,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr ""
@@ -2860,7 +3004,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2879,38 +3023,51 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:148
-#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr ""
+#: src/components/dms/AfterReportConversationDialog.tsx:172
+#: src/components/dms/AfterReportConversationDialog.tsx:179
+msgctxt "toast"
+msgid "Conversation left"
+msgstr ""
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2962,6 +3119,7 @@ msgstr ""
msgid "Copy host"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -2992,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr ""
@@ -3017,7 +3175,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr ""
@@ -3030,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3049,8 +3207,9 @@ msgstr ""
msgid "Could not follow all matches. {0}"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:138
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportConversationDialog.tsx:158
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr ""
@@ -3058,13 +3217,17 @@ msgstr ""
msgid "Could not load feed"
msgstr ""
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
msgid "Could not load list"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:205
+#: src/components/dms/ConvoMenu.tsx:222
msgid "Could not mute chat"
msgstr ""
@@ -3103,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr ""
@@ -3123,7 +3286,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr ""
@@ -3138,13 +3301,14 @@ msgstr ""
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3162,7 +3326,7 @@ msgstr ""
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr ""
@@ -3170,7 +3334,7 @@ msgstr ""
msgid "Create another"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3192,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:713
-#: src/components/moderation/ReportDialog/index.tsx:759
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr ""
@@ -3220,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:461
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr ""
@@ -3305,7 +3470,7 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3346,18 +3511,15 @@ msgstr ""
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:194
-#: src/components/dms/AfterReportDialog.tsx:197
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:150
-msgid "Delete Conversation"
-msgstr ""
-
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr ""
@@ -3366,11 +3528,11 @@ msgstr ""
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr ""
@@ -3380,7 +3542,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr ""
@@ -3401,12 +3563,12 @@ msgstr ""
msgid "Delete this post?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:189
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr ""
@@ -3474,13 +3636,13 @@ msgstr ""
msgid "Dim"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3488,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3501,8 +3663,8 @@ msgstr ""
msgid "Disable haptic feedback"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3514,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3527,9 +3689,9 @@ msgstr ""
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3540,19 +3702,19 @@ msgstr ""
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3580,11 +3742,11 @@ msgstr ""
msgid "Dismiss"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr ""
@@ -3640,7 +3802,7 @@ msgstr ""
msgid "Domain verified!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3648,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3667,15 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
-#: src/components/dms/AfterReportDialog.tsx:144
+#: src/components/dms/AfterReportConversationDialog.tsx:164
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3691,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr ""
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3707,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr ""
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr ""
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr ""
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3725,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3789,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3804,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr ""
@@ -3813,14 +3978,14 @@ msgstr ""
msgid "Edit Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr ""
@@ -3834,7 +3999,16 @@ msgstr ""
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3852,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:495
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr ""
@@ -3891,7 +4060,7 @@ msgstr ""
msgid "Edit starter pack"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:494
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3903,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr ""
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr ""
@@ -3937,7 +4106,7 @@ msgstr ""
msgid "Email Resent"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -3972,8 +4141,8 @@ msgstr ""
msgid "Embedded video player"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr ""
@@ -3991,7 +4160,7 @@ msgstr ""
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4004,13 +4173,12 @@ msgstr ""
msgid "Enable media players for"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4057,8 +4225,8 @@ msgstr ""
msgid "Enter a word or tag"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4109,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr ""
@@ -4151,23 +4319,23 @@ msgstr ""
msgid "Everybody can reply to this post."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4183,8 +4351,8 @@ msgstr ""
msgid "Exit fullscreen"
msgstr ""
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr ""
@@ -4192,7 +4360,7 @@ msgstr ""
msgid "Expand list of users"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr ""
@@ -4204,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -4243,9 +4411,9 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4255,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4288,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr ""
@@ -4302,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4320,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4333,7 +4502,7 @@ msgstr ""
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4348,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr ""
@@ -4360,24 +4529,24 @@ msgstr ""
msgid "Failed to delete starter pack"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:343
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4393,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:370
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4422,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4459,16 +4627,15 @@ msgstr ""
msgid "Failed to load suggested follows"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:391
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:357
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4477,7 +4644,7 @@ msgid "Failed to pin post"
msgstr ""
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4491,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4508,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4535,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4546,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr ""
@@ -4555,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:394
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4563,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4580,7 +4751,7 @@ msgstr ""
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr ""
@@ -4607,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr ""
@@ -4615,7 +4786,7 @@ msgstr ""
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr ""
@@ -4628,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr ""
@@ -4652,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr ""
@@ -4705,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4713,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4734,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr ""
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4765,7 +4936,7 @@ msgstr ""
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4910,8 +5081,12 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr ""
@@ -4961,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr ""
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr ""
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr ""
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr ""
@@ -5035,7 +5207,7 @@ msgstr ""
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5052,35 +5224,35 @@ msgstr ""
msgid "Generate a starter pack"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5088,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr ""
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5140,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:180
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr ""
@@ -5179,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr ""
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr ""
@@ -5203,7 +5380,9 @@ msgid "Go back to previous step"
msgstr ""
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr ""
@@ -5213,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr ""
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr ""
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5250,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr ""
@@ -5262,19 +5437,19 @@ msgstr ""
msgid "Go to next"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:255
+#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:251
+#: src/components/dms/ConvoMenu.tsx:268
msgid "Go to user's profile"
msgstr ""
@@ -5286,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5306,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:383
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:350
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:338
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
-#: src/screens/Messages/ConversationSettings/index.tsx:89
+#: src/Navigation.tsx:490
+#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5387,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr ""
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5412,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr ""
@@ -5424,8 +5615,8 @@ msgstr ""
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5449,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr ""
@@ -5618,18 +5809,18 @@ msgstr ""
msgid "Hmmmm, we couldn't load that moderation service."
msgstr ""
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr ""
@@ -5679,7 +5870,6 @@ msgid "I have my own domain"
msgstr ""
#: src/components/dms/BlockedByListDialog.tsx:55
-#: src/components/dms/ReportConversationPrompt.tsx:21
msgid "I understand"
msgstr ""
@@ -5688,7 +5878,7 @@ msgstr ""
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
@@ -5724,7 +5914,7 @@ msgstr ""
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5732,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5740,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5753,23 +5942,33 @@ msgstr ""
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr ""
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5784,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5829,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5848,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5930,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr ""
@@ -5948,6 +6151,10 @@ msgstr ""
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr ""
@@ -5977,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:508
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -5991,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6041,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr ""
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr ""
@@ -6050,6 +6257,11 @@ msgstr ""
msgid "Jobs"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6057,6 +6269,15 @@ msgstr ""
msgid "Join Bluesky"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6066,8 +6287,8 @@ msgstr ""
msgid "Journalism"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6110,7 +6331,7 @@ msgstr ""
msgid "Labels on your content"
msgstr ""
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr ""
@@ -6141,7 +6362,7 @@ msgid "Latest"
msgstr ""
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6196,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr ""
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6206,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6219,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:542
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr ""
@@ -6237,19 +6458,27 @@ msgstr ""
msgid "Leave chat"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:229
-#: src/components/dms/ConvoMenu.tsx:233
-#: src/components/dms/ConvoMenu.tsx:299
-#: src/components/dms/ConvoMenu.tsx:303
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/AfterReportConversationDialog.tsx:229
+#: src/components/dms/AfterReportConversationDialog.tsx:233
+#: src/components/dms/ConvoMenu.tsx:246
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/dms/ConvoMenu.tsx:316
+#: src/components/dms/ConvoMenu.tsx:320
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:174
+msgctxt "button"
+msgid "Leave conversation"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:541
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6286,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -6305,11 +6534,7 @@ msgstr ""
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr ""
@@ -6317,8 +6542,8 @@ msgstr ""
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr ""
@@ -6336,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr ""
@@ -6368,11 +6589,11 @@ msgstr ""
msgid "Linear"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr ""
@@ -6458,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr ""
@@ -6504,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6554,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:522
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:520
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:522
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr ""
@@ -6621,7 +6842,7 @@ msgstr ""
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6646,24 +6867,22 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:241
-#: src/components/dms/ConvoMenu.tsx:245
+#: src/components/dms/ConvoMenu.tsx:258
+#: src/components/dms/ConvoMenu.tsx:262
msgid "Mark as read"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6686,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:28
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr ""
@@ -6734,22 +6949,22 @@ msgstr ""
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6772,19 +6987,19 @@ msgstr ""
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr ""
-#: src/components/dms/MessageItem.tsx:651
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:646
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6797,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6809,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr ""
@@ -6853,7 +7064,7 @@ msgstr ""
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr ""
@@ -6862,7 +7073,7 @@ msgstr ""
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr ""
@@ -6908,7 +7119,7 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:487
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr ""
@@ -6936,8 +7147,8 @@ msgstr ""
msgid "Mute accounts"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:260
-#: src/components/dms/ConvoMenu.tsx:267
+#: src/components/dms/ConvoMenu.tsx:277
+#: src/components/dms/ConvoMenu.tsx:284
msgid "Mute conversation"
msgstr ""
@@ -6953,7 +7164,7 @@ msgstr ""
msgid "Mute these accounts?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:485
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -6991,7 +7202,7 @@ msgstr ""
msgid "Mute words & tags"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:487
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -6999,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr ""
@@ -7067,8 +7278,8 @@ msgstr ""
msgid "Navigates to your profile"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:345
-#: src/components/moderation/ReportDialog/index.tsx:362
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7095,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:107
-#: src/components/dms/dialogs/NewChatDialog.tsx:117
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7133,23 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
-#: src/components/dms/InitiateChatFlow.tsx:715
-#: src/components/dms/InitiateChatFlow.tsx:743
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#. Button used to create a new group chat.
+#. Button used to create a new group chat.
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
+msgctxt "action"
+msgid "New group chat"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7180,7 +7393,7 @@ msgid "New post"
msgstr ""
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr ""
@@ -7215,8 +7428,8 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7288,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7315,7 +7528,7 @@ msgstr ""
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr ""
@@ -7331,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr ""
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7388,8 +7601,8 @@ msgid "No result"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr ""
@@ -7462,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7475,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7501,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr ""
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr ""
@@ -7554,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr ""
@@ -7576,7 +7772,8 @@ msgstr ""
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:658
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7601,27 +7798,35 @@ msgstr ""
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
+msgid "One of the selected recipients does not allow group chats."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
+msgid "One of the selected recipients has blocked you and cannot be messaged."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr ""
@@ -7630,6 +7835,26 @@ msgstr ""
msgid "Only {0} can reply."
msgstr ""
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7640,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr ""
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr ""
@@ -7657,7 +7892,7 @@ msgstr ""
msgid "Oops!"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr ""
@@ -7665,12 +7900,17 @@ msgstr ""
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr ""
@@ -7684,16 +7924,16 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr ""
@@ -7705,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:120
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr ""
@@ -7735,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7762,6 +8006,10 @@ msgstr ""
msgid "Open system log"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7783,7 +8031,7 @@ msgstr ""
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr ""
@@ -7803,22 +8051,24 @@ msgstr ""
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7835,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7864,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr ""
@@ -7940,12 +8190,14 @@ msgstr ""
msgid "Our blog post"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:88
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportConversationDialog.tsx:86
+#: src/components/dms/AfterReportConversationDialog.tsx:213
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
@@ -7953,14 +8205,15 @@ msgstr ""
msgid "Owner"
msgstr ""
-#: src/components/Lists.tsx:205
-#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
-msgid "Page not found"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
msgstr ""
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
+#: src/components/Lists.tsx:205
+#: src/components/Lists.tsx:220
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
+msgid "Page not found"
msgstr ""
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
@@ -8011,34 +8264,34 @@ msgstr ""
msgid "People"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8084,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr ""
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr ""
@@ -8095,7 +8348,7 @@ msgstr ""
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr ""
@@ -8109,8 +8362,8 @@ msgid "Pinned"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr ""
@@ -8179,7 +8432,7 @@ msgstr ""
msgid "Please choose your password."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8187,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr ""
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8208,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8228,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8236,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8249,7 +8502,7 @@ msgstr ""
msgid "Please enter your invite code."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8266,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr ""
@@ -8309,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8326,7 +8579,7 @@ msgstr ""
msgid "Porn"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr ""
@@ -8346,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8360,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr ""
@@ -8372,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr ""
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
@@ -8397,7 +8650,7 @@ msgstr ""
msgid "Post interaction settings"
msgstr ""
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8407,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8434,7 +8687,6 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8448,10 +8700,6 @@ msgstr ""
msgid "Posts hidden"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8471,6 +8719,7 @@ msgstr ""
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr ""
@@ -8479,7 +8728,7 @@ msgstr ""
msgid "Press to view followers of this account that you also follow"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8502,21 +8751,20 @@ msgstr ""
msgid "Privacy and security"
msgstr ""
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8529,15 +8777,15 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr ""
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr ""
@@ -8545,8 +8793,8 @@ msgstr ""
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8578,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8625,10 +8873,6 @@ msgstr ""
msgid "QR code saved to your camera roll!"
msgstr ""
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8654,8 +8898,8 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr ""
@@ -8676,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8688,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8707,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8755,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8784,6 +9028,10 @@ msgstr ""
msgid "Reconnect"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8793,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr ""
@@ -8839,17 +9087,17 @@ msgstr ""
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr ""
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr ""
@@ -8857,8 +9105,9 @@ msgstr ""
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr ""
@@ -8876,8 +9125,8 @@ msgstr ""
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8902,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr ""
@@ -8952,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:224
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr ""
-#: src/components/Post/Embed/index.tsx:222
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr ""
@@ -8978,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9032,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr ""
@@ -9047,14 +9295,14 @@ msgstr ""
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9068,10 +9316,6 @@ msgstr ""
msgid "Reply Hidden by You"
msgstr ""
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
@@ -9089,9 +9333,9 @@ msgstr ""
msgid "Reply was successfully hidden"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:533
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr ""
@@ -9100,21 +9344,20 @@ msgstr ""
msgid "Report account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:287
-#: src/components/dms/ConvoMenu.tsx:291
-#: src/components/dms/ReportConversationPrompt.tsx:17
+#: src/components/dms/ConvoMenu.tsx:304
+#: src/components/dms/ConvoMenu.tsx:308
#: src/screens/Messages/components/RequestButtons.tsx:160
#: src/screens/Messages/components/RequestButtons.tsx:163
msgid "Report conversation"
msgstr ""
#: src/components/moderation/ReportDialog/index.tsx:98
-#: src/components/moderation/ReportDialog/index.tsx:265
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr ""
@@ -9123,7 +9366,7 @@ msgstr ""
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr ""
@@ -9141,12 +9384,15 @@ msgstr ""
msgid "Report starter pack"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:85
-#: src/components/dms/AfterReportDialog.tsx:177
+#: src/components/dms/AfterReportConversationDialog.tsx:83
+#: src/components/dms/AfterReportConversationDialog.tsx:210
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:51
+#: src/components/moderation/ReportDialog/copy.ts:65
msgid "Report this conversation"
msgstr ""
@@ -9154,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:532
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9163,7 +9409,7 @@ msgid "Report this list"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9197,10 +9443,6 @@ msgstr ""
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9223,8 +9465,8 @@ msgid "Reposted by you"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9233,13 +9475,17 @@ msgid "Reposts of this post"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9247,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9269,7 +9534,11 @@ msgstr ""
msgid "Required in your region"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9334,15 +9603,16 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9356,7 +9626,7 @@ msgstr ""
msgid "Retry"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:296
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9367,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr ""
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr ""
@@ -9395,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9420,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:229
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9459,12 +9731,12 @@ msgstr ""
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9475,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr ""
@@ -9492,8 +9764,8 @@ msgstr ""
msgid "Say hello!"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9517,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr ""
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9608,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9618,13 +9890,13 @@ msgstr ""
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9700,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9769,7 +10041,7 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9791,7 +10063,7 @@ msgstr ""
msgid "Select languages"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:434
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9845,11 +10117,11 @@ msgstr ""
msgid "Select your preferred language for translations in your feed."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9862,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr ""
@@ -9880,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr ""
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr ""
@@ -9893,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:824
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9901,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9915,7 +10187,7 @@ msgid "Send via direct message"
msgstr ""
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -9956,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -9971,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10020,10 +10292,12 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
+#: src/components/MediaPreview.tsx:235
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10039,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10065,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10092,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr ""
@@ -10108,16 +10382,16 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10211,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr ""
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10238,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10270,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr ""
@@ -10278,6 +10558,10 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10289,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr ""
@@ -10300,7 +10584,7 @@ msgid "Sign Out"
msgstr ""
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr ""
@@ -10332,7 +10616,7 @@ msgstr ""
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10346,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10354,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10403,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10428,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
-#: src/screens/Messages/ConversationSettings/index.tsx:110
+#: src/screens/Messages/Conversation.tsx:137
+#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:291
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10458,11 +10747,11 @@ msgstr ""
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:239
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr ""
@@ -10509,7 +10798,7 @@ msgstr ""
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:123
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr ""
@@ -10523,17 +10812,17 @@ msgstr ""
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:779
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr ""
@@ -10595,12 +10884,12 @@ msgstr ""
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10612,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr ""
@@ -10625,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:512
-#: src/components/moderation/ReportDialog/index.tsx:573
-#: src/components/moderation/ReportDialog/index.tsx:580
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10636,13 +10925,13 @@ msgid "Subscribe"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:377
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:386
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:385
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10673,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10711,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10721,12 +11014,20 @@ msgstr ""
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
+msgid "Suspended accounts cannot participate in a group chat."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
+msgid "Suspended accounts cannot participate in chat."
+msgstr ""
+
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr ""
@@ -10735,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10761,7 +11062,7 @@ msgstr ""
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10787,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10857,7 +11176,7 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10872,7 +11191,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr ""
@@ -10982,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -10990,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr ""
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11034,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11048,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11059,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -11069,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -11094,7 +11420,7 @@ msgstr ""
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11187,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr ""
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr ""
@@ -11196,7 +11522,7 @@ msgstr ""
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11204,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11243,7 +11574,11 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11251,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11293,7 +11628,7 @@ msgstr ""
msgid "This handle is reserved. Please try a different one."
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11301,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11310,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11343,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr ""
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:624
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:620
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11387,7 +11734,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr ""
@@ -11399,7 +11746,8 @@ msgstr ""
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 ""
-#: src/screens/Messages/ConversationSettings/index.tsx:130
+#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11407,7 +11755,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/features/liveNow/index.tsx:200
+#: src/features/liveNow/index.tsx:203
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -11427,11 +11775,19 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
+msgid "This user has blocked you and cannot be messaged."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
+msgid "This user has disabled chat and cannot be messaged."
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
msgstr ""
@@ -11499,7 +11855,7 @@ msgstr ""
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr ""
@@ -11525,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr ""
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11534,10 +11890,6 @@ msgstr ""
msgid "To log out, <0>click here0>. Or if you’d prefer, you can <1>delete your account1>."
msgstr ""
-#: src/components/dms/ReportConversationPrompt.tsx:19
-msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
-msgstr ""
-
#: src/components/dms/DateDivider.tsx:27
msgid "Today"
msgstr ""
@@ -11575,12 +11927,12 @@ msgstr ""
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11631,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11692,6 +12044,18 @@ msgstr ""
msgid "Unable to delete"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
+msgid "Unable to find the selected recipient."
+msgstr ""
+
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
msgstr ""
@@ -11712,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:662
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11734,8 +12098,8 @@ msgstr ""
msgid "Unblock {displayName}"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:277
-#: src/components/dms/ConvoMenu.tsx:281
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
#: src/view/com/profile/ProfileMenu.tsx:468
#: src/view/com/profile/ProfileMenu.tsx:474
msgid "Unblock account"
@@ -11758,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11793,7 +12157,7 @@ msgstr ""
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:496
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11825,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11839,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:519
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11867,7 +12231,7 @@ msgstr ""
msgid "Unmute account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:265
+#: src/components/dms/ConvoMenu.tsx:282
msgid "Unmute conversation"
msgstr ""
@@ -11876,7 +12240,7 @@ msgstr ""
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:484
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11895,14 +12259,14 @@ msgid "Unpin"
msgstr ""
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr ""
@@ -11917,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr ""
@@ -11951,11 +12315,11 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -11968,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -11986,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12011,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr ""
@@ -12019,39 +12395,40 @@ msgstr ""
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr ""
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr ""
@@ -12094,7 +12471,8 @@ msgstr ""
msgid "user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportConversationDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12131,7 +12509,7 @@ msgid "User list by {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12175,12 +12553,12 @@ msgstr ""
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12197,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12224,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12236,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr ""
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12269,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12300,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr ""
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr ""
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12339,7 +12717,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr ""
@@ -12352,18 +12730,18 @@ msgstr ""
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12375,7 +12753,7 @@ msgstr ""
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12387,17 +12765,17 @@ msgstr ""
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:388
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12423,10 +12801,18 @@ msgstr ""
msgid "View full thread"
msgstr ""
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:42
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr ""
@@ -12442,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12459,10 +12845,10 @@ msgstr ""
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:378
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:389
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12470,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:506
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12483,7 +12869,7 @@ msgstr ""
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr ""
@@ -12516,8 +12902,8 @@ msgstr ""
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12560,8 +12946,8 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12585,11 +12971,15 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:111
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12635,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr ""
@@ -12669,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12699,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12734,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
@@ -12785,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr ""
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12798,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12807,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr ""
@@ -12827,6 +13217,7 @@ msgid "Why are you appealing?"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:52
+#: src/components/moderation/ReportDialog/copy.ts:66
msgid "Why should this conversation be reviewed?"
msgstr ""
@@ -12858,15 +13249,19 @@ msgstr ""
msgid "Why should this user be reviewed?"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:49
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/components/dms/AfterReportConversationDialog.tsx:47
+msgid "Would you like to block this user and/or leave this conversation?"
+msgstr ""
+
#: src/view/com/composer/drafts/DraftsButton.tsx:110
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12875,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr ""
@@ -12893,7 +13288,8 @@ msgstr ""
msgid "Wrong DID returned from server. Received: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:129
+#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -12945,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:635
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -12979,11 +13375,11 @@ msgstr ""
msgid "You are Live"
msgstr ""
-#: src/features/liveNow/index.tsx:368
+#: src/features/liveNow/index.tsx:371
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr ""
@@ -12991,7 +13387,7 @@ msgstr ""
msgid "You are not following anyone yet"
msgstr ""
-#: src/features/liveNow/index.tsx:312
+#: src/features/liveNow/index.tsx:315
msgid "You are now live!"
msgstr ""
@@ -13032,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13046,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13054,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13070,9 +13471,9 @@ msgstr ""
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13081,6 +13482,10 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
+msgid "You cannot create a group chat yet."
+msgstr ""
+
#: src/lib/hooks/useCleanError.ts:54
#: 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."
@@ -13108,6 +13513,10 @@ msgstr ""
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13177,7 +13586,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13247,7 +13656,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13265,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13280,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr ""
@@ -13301,7 +13710,7 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13374,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13386,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr ""
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
@@ -13410,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 ""
@@ -13430,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr ""
@@ -13472,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13493,7 +13910,7 @@ msgstr ""
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13522,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13534,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13546,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13559,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:523
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13572,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/km/messages.po b/src/locale/locales/km/messages.po
index b18b9c83ed..4703464fe9 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Khmer\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -86,9 +86,14 @@ msgstr ""
msgid "{0, plural, one {# month} other {# months}}"
msgstr ""
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr ""
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr ""
msgid "{0}s"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr "{following} កំពុងតាម"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "{handle} មិនអាចផ្ញើសារបានទេ"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -860,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "ភាពងាយស្រួល"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "ការកំណត់មានភាពងាយស្រួល"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "គណនីត្រូវបានបើក"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "បន្ថែម"
@@ -999,8 +1079,8 @@ msgstr "បន្ថែមគណនី"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "បន្ថែមអត្ថបទជំនួស (ជាជម្រ
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "បន្ថែមគណនីផ្សេងទៀត"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "បន្ថែមប្រកាសមួយទៀត"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr "បន្ថែមពាក្យសម្ងាត់កម្មវិ
msgid "Add App Password"
msgstr "បន្ថែមពាក្យសម្ងាត់កម្មវិធី"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr ""
@@ -1080,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "បន្ថែមពាក្យ និងស្លាកដែលបានបិទ"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr ""
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "អនុញ្ញាតឱ្យចូលប្រើសារផ្ទ
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "បានចូលជា @{0} រួចហើយ"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ជំនួស"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "អត្ថបទជំនួស"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "អត្ថបទជំនួសពិពណ៌នារូបភាពសម្រាប់អ្នកប្រើប្រាស់ពិការភ្នែក និងភ្នែកទាប និងជួយផ្តល់បរិបទដល់មនុស្សគ្រប់គ្នា"
@@ -1387,7 +1467,7 @@ msgstr "កំហុសមួយបានកើតឡើង"
msgid "An error occurred"
msgstr "កំហុសមួយបានកើតឡើង"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "កំហុសមួយបានកើតឡើងខណៈពេលកំពុងបង្ហាប់វីដេអូ"
@@ -1432,11 +1512,11 @@ msgstr "កំហុសបានកើតឡើងខណៈពេលរក្ស
msgid "An error occurred while trying to follow all"
msgstr "កំហុសបានកើតឡើងខណៈពេលព្យាយាមតាមដានទាំងអស់"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "បញ្ហាដែលមិនត្រូវបានរួមបញ្ចូលនៅក្នុងជម្រើសទាំងនេះ"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "បញ្ហាមួយបានកើតឡើងខណៈពេលព
msgid "An issue occurred, please try again."
msgstr "បញ្ហាបានកើតឡើង សូមព្យាយាមម្តងទៀត"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "ឈ្មោះពាក្យសម្ងាត់កម្មវិធ
msgid "App passwords"
msgstr "ពាក្យសម្ងាត់កម្មវិធី"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "ពាក្យសម្ងាត់កម្មវិធី"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "បានដាក់បណ្ដឹងឧទ្ធរណ៍"
@@ -1632,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "ប្តឹងឧទ្ធរណ៍លើការសម្រេចចិត្តនេះ។"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "តើអ្នកប្រាកដថាចង់លុបពាក្យសម្ងាត់កម្មវិធី \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ msgstr "តើអ្នកប្រាកដទេថាអ្នកចង់ល
msgid "Are you sure you want to discard your changes?"
msgstr "តើអ្នកប្រាកដទេថាអ្នកចង់បោះបង់ការផ្លាស់ប្ដូររបស់អ្នក"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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 "តើអ្នកប្រាកដថាចង់ចាកចេញពីការសន្ទនានេះទេ? សាររបស់អ្នកនឹងត្រូវបានលុបសម្រាប់អ្នក ប៉ុន្តែមិនមែនសម្រាប់អ្នកចូលរួមផ្សេងទៀតទេ"
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr "តើអ្នកប្រាកដថាចង់លុបវាចេញពីមតិព័ត៌មានរបស់អ្នកមែនទេ"
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "តើអ្នកប្រាកដថាចង់បោះបង់ការបង្ហោះនេះទេ?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "ចាក់វីដេអូ និង GIFs ដោយស្វ័យ
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr "ត្រឡប់"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1840,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1877,7 +1963,7 @@ msgstr "ថ្ងៃកំណើត"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "បិទគណនី"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "បិទគណនី?"
msgid "Block accounts"
msgstr "បិទគណនី"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "ទប់ស្កាត់គណនីទាំងនេះ?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr ""
@@ -1948,7 +2034,7 @@ msgctxt "button"
msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "រារាំង"
@@ -1964,13 +2050,13 @@ msgstr "រារាំង"
msgid "Blocked accounts"
msgstr "គណនីដែលបានទប់ស្កាត់"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "គណនីដែលបានទប់ស្កាត់"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "គណនីដែលបានទប់ស្កាត់មិនអាចឆ្លើយតបក្នុងខ្សែស្រឡាយរបស់អ្នក លើកឡើងពីអ្នក ឬធ្វើអន្តរកម្មជាមួយអ្នក"
@@ -2029,7 +2115,7 @@ msgstr "Bluesky គឺល្អជាមួយមិត្តភក្តិ!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky នឹងជ្រើសរើសសំណុំនៃគណន
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 "Bluesky នឹងមិនបង្ហាញប្រវត្តិរូប និងការបង្ហោះរបស់អ្នកទៅកាន់អ្នកប្រើប្រាស់ដែលបានចេញពីគណនីនោះទេ។ កម្មវិធីផ្សេងទៀតប្រហែលជាមិនគោរពសំណើនេះទេ។ នេះមិនធ្វើឱ្យគណនីរបស់អ្នកជាឯកជនទេ"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2137,23 +2223,30 @@ msgstr "អាជីវកម្ម"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "ដោយ {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "តាមរយៈការបង្កើតគណនីមួយ អ
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "កាមេរ៉ា"
@@ -2192,8 +2285,8 @@ msgstr "កាមេរ៉ា"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "កាមេរ៉ា"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "កាមេរ៉ា"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "បោះបង់"
@@ -2248,9 +2341,9 @@ msgstr "បោះបង់ការបើកដំណើរការឡើងវ
msgid "Cancel search"
msgstr "បោះបង់ការស្វែងរក"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "មិនអាចធ្វើអន្តរកម្មជាមួយអ្នកប្រើប្រាស់ដែលត្រូវបានទប់ស្កាត់បានទេ"
@@ -2264,7 +2357,7 @@ msgstr "ចំណងជើង (.vtt)"
msgid "Captions & alt text"
msgstr "ចំណងជើង និងអត្ថបទជំនួស"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr "ផ្លាស់ប្តូរ Handle"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "ជជែក"
@@ -2361,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "បានបិទការជជែក"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "ការកំណត់ការជជែក"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "ការកំណត់ការជជែក"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "បានបើកការជជែក"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "ជ្រើសរើសពណ៌នេះជារូបតំណាងរបស់អ្នក"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr "ចុចទីនេះ"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2567,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "ចុចដើម្បីព្យាយាមសារដែលបរាជ័យម្តងទៀត"
@@ -2594,28 +2694,30 @@ msgstr "ចុចដើម្បីព្យាយាមសារដែលបរ
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "ចុចដើម្បីព្យាយាមសារដែលបរ
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "បិទប្រអប់សកម្ម"
msgid "Close alert"
msgstr "បិទការជូនដំណឹង"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr ""
@@ -2657,8 +2763,9 @@ msgstr ""
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "បិទប្រអប់"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "រូបភាពបិទ"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "បិទប្រអប់នេះ។"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "បិទការជូនដំណឹងអំពីការអាប់ដេតពាក្យសម្ងាត់"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "រឿងកំប្លែង"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "គោលការណ៍ណែនាំសហគមន៍"
@@ -2740,12 +2855,12 @@ msgstr "បញ្ចប់ការប្រឈម"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "សរសេរអត្ថបទថ្មី"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2753,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr "សរសេរការឆ្លើយតប"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "កំពុងបង្ហាប់វីដេអូ..."
@@ -2780,7 +2895,7 @@ msgstr "បានកំណត់រចនាសម្ព័ន្ធនៅក្
msgid "Confirm"
msgstr "បញ្ជាក់"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព
msgid "Content and media"
msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព្វផ្សាយ"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព្វផ្សាយ"
@@ -2889,7 +3004,7 @@ msgstr "ផ្ទាំងខាងក្រោយម៉ឺនុយបរិប
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "បន្តខ្សែ..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "បន្តទៅជំហានបន្ទាប់"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "ការសន្ទនាត្រូវបានលុប"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "ការសន្ទនាត្រូវបានលុប"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "បានចម្លងកំណែស្ថាបនាទៅ clipboard"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "ចម្លង DID"
msgid "Copy host"
msgstr "ចម្លងម៉ាស៊ីន"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "ចម្លងអត្ថបទសារ"
@@ -3052,7 +3175,7 @@ msgstr "ចម្លងតម្លៃកំណត់ត្រា TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "គោលការណ៍រក្សាសិទ្ធិ"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "មិនអាចចាកចេញពីការជជែកបានទេ"
@@ -3094,6 +3217,10 @@ msgstr "មិនអាចចាកចេញពីការជជែកបាន
msgid "Could not load feed"
msgstr "មិនអាចផ្ទុកព័ត៌មានបានទេ"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "បង្កើត"
@@ -3159,7 +3286,7 @@ msgstr "បង្កើតលេខកូដ QR សម្រាប់កញ្
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើម"
@@ -3174,13 +3301,14 @@ msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើមសម្
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "បង្កើតគណនី"
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "បង្កើតរូបតំណាងជំនួសវិញ"
@@ -3206,7 +3334,7 @@ msgstr "បង្កើតរូបតំណាងជំនួសវិញ"
msgid "Create another"
msgstr "បង្កើតមួយផ្សេងទៀត"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "បង្កើតគណនីថ្មី"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "បង្កើតរបាយការណ៍សម្រាប់ {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "បង្កើត {0}"
@@ -3341,7 +3470,7 @@ msgstr "លំនាំដើម"
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "លុបកំណត់ត្រាប្រកាសការជជែ
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "លុបពីខ្ញុំ"
@@ -3399,11 +3528,11 @@ msgstr "លុបពីខ្ញុំ"
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "លុបសារ"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr ""
@@ -3413,7 +3542,7 @@ msgstr "លុបសារពីខ្ញុំ"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "លុប post"
@@ -3434,12 +3563,12 @@ msgstr "លុបបញ្ជីនេះ"
msgid "Delete this post?"
msgstr "លុប post នេះ?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "បានលុប់"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "គណនីបានលុប"
@@ -3507,13 +3636,13 @@ msgstr "ប្រអប់៖ កែតម្រូវអ្នកដែលអ
msgid "Dim"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3521,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3534,8 +3663,8 @@ msgstr "បិទអ៊ីមែល 2FA"
msgid "Disable haptic feedback"
msgstr "បិទរំញ័រ"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "បានបិទ"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "បោះបង់"
msgid "Discard changes?"
msgstr "បោះបង់ "
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "បោះបង់ការផ្លាស់ប្តូរ?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "បោះបង់ការបង្ហោះ?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "ស្វែងរកមតិព័ត៌មានថ្មី"
msgid "Dismiss"
msgstr "ច្រានចោល"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "ច្រានចោលកំហុស"
@@ -3673,7 +3802,7 @@ msgstr "មិនរាប់បញ្ចូលភាពអាក្រាតក
msgid "Domain verified!"
msgstr "បានផ្ទៀងផ្ទាត់ Domain"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3681,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "រួចរាល់"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3741,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr ""
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr ""
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr ""
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "កែសម្រួល"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "កែសម្រួលរូបតំណាង"
@@ -3847,14 +3978,14 @@ msgstr "កែសម្រួលរូបតំណាង"
msgid "Edit Feeds"
msgstr "កែសម្រួលមតិព័ត៌មាន"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "កែរូបភាព"
@@ -3868,7 +3999,16 @@ msgstr "កែសម្រួលការកំណត់អន្តរកម្
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "កែសម្រួលមតិព័ត៌មានរបស់ខ្ញុំ"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "កែសម្រួលមនុស្ស"
@@ -3925,7 +4060,7 @@ msgstr "កែប្រវត្តិរូប"
msgid "Edit starter pack"
msgstr "កែសម្រួលកញ្ចប់ចាប់ផ្តើម"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "កែសម្រួលអ្នកណាអាចឆ្លើយតបបាន"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "កែសម្រួលកញ្ចប់ចាប់ផ្តើមរបស់អ្នក"
@@ -3971,7 +4106,7 @@ msgstr "អាសយដ្ឋានអ៊ីមែល"
msgid "Email Resent"
msgstr "ផ្ញើអ៊ីមែលឡើងវិញ"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -4006,8 +4141,8 @@ msgstr "បង្កប់ការបង្ហោះនេះនៅក្នុ
msgid "Embedded video player"
msgstr "កម្មវិធីចាក់វីដេអូដែលបានបង្កប់"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "បើក"
@@ -4025,7 +4160,7 @@ msgstr "បើកមាតិកាសម្រាប់មនុស្សពេ
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4038,13 +4173,12 @@ msgstr "បើកប្រព័ន្ធផ្សព្វផ្សាយខា
msgid "Enable media players for"
msgstr "បើកកម្មវិធីចាក់មេឌៀសម្រាប់"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr "បញ្ចូលពាក្យសម្ងាត់"
msgid "Enter a word or tag"
msgstr "បញ្ចូលពាក្យ ឬស្លាក"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4143,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "កំហុស"
@@ -4185,23 +4319,23 @@ msgstr "អ្នករាល់គ្នាអាចឆ្លើយ
msgid "Everybody can reply to this post."
msgstr "អ្នករាល់គ្នាអាចឆ្លើយតបនឹងការប្រកាសនេះ"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "ទាំងអស់គ្នា"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "ទាំងអស់គ្នា"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "ទាំងអស់គ្នា"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "មិនរាប់បញ្ចូលអ្នកប្រើប្រ
msgid "Exit fullscreen"
msgstr "ចេញពីអេក្រង់ពេញ"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "ពង្រីកអត្ថបទជំនួស"
@@ -4226,7 +4360,7 @@ msgstr "ពង្រីកអត្ថបទជំនួស"
msgid "Expand list of users"
msgstr "ពង្រីកបញ្ជីអ្នកប្រើប្រាស់"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "ពង្រីក ឬបង្រួមការបង្ហោះពេញដែលអ្នកកំពុងឆ្លើយតប"
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "អ្នករំពឹងថានឹងដោះស្រាយកំណត់ត្រាមួយ។"
@@ -4277,9 +4411,9 @@ msgstr "ប្រព័ន្ធផ្សព្វផ្សាយច្បាស
msgid "Explicit sexual images."
msgstr "រូបភាពផ្លូវភេទច្បាស់លាស់"
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4289,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,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 "ប្រព័ន្ធផ្សព្វផ្សាយខាងក្រៅអាចអនុញ្ញាតឱ្យគេហទំព័រប្រមូលព័ត៌មានអំពីអ្នក និងឧបករណ៍របស់អ្នក។ គ្មានព័ត៌មានត្រូវបានផ្ញើ ឬស្នើរហូតដល់អ្នកចុចប៊ូតុង \"play\""
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "ចំណូលចិត្តប្រព័ន្ធផ្សព្វផ្សាយខាងក្រៅ"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "បរាជ័យក្នុងការផ្លាស់ប្តូរចំណុចទាញ។ សូមព្យាយាមម្តងទៀត"
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "បរាជ័យក្នុងការបង្កើតពាក្
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "បរាជ័យក្នុងការលុបសារ"
@@ -4394,24 +4529,24 @@ msgstr "បរាជ័យក្នុងការលុបការបង្ហ
msgid "Failed to delete starter pack"
msgstr "បរាជ័យក្នុងការលុបកញ្ចប់ចាប់ផ្តើម"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "បានបរាជ័យក្នុងការផ្ទុកចំណូលចិត្តមតិព័ត៌មាន"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "បានបរាជ័យក្នុងការផ្ទុកព័
msgid "Failed to load suggested follows"
msgstr "បានបរាជ័យក្នុងការផ្ទុកដែលបានណែនាំដូចខាងក្រោម"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "បរាជ័យក្នុងការខ្ទាស់ការបង្ហោះ"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "បរាជ័យក្នុងការដាក់បណ្តឹងតវ៉ា សូមព្យាយាមម្តងទៀត"
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "មិនអាចបិទបើកបិទសំឡេងបានទេ សូមព្យាយាមម្ដងទៀត"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4614,7 +4751,7 @@ msgstr "បរាជ័យក្នុងការធ្វើបច្ចុប
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "បរាជ័យក្នុងការធ្វើបច្ចុប្បន្នភាពការកំណត់"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "ព័ត៌មាន"
@@ -4649,7 +4786,7 @@ msgstr "ព័ត៌មាន"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "ព័ត៌មានដោយ {0}"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr ""
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "ព័ត៌មាន"
@@ -4739,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "បញ្ចប់"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "ស្វែងរកគណនីដើម្បីតាមដាន"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr ""
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "តាមដោយ <0>{0}0> និង <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "អ្នកតាមដាន @{0} ដែលអ្នកស្គាល់"
@@ -4995,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr "ធ្វើតាមចំណូលចិត្តមតិព័ត៌មាន"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "ធ្វើតាមចំណូលចិត្តមតិព័ត៌មាន"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "តាមអ្នក"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "តាមអ្នក"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "ពុម្ពអក្សរ"
@@ -5069,7 +5207,7 @@ msgstr "ភ្លេច?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr "ពី <0/>"
msgid "Generate a starter pack"
msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើម"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "រកជំនួយ"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "ផ្តល់ទម្រង់មុខរបស់អ្នក"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "ត្រឡប់ទៅវិញ"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "ត្រឡប់ទៅវិញ"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "ត្រលប់ទៅជំហានមុន"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "ទៅទំពណ៌ដើម"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "ទៅទំពណ៌ដើម"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "ទៅទំពណ៌ដើម"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "ចូលទៅកាន់ការសន្ទនាជាមួយ {0}"
@@ -5299,12 +5440,12 @@ msgstr "ទៅបន្ទាប់"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "ចូលទៅកាន់ប្រវត្តិរូប"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr ""
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr ""
@@ -5458,8 +5615,8 @@ msgstr ""
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "ជំនួយ"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "ជួយមនុស្សឱ្យដឹងថាអ្នកមិនមែនជារូបយន្តដោយការបង្ហោះរូបភាព ឬបង្កើតរូបតំណាង"
@@ -5652,18 +5809,18 @@ msgstr "ហឺម វាហាក់ដូចជាយើងមានបញ្
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "ហ៊ឺ យើងមិនអាចផ្ទុកសេវាកម្មសម្របសម្រួលនោះបានទេ"
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "ចាំ! យើងកំពុងផ្តល់សិទ្ធិចូលប្រើវីដេអូបន្តិចម្តងៗ ហើយអ្នកនៅតែរង់ចាំក្នុងជួរ។ សូមពិនិត្យមើលឡើងវិញឆាប់ៗនេះ"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "ទំព័រដើម"
@@ -5721,7 +5878,7 @@ msgstr "ខ្ញុំយល់"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "ប្រសិនបើអត្ថបទ alt វែង បិទ/បើកស្ថានភាពពង្រីកអត្ថបទ"
@@ -5757,7 +5914,7 @@ msgstr "ប្រសិនបើអ្នកលុបបញ្ជីនេះ
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5765,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr "ប្រសិនបើអ្នកលុបការបង្ហោះនេះ អ្នកនឹងមិនអាចយកវាមកវិញបានទេ"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5773,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "ប្រសិនបើអ្នកចង់ផ្លាស់ប្តូរពាក្យសម្ងាត់របស់អ្នក យើងនឹងផ្ញើលេខកូដទៅអ្នកដើម្បីផ្ទៀងផ្ទាត់ថានេះគឺជាគណនីរបស់អ្នក"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr ""
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "ប្រសិនបើអ្នកកំពុងព្យាយាមផ្លាស់ប្តូរចំណុចទាញ ឬអ៊ីមែលរបស់អ្នក សូមធ្វើដូច្នេះមុនពេលអ្នកបិទដំណើរការ"
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "រូបភាព"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "លេខកូដបញ្ជាក់ 2FA មិនត្រឹមត្រូវ"
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "ចំណុចទាញមិនត្រឹមត្រូវ។ សូមសាកល្បងមួយផ្សេងទៀត"
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "លេខកូដផ្ទៀងផ្ទាត់មិនត្រឹមត្រូវ"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "មានតែអ្នកទេឥឡូវនេះ! បន្ថែមមនុស្សបន្ថែមទៀតទៅក្នុងកញ្ចប់ចាប់ផ្តើមរបស់អ្នកដោយស្វែងរកខាងលើ"
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr ""
@@ -6083,6 +6257,11 @@ msgstr ""
msgid "Jobs"
msgstr "ការងារ"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "ការងារ"
msgid "Join Bluesky"
msgstr "ចូលរួមជាមួយ Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "ចូលរួមការសន្ទនា"
msgid "Journalism"
msgstr "សារព័ត៌មាន"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "ស្លាកនៅលើគណនីរបស់អ្នក"
msgid "Labels on your content"
msgstr "ស្លាកនៅលើមាតិការបស់អ្នក"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "ការកំណត់ភាសា"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "ចុងក្រោយ"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "ស្វែងយល់បន្ថែមអំពីការព្រមាននេះ"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "ស្វែងយល់បន្ថែមអំពីអ្វីដែលជាសាធារណៈនៅលើ Bluesky"
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "ស្វែងយល់បន្ថែម"
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "ចាកចេញ"
@@ -6276,7 +6464,7 @@ msgstr "ចាកចេញពីការជជែក"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "ចាកចេញពីការសន្ទនា"
@@ -6284,13 +6472,13 @@ msgstr "ចាកចេញពីការសន្ទនា"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "ចាកចេញពីការសន្ទនា"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "ពន្លឺ"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -6346,11 +6534,7 @@ msgstr "ចូលចិត្ត 10 ប្រកាស"
msgid "Like 10 posts to train the Discover feed"
msgstr "ចូលចិត្តការបង្ហោះចំនួន 10 ដើម្បីបណ្តុះបណ្តាល Discover feed"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "ចូលចិត្តមតិព័ត៌មាននេះ"
@@ -6358,8 +6542,8 @@ msgstr "ចូលចិត្តមតិព័ត៌មាននេះ"
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "ចូលចិត្ត"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "ចូលចិត្ត"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "ចូលចិត្តនៅលើប្រកាសនេះ"
@@ -6409,11 +6589,11 @@ msgstr "ចូលចិត្តនៅលើប្រកាសនេះ"
msgid "Linear"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "បញ្ជី"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "បានបិទបញ្ជី"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "បញ្ជី"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "កំពុងផ្ទុក..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "កំណត់ហេតុ"
@@ -6662,7 +6842,7 @@ msgstr "មើលទៅដូចជាអ្នកកំពុង
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr "គ្រប់គ្រងពាក្យ និងស្លាកដែលបានបិទរបស់អ្នក"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
@@ -6698,13 +6877,12 @@ msgstr ""
msgid "Mark as read"
msgstr "សម្គាល់ថាបានអានហើយ"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "ប្រព័ន្ធផ្សព្វផ្សាយដែលអាចរំខាន ឬមិនសមរម្យសម្រាប់ទស្សនិកជនមួយចំនួន"
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "អ្នកប្រើប្រាស់ដែលបានលើកឡើង"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr ""
@@ -6775,22 +6949,22 @@ msgstr "សារ {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "សារត្រូវបានលុប"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "សារត្រូវបានលុប"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6813,19 +6987,19 @@ msgstr "សារវែងពេក"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "សារ"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "ការសម្របសម្រួល"
@@ -6894,7 +7064,7 @@ msgstr "បានធ្វើបច្ចុប្បន្នភាពបញ្
msgid "Moderation lists"
msgstr "បញ្ជីសម្របសម្រួល"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "បញ្ជីការសម្របសម្រួល"
@@ -6903,7 +7073,7 @@ msgstr "បញ្ជីការសម្របសម្រួល"
msgid "moderation settings"
msgstr "ការកំណត់កម្រិតមធ្យម"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr ""
@@ -6949,7 +7119,7 @@ msgstr "ភាពយន្ត"
msgid "Music"
msgstr "តន្ត្រី"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "បិទ"
@@ -6994,7 +7164,7 @@ msgstr "បិទបញ្ជី"
msgid "Mute these accounts?"
msgstr "បិទសំឡេងគណនីទាំងនេះ?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "បិទ thread"
msgid "Mute words & tags"
msgstr "បិទពាក្យ & ស្លាក"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "គណនីបិទ"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "គណនីបិទ"
@@ -7108,8 +7278,8 @@ msgstr "រុករកទៅអេក្រង់បន្ទាប់"
msgid "Navigates to your profile"
msgstr "រុករកទៅកម្រងព័ត៌មានរបស់អ្នក"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "ការជជែកថ្មី"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7174,29 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "post ថ្មី"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "post ថ្មី"
@@ -7262,8 +7428,8 @@ msgstr "ព័ត៌មាន"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "លែងតាម {0}"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "មិនមានសារនៅឡើយទេ"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "មិនមានការជូនដំណឹងនៅឡើយទេ"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "គ្មានលទ្ធផល"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "គ្មានលទ្ធផល"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "រកមិនឃើញ"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "ការកំណត់ការជូនដំណឹង"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "សំឡេងជូនដំណឹង"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "ការជូនដំណឹង"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "ឥឡូវនេះ"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "បិទ"
@@ -7623,7 +7772,8 @@ msgstr ""
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr ""
msgid "Onboarding reset"
msgstr "កំណត់ការចូលដំណើរការឡើងវិញ"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "GIFs មួយ ឬច្រើនបាត់អត្ថបទជំនួស"
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "រូបភាពមួយ ឬច្រើនបាត់អត្ថបទជំនួស"
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "វីដេអូមួយ ឬច្រើនបាត់អត្ថបទជំនួស"
@@ -7685,6 +7835,26 @@ msgstr "វីដេអូមួយ ឬច្រើនបាត់អត្ថ
msgid "Only {0} can reply."
msgstr "មានតែ {0} ប៉ុណ្ណោះដែលអាចឆ្លើយតបបាន"
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr "មានតែឯកសាររូបភាពប៉ុណ្ណោះដែលត្រូវបានគាំទ្រ"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "មានតែឯកសារ WebVTT (.vtt) ប៉ុណ្ណោះដែលត្រូវបានគាំទ្រ"
@@ -7712,7 +7892,7 @@ msgstr "ឯកសារ WebVTT (.vtt) ងាយស្រួលគាំទ្រ
msgid "Oops!"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "បើកអ្នកបង្កើតរូបតំណាង"
@@ -7720,12 +7900,17 @@ msgstr "បើកអ្នកបង្កើតរូបតំណាង"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "បើកជម្រើសការសន្ទនា"
@@ -7739,16 +7924,16 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "បើកកម្មវិធីជ្រើសរើសរូបអារម្មណ៍"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "បើកម៉ឺនុយជម្រើសមតិព័ត៌មាន"
@@ -7760,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "បើកតំណទៅ {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr "បើកម៉ឺនុយជម្រើសប្រកាស"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr ""
msgid "Open system log"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "បើកព័ត៌មានលម្អិតបន្ថែមសម
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "បើកកាមេរ៉ានៅលើឧបករណ៍"
@@ -7858,22 +8051,24 @@ msgstr "បើកកម្មវិធីតែង"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "បើកលំហូរដើម្បីបង្កើតគណនី Bluesky ថ្មី"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "បើកកម្រងព័ត៌មាននេះ"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "អ្នកសម្របសម្រួលរបស់យើងបានពិនិត្យរបាយការណ៍ ហើយបានសម្រេចចិត្តបិទការចូលប្រើការជជែករបស់អ្នកនៅលើ Bluesky"
@@ -8010,16 +8205,17 @@ msgstr "អ្នកសម្របសម្រួលរបស់យើងបា
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "រកមិនឃើញទំព័រ"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "រកមិនឃើញទំព័រ"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "ផ្អាក video"
msgid "People"
msgstr "មនុស្ស"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "មនុស្សតាមដោយ @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "មនុស្សតាម @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "រូបភាពមានន័យសម្រាប់មនុស្សពេញវ័យ"
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr ""
@@ -8152,7 +8348,7 @@ msgstr ""
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr ""
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr ""
@@ -8236,7 +8432,7 @@ msgstr "សូមជ្រើសរើស handle របស់អ្នក"
msgid "Please choose your password."
msgstr "សូមជ្រើសរើសពាក្យសម្ងាត់របស់អ្នក"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "សូមបំពេញការផ្ទៀងផ្ទាត់ captcha"
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "សូមបញ្ចូលឈ្មោះតែមួយគត់សម្រាប់ពាក្យសម្ងាត់កម្មវិធីនេះ ឬប្រើពាក្យសម្ងាត់ដែលបានបង្កើតដោយចៃដន្យរបស់យើង"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "សូមបញ្ចូលអ៊ីមែលរបស់អ្នក"
msgid "Please enter your invite code."
msgstr "សូមបញ្ចូលលេខកូដអញ្ជើញរបស់អ្នក"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "សូមពន្យល់ពីមូលហេតុដែលអ្នកគិតថាស្លាកនេះត្រូវបានអនុវត្តមិនត្រឹមត្រូវដោយ {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "សូមពន្យល់ពីមូលហេតុដែលអ្នកគិតថាការជជែករបស់អ្នកត្រូវបានបិទមិនត្រឹមត្រូវ"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "នយោបាយ"
msgid "Porn"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "ការបង្ហោះ"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Post ទាំងអស់"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr ""
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Post ត្រូវាបានលុប"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "មិនអាចបង្ហោះសារបង្ហោះបានទេ។ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត"
@@ -8454,7 +8650,7 @@ msgstr ""
msgid "Post interaction settings"
msgstr "ការកំណត់អន្តរកម្ម post"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8464,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "ការបង្ហោះអាចត្រូវបានបិទដ
msgid "Posts hidden"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "ចុចដើម្បីព្យាយាមភ្ជាប់ឡើ
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "ចុចដើម្បីព្យាយាមម្តងទៀត"
@@ -8536,7 +8728,7 @@ msgstr "ចុចដើម្បីព្យាយាមម្តងទៀត"
msgid "Press to view followers of this account that you also follow"
msgstr "ចុចដើម្បីមើលអ្នកតាមដានគណនីនេះដែលអ្នកតាមដានផងដែរ"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "ឯកជនភាព"
msgid "Privacy and security"
msgstr "ភាពឯកជន និងសុវត្ថិភាព"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "ភាពឯកជន និងសុវត្ថិភាព"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "គោលការណ៍ឯកជនភាព"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "ដំណើរការវីដេអូ..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "កំពុងដំណើរការ..."
@@ -8602,8 +8793,8 @@ msgstr "កំពុងដំណើរការ..."
msgid "profile"
msgstr "ប្រវត្តិរូប"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "កូដ QR ត្រូវបានទាញយកហើយ"
msgid "QR code saved to your camera roll!"
msgstr "លេខកូដ QR ត្រូវបានរក្សាទុកទៅក្នុងក្រឡុកកាមេរ៉ារបស់អ្នក"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Quote posts ត្រូវបានបិទ"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr ""
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr ""
msgid "Reconnect"
msgstr "ភ្ជាប់ឡើងវិញ"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "ផ្ទុកការសន្ទនាឡើងវិញ"
@@ -8896,17 +9087,17 @@ msgstr "លុបគណនី"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "យកឯកសារភ្ជាប់ចេញ"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "លុប Avatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "លុប Banner"
@@ -8914,8 +9105,9 @@ msgstr "លុប Banner"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "លុបកាបង្កប់"
@@ -8933,8 +9125,8 @@ msgstr "លុបមតិព័ត៌មាន?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "លុបរូបភាព"
@@ -9009,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "លុបចេញដោយ author"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "ដកចេញដោយអ្នក"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "ការឆ្លើយតប"
@@ -9104,14 +9295,14 @@ msgstr "ការឆ្លើយតបត្រូវបានបិទ"
msgid "Replies to this post are disabled."
msgstr "ការឆ្លើយតបទៅនឹងការបង្ហោះនេះត្រូវបានបិទ"
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "ឆ្លើយតប"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9125,10 +9316,6 @@ msgstr "ឆ្លើយតបដែលលាក់ដោយ Thread Author"
msgid "Reply Hidden by You"
msgstr "ឆ្លើយតបដែលលាក់ដោយអ្នក"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "ការកំណត់ការឆ្លើយតបត្រូវបានជ្រើសរើសដោយ author នៃ thread"
@@ -9146,9 +9333,9 @@ msgstr "បានធ្វើបច្ចុប្បន្នភាពភាព
msgid "Reply was successfully hidden"
msgstr "ការឆ្លើយតបត្រូវបានលាក់ដោយជោគជ័យ"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "រាយការណ៍"
@@ -9164,13 +9351,13 @@ msgstr "រាយការណ៍គណនី"
msgid "Report conversation"
msgstr "រាយការណ៍ការសន្ទនា"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "ប្រអប់រាយការណ៍"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "រាយការណ៍ព័ត៌មាន"
@@ -9179,7 +9366,7 @@ msgstr "រាយការណ៍ព័ត៌មាន"
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "រាយការណ៍ពីសារ"
@@ -9199,8 +9386,8 @@ msgstr "រាយការណ៍ពីកញ្ចប់ចាប់ផ្តើ
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "រាយការណ៍ព័ត៌មាននេះ"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "រាយការណ៍បញ្ជីនេះ"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "បង្ហោះឡើងវិញ"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "ផ្សាយឡើងវិញដោយអ្នក"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "ការផ្សាយឡើងវិញនៃប្រកាសនេះ"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "ទាមទារអត្ថបទជំនួសមុនពេលបង្ហោះ"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9328,7 +9534,11 @@ msgstr "ទាមទារសម្រាប់អ្នកផ្តល់សេ
msgid "Required in your region"
msgstr "ទាមទារនៅក្នុងតំបន់របស់អ្នក"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9393,15 +9603,16 @@ msgstr "ព្យាយាមម្តងទៀតនូវសកម្មភា
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "ព្យាយាមម្តងទៀតនូវសកម្មភា
msgid "Retry"
msgstr "ព្យាយាមម្តងទៀត"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9426,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr "ត្រឡប់ទៅទំព័រមុន"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "ត្រឡប់ទៅទំព័រដើមវិញ"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "ត្រឡប់ទៅទំព័រមុនវិញ"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "រក្សាទុកការផ្លាស់ប្តូរ"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "រក្សាទុកកូដ QR"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "រក្សាទុកក្នុងព័ត៌មានរបស់ខ្ញុំ"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "មតិព័ត៌មានដែលបានរក្សាទុក"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "បានរក្សាទុកទៅក្នុងមតិព័ត៌មានរបស់អ្នក"
@@ -9551,8 +9764,8 @@ msgstr "បានរក្សាទុកទៅក្នុងមតិព័ត
msgid "Say hello!"
msgstr "និយាយថាជំរាបសួរ"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "រំកិលទៅកំពូល"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "ស្វែងរក"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9667,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "ស្វែងរកប្រវត្តិរូប"
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "ជ្រើសរើសពណ៌មួយ"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "ជ្រើសរើស GIF"
msgid "Select GIF \"{0}\""
msgstr "ជ្រើសរើស GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "ជ្រើសរើសភាសា..."
msgid "Select languages"
msgstr "ជ្រើសរើសភាសា"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9904,11 +10117,11 @@ msgstr "ជ្រើសរើសចំណាប់អារម្មណ៍រប
msgid "Select your preferred language for translations in your feed."
msgstr "ជ្រើសរើសភាសាដែលអ្នកពេញចិត្តសម្រាប់ការបកប្រែនៅក្នុងព័ត៌មានរបស់អ្នក"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "ផ្ញើអ៊ីមែល"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "ផ្ញើមតិកែលម្អ"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "ផ្ញើសារ"
@@ -9952,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr "ផ្ញើរសារទៅ..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9960,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "ផ្ញើតាមសារផ្ទាល់"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "កំណត់អ៊ីមែលសម្រាប់កំណត់ពាក្យសម្ងាត់ឡើងវិញ"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "ការកំណត់"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "សកម្មភាពផ្លូវភេទ ឬអាក្រា
msgid "Sexually Suggestive"
msgstr "ចំណង់ផ្លូវភេទ"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr "ចែករំលែកកូដ QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10151,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "កម្មវិធីសាកល្បងចំណូលចិត្តដែលបានចែករំលែក"
@@ -10167,16 +10382,16 @@ msgstr "បង្ហាញអត្ថបទជំនួស"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "បង្ហាញ"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "បង្ហាញការព្រមាន និងត្រងពីមតិព័ត៌មាន"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr "ចូល ឬបង្កើតគណនីរបស់អ្នក ដើម្បីចូលរួមការសន្ទនា"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "ចូលទៅគណនីដែលមិនមានក្នុងបញ្ជី"
@@ -10337,6 +10558,10 @@ msgstr "ចូលទៅគណនីដែលមិនមានក្នុងប
msgid "Sign in to Bluesky or create a new account"
msgstr "ចូល Bluesky ឬបង្កើតគណនីថ្មីមួយ"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "ចេញ"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "ចេញ"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "ចេញ?"
@@ -10391,7 +10616,7 @@ msgstr "រំលង"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "តូចជាង"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "មានអ្វីមួយខុសប្រក្រតី"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "មានអ្វីមួយខុសប្រក្រតី"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr ""
@@ -10568,7 +10798,7 @@ msgstr "កីឡា"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "ចាប់ផ្តើមការជជែកថ្មី"
@@ -10582,17 +10812,17 @@ msgstr ""
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "ចាប់ផ្តើមជជែកជាមួយ {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "កញ្ចប់ចាប់ផ្តើម"
@@ -10654,12 +10884,12 @@ msgstr "កន្លែងផ្ទុកត្រូវបានសម្អា
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "ដាក់ស្នើ"
@@ -10684,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "ជាវ"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "ជោគជ័យ!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "គាំទ្រ"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "ប្តូរគណនី"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10828,7 +11062,7 @@ msgstr "ស្លាកតែប៉ុណ្ណោះ"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "ប៉ះដើម្បីច្រានចោល"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "លក្ខខណ្ឌ"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "អត្ថបទ & ស្លាក"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "វាលបញ្ចូលអត្ថបទ"
@@ -11049,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "គោលការណ៍ឯកជនភាពត្រូវបានផ្លាស់ទីទៅ <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "មានបញ្ហាក្នុងការទាក់ទងម៉ាស៊ីនមេ"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "មានបញ្ហាក្នុងការទាក់ទងម៉ាស៊ីនមេ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត"
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "មានបញ្ហាក្នុងការទាញយកការជូនដំណឹង។ ចុចទីនេះដើម្បីព្យាយាមម្តងទៀត"
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "មានបញ្ហាក្នុងការទាញយកសារបង្ហោះ។ ចុចទីនេះដើម្បីព្យាយាមម្តងទៀត"
@@ -11161,7 +11420,7 @@ msgstr "មានបញ្ហាក្នុងការទាញយកព័ត
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "មានបញ្ហាក្នុងការដកមតិព័ត៌មាននេះចេញ។ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "បណ្ដឹងតវ៉ានេះនឹងត្រូវបានផ្ញើទៅ <0>{sourceName}0>"
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "ការអំពាវនាវនេះនឹងត្រូវបញ្ជូនទៅសេវាកម្មសម្របសម្រួលរបស់ Bluesky"
@@ -11263,7 +11522,7 @@ msgstr "ការអំពាវនាវនេះនឹងត្រូវបញ
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "ខ្លឹមសារនេះមិនមានទេ ដោយស
msgid "This content is not viewable without a Bluesky account."
msgstr "ខ្លឹមសារនេះមិនអាចមើលបានដោយគ្មានគណនី Bluesky ទេ"
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11318,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr "មតិព័ត៌មាននេះលែងមានអ៊ីនធ
msgid "This handle is reserved. Please try a different one."
msgstr "ចំណុចទាញនេះត្រូវបានបម្រុងទុក។ សូមសាកល្បងមួយផ្សេងទៀត"
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr ""
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "ប្រកាសនេះនឹងត្រូវបានលាក់ពីមតិព័ត៌មាន និងខ្សែស្រលាយ។ នេះមិនអាចត្រឡប់វិញបានទេ"
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "អ្នកនិពន្ធនៃប្រកាសនេះបានបិទការបង្ហោះសម្រង់"
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "ការឆ្លើយតបនេះនឹងត្រូវបានតម្រៀបជាផ្នែកដែលលាក់នៅផ្នែកខាងក្រោមនៃខ្សែស្រឡាយរបស់អ្នក ហើយនឹងបិទការជូនដំណឹងសម្រាប់ការឆ្លើយតបជាបន្តបន្ទាប់ - ទាំងសម្រាប់ខ្លួនអ្នកនិងអ្នកដទៃ"
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr "អ្នកប្រើប្រាស់នេះមិនមានអ្នកតាមទេ"
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "អ្នកប្រើប្រាស់នេះបានរារាំងអ្នក។ អ្នកមិនអាចមើលមាតិការបស់ពួកគេបានទេ"
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "ចំណូលចិត្តខ្សែស្រឡាយ"
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr ""
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "ដើម្បីបិទវិធីសាស្ត្រ 2FA អ៊ីមែល សូមផ្ទៀងផ្ទាត់ការចូលប្រើអាសយដ្ឋានអ៊ីមែលរបស់អ្នក"
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11646,12 +11927,12 @@ msgstr "កំពូល"
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11763,11 +12044,15 @@ msgstr "មិនអាចទាក់ទងសេវាកម្មរបស់
msgid "Unable to delete"
msgstr "មិនអាចលុបបានទេ"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr "ឈប់តាមដានគណនី"
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11918,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "បើកការសន្ទនា"
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr ""
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr ""
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr ""
@@ -12030,11 +12315,11 @@ msgstr "ឈប់ជាវពីអ្នកដាក់ស្លាកនេះ
msgid "Unsubscribed from list"
msgstr "ឈប់ជាវពីបញ្ជី"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "ធ្វើបច្ចុប្បន្នភាព <0>{displayName}0> នៅក្នុងបញ្ជី"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "ធ្វើបច្ចុប្បន្នភាពទៅ {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "ការធ្វើបច្ចុប្បន្នភាពលទ្ធភាពមើលឃើញការឆ្លើយតបបានបរាជ័យ"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "បង្ហោះរូបថតជំនួសវិញ"
@@ -12098,39 +12395,40 @@ msgstr "បង្ហោះរូបថតជំនួសវិញ"
msgid "Upload a text file to:"
msgstr "បង្ហោះឯកសារអត្ថបទទៅ៖"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "បង្ហោះពីកាមេរ៉ា"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "បង្ហោះពីឯកសារ"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "បង្ហោះពីបណ្ណាល័យ"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "កំពុងបង្ហោះរូបភាព..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "កំពុងបង្ហោះរូបភាពតូចនៃតំណ..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "កំពុងបង្ហោះវីដេអូ..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "បញ្ជីអ្នកប្រើប្រាស់ដោយ {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "អ្នកប្រើតាមដោយ <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "ផ្ទៀងផ្ទាត់ DNS Record"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12349,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr "វីដេអូ"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "វីដេអូបានបរាជ័យក្នុងដំណើរការ"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12419,7 +12717,7 @@ msgstr "រកមិនឃើញវីដេអូ"
msgid "Video settings"
msgstr "ការកំណត់វីដេអូ"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "បង្ហោះវីដេអូ"
@@ -12432,18 +12730,18 @@ msgstr "វីដេអូ៖ {0}"
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "មើលរូបតំណាងរបស់ {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "មើលប្រវត្តិរូបរបស់ {0}"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "មើលព័ត៌មានលម្អិត"
msgid "View full thread"
msgstr "មើល thread ពេញ"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "មើលព័ត៌មានអំពីស្លាកទាំងនេះ"
@@ -12522,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "មើលប្រវត្តិរូប"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "មើលរូបតំណាង"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "មើលសេវាកម្មដាក់ស្លាកដែលផ
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "មើលអ្នកប្រើប្រាស់ដែលចូលចិត្តព័ត៌មាននេះ"
@@ -12596,8 +12902,8 @@ msgstr "មើលគណនីដែលបានបិទរបស់អ្នក
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12640,8 +12946,8 @@ msgstr "មាតិកាព្រមាន"
msgid "Warn content and filter from feeds"
msgstr "ព្រមានខ្លឹមសារ និងត្រងពីមតិព័ត៌មាន"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "យើងមិនអាចផ្ទុកការសន្ទនានេះបានទេ"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "យើងមិនអាចកំណត់ថាតើអ្នកត្រូវបានអនុញ្ញាតឱ្យបង្ហោះវីដេអូឬអត់។ សូមព្យាយាមម្តងទៀត"
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "យើងកំពុងមានបញ្ហាបណ្តាញ សូមព្យាយាមម្តងទៀត"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "យើងសុំទោស! ប្រកាសដែលអ្នកកំពុងឆ្លើយតបត្រូវបានលុប"
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "យើងសុំទោស! យើងមិនអាចស្វែងរកទំព័រដែលអ្នកកំពុងស្វែងរកបានទេ"
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "តើអ្នកចង់ហៅកញ្ចប់ចាប់ផ្តើមរបស់អ្នកថាម៉េច?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "មានរឿងអី?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12878,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr "តើអ្នកណាអាចទាក់ទងជាមួយការបង្ហោះនេះ?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "អ្នកដែលអាចឆ្លើយបាន"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr ""
@@ -12939,7 +13249,7 @@ msgstr "ហេតុអ្វីបានជាកញ្ចប់ចាប់ផ
msgid "Why should this user be reviewed?"
msgstr "ហេតុអ្វីបានជាអ្នកប្រើប្រាស់នេះគួរត្រូវបានពិនិត្យ?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "សរសេរសារបង្ហោះ"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "សរសេរការឆ្លើយតបរបស់អ្នក"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "ខុស DID ត្រឡប់ពីម៉ាស៊ីនមេ។ បានទទួល៖ {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr ""
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យបង្ហោះវីដេអូទេ"
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "អ្នកអាចបន្តការសន្ទនាបន្តដោយមិនគិតពីការកំណត់ណាមួយដែលអ្នកជ្រើសរើស"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "ឥឡូវនេះ អ្នកអាចចូលដោយប្រើពាក្យសម្ងាត់ថ្មីរបស់អ្នក"
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "អ្នកអាចដំណើរការគណនីរបស់អ
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "អ្នកមិនមានព័ត៌មានដែលបានរ
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "អ្នកបានឈានដល់ដែនកំណត់បណ្តោះអាសន្នសម្រាប់ការបង្ហោះវីដេអូ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ"
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "អ្នកត្រូវតែតាមយ៉ាងហ
msgid "You must grant access to your photo library to save a QR code"
msgstr "អ្នកត្រូវតែផ្តល់សិទ្ធិចូលប្រើបណ្ណាល័យរូបថតរបស់អ្នក ដើម្បីរក្សាទុកកូដ QR"
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "អ្នកនឹងត្រូវបានចេញពីគណនីរបស់អ្នកទាំងអស់"
@@ -13390,7 +13710,7 @@ msgstr "ឥឡូវនេះ អ្នកនឹងទទួលបានកា
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "អ្នកនឹងទទួលបានអ៊ីមែលដែលមាន \"កំណត់កូដឡើងវិញ\" បញ្ចូលលេខកូដនោះនៅទីនេះ បន្ទាប់មកបញ្ចូលពាក្យសម្ងាត់ថ្មីរបស់អ្នក។"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "អ្នកបានដល់ចុងបញ្ចប់នៃព័ត៌មានរបស់អ្នកហើយ! ស្វែងរកគណនីមួយចំនួនទៀតដើម្បីតាមដាន"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "អ្នកបានឈានដល់ដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នកសម្រាប់ការបង្ហោះវីដេអូ (ច្រើនបៃ)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "អ្នកបានឈានដល់ដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នកសម្រាប់ការបង្ហោះវីដេអូ (វីដេអូច្រើនពេក)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "គណនីរបស់អ្នកមិនទាន់ចាស់គ្រប់គ្រាន់ក្នុងការបង្ហោះវីដេអូ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ"
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "ឃ្លាំងគណនីរបស់អ្នកដែលមានកំណត់ត្រាទិន្នន័យសាធារណៈទាំងអស់ អាចទាញយកជាឯកសារ \"CAR\"។ ឯកសារនេះមិនរួមបញ្ចូលការបង្កប់មេឌៀ ដូចជារូបភាព ឬទិន្នន័យឯកជនរបស់អ្នក ដែលត្រូវតែទាញយកដោយឡែកពីគ្នា"
@@ -13519,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr "ថ្ងៃខែឆ្នាំកំណើតរបស់អ្នក"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "ការជជែករបស់អ្នកត្រូវបានបិទ"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "អ៊ីមែលរបស់អ្នកហាក់ដូចជាមិនត្រឹមត្រូវ"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13582,7 +13910,7 @@ msgstr "មតិព័ត៌មានខាងក្រោមរបស់អ្
msgid "Your full handle will be <0>@{0}0>"
msgstr "ចំណុចទាញពេញលេញរបស់អ្នកនឹងមាន <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "ពាក្យដែលអ្នកបានបិទ"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13661,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po
index 41d79856f8..cc9ec57052 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, other {#분}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, other {#개월}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr "{0, plural, other {새 참여 요청 #개}}"
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, other {#명}} 반응함 – {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, other {#초}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "읽지 않은 항목 {0, plural, other {#개}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr "{0, plural, other {#분}}"
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} 팔로우 중"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr "{0} 님이 나를 차단했습니다"
@@ -264,7 +269,7 @@ msgstr "{0}/50자"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} 님이 {1}(으)로 반응함"
@@ -309,16 +314,38 @@ msgstr "{1} 님의 리스트 {0}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "{0} 님의 프로필 사진"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "{0} 님의 프로필 사진"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr "{0}/{1}"
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr "{0}/{1} {2, plural, other {멤버}}"
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr "{0}/{1} 멤버"
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}분"
msgid "{0}s"
msgstr "{0}초"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr "{count, plural, =0 {참여 요청 없음} other {참여 요청 #개}}"
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr "{count, plural, other {대화 업데이트 #개}}"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr "{count, plural, other {새 참여 요청 #개}}"
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, other {#개 요청}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "읽지 않은 항목 {count, plural, other {#개}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr "{count, plural, one {페이지를 새로 고침하고 확인하세요.} other {페이지를 새로 고침하고 모두 확인하세요.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr "이 게시물에는 사진이 {count, plural, other {#장}} 있습니다."
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr "{count, plural, one {앱을 업데이트하고 확인하세요.} other {앱을 업데이트하고 모두 확인하세요.}}"
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr "{count, plural, other {참여 요청 #+개}}"
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "{count}+"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "{count}+개 요청"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} 님이 나를 인증했습니다"
msgid "{following} following"
msgstr "{following} 팔로우 중"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "{handle} 님은 추가할 수 없습니다"
@@ -547,7 +599,7 @@ msgstr "{handle} 님은 추가할 수 없습니다"
msgid "{handle} can't be messaged"
msgstr "{handle} 님에게 메시지를 보낼 수 없습니다"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "{handle} 님에게 메시지를 보낼 수 없습니다"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, other {#시간 {minutesString}}}"
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, other {#시간}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "새 참여 요청 {JOIN_REQUESTS_THRESHOLD}+개"
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "새 참여 요청 {JOIN_REQUESTS_THRESHOLD}+개"
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,9 +643,9 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "답글은 최대 {MAX_HIDDEN_REPLIES, plural, other {#개}}까지 숨길 수 있습니다."
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
-msgstr ""
+msgstr "{memberCount}/{memberLimit}"
#: src/features/liveNow/utils.ts:10
msgid "{minutes, plural, one {# minute} other {# minutes}}"
@@ -607,7 +669,7 @@ msgstr "{name} 님이 좋아하는 피드와 사람들을 소개합니다. 함
msgid "{name}'s starter pack"
msgstr "{name} 님의 스타터 팩"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "읽지 않은 항목 {notificationCount, plural, other {#개}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, other {#개 요청}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "{requestCount}+개 요청"
@@ -795,8 +857,11 @@ msgstr "네트워크 오류가 발생했습니다. 인터넷 연결 상태를
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "네트워크 오류가 발생했습니다. 인터넷 연결 상태를 확인해 주세요."
@@ -804,7 +869,7 @@ msgstr "네트워크 오류가 발생했습니다. 인터넷 연결 상태를
msgid "A new code has been sent"
msgstr "새 코드를 보냈습니다"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "새로운 방식의 인증"
@@ -827,11 +892,11 @@ msgstr "팔로우 버튼 옆에 새 활동 알림 기능을 나타내는 종 모
msgid "A screenshot of 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 "‘임시 저장’이라는 새로운 버튼이 추가된 게시물 작성기 스크린샷. 버튼에는 무지개색 폭죽 효과가 적용되어 있습니다. 버튼 아래에는 “이봐, 소식 들었어? 이제 Bluesky에 임시 저장 기능이 생겼대!!!”라는 문구가 적혀 있습니다."
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
-msgstr ""
+msgstr "선택한 수신자를 발신자가 팔로우하지 않았습니다."
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "모욕 또는 차별 행위"
msgid "Accept"
msgstr "수락"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "수락"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "대화 요청 수락하기"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr "참여 요청 수락하기"
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "요청 수락"
@@ -860,17 +935,26 @@ msgstr "요청 수락"
msgid "Accept this language suggestion"
msgstr "이 언어 제안 수락하기"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr "수락한 대화"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr "참여 요청 완료! 그룹 소유자가 요청을 검토할 예정입니다"
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "접근성"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "접근성 설정"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "계정을 언뮤트했습니다"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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에서 선정합니다."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "다른 사용자의 활동"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "활동 알림"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "추가"
@@ -999,8 +1079,8 @@ msgstr "계정 추가"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "대체 텍스트 추가 (선택 사항)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "다른 계정 추가"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "다른 게시물 추가하기"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "스레드에 다른 게시물 추가"
@@ -1035,7 +1115,7 @@ msgstr "앱 비밀번호 추가"
msgid "Add App Password"
msgstr "앱 비밀번호 추가"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "계정에 자동화 라벨 추가"
@@ -1043,7 +1123,7 @@ msgstr "계정에 자동화 라벨 추가"
msgid "Add emoji reaction"
msgstr "이모티콘 반응 추가"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "그룹 대화 멤버 추가"
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "게시물에 미디어 추가"
@@ -1062,8 +1142,8 @@ msgstr "게시물에 미디어 추가"
msgid "Add members"
msgstr "멤버 추가"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "세부 정보 추가 (선택 사항)"
@@ -1080,8 +1160,8 @@ msgstr "선택한 설정으로 뮤트 단어 추가"
msgid "Add muted words and tags"
msgstr "뮤트할 단어 및 태그 추가"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "리스트에 멤버를 추가하는 중…"
msgid "Additional details (limit 1000 characters)"
msgstr "추가 세부 정보 (1000자 이내)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "추가 세부 정보 (300자 이내)"
@@ -1228,12 +1308,12 @@ msgstr "연령 확인 요청을 제출했습니다"
msgid "Age assurance only takes a few minutes"
msgstr "연령 확인은 몇 분이면 완료됩니다"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "모두"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "전체 {0}"
@@ -1278,13 +1358,13 @@ msgstr "다이렉트 메시지 접근 허용"
msgid "Allow anyone to reply"
msgstr "누구나 답글을 달 수 있도록 허용"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "다이렉트 메시지를 허용할 대상"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr "그룹 대화 초대를 허용할 대상"
@@ -1338,12 +1418,12 @@ msgstr "이미 계정이 있나요?"
msgid "Already signed in as @{0}"
msgstr "이미 @{0}(으)로 로그인했습니다"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "대체 텍스트"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "대체 텍스트는 시각장애인과 저시력 사용자를 위해 이미지를 설명하며 모든 사용자의 이해를 돕습니다."
@@ -1387,7 +1467,7 @@ msgstr "오류 발생"
msgid "An error occurred"
msgstr "오류 발생"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "동영상을 압축하는 동안 오류가 발생했습니다."
@@ -1432,11 +1512,11 @@ msgstr "QR 코드를 저장하는 동안 오류가 발생했습니다"
msgid "An error occurred while trying to follow all"
msgstr "모두 팔로우하려고 하는 동안 오류가 발생했습니다"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "동영상을 업로드하는 동안 오류가 발생했습니다. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "동영상을 업로드하는 동안 오류가 발생했습니다. 인터넷 연결 상태를 확인하고 다시 시도해 주세요."
@@ -1461,21 +1541,21 @@ msgstr "재게시, 좋아요, 댓글 아이콘과 함께 여러 Bluesky 게시
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Bluesky가 신뢰할 수 있는 인증자를 선정하고 신뢰할 수 있는 인증자가 차례로 개별 사용자 계정을 인증하는 과정을 보여주는 그림."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "초대 링크를 사용하면 사용자를 직접 추가하지 않아도 사람들이 이 그룹 채팅에 참여할 수 있습니다. 링크 사용 권한 및 승인 필요 여부를 직접 설정할 수 있으며 언제든지 링크를 비활성화할 수 있습니다."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr "초대 링크를 사용하면 사람들을 직접 추가하지 않고도 그룹 대화에 초대할 수 있습니다. 누가 대화에 참여할 수 있는지 직접 관리하며, 언제든지 링크를 비활성화할 수 있습니다."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "어떤 옵션에도 포함되지 않는 문제"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
-msgstr ""
+msgstr "그룹 대화 만드는 동안 문제가 발생했습니다. 다시 시도해 주세요."
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
-msgstr ""
+msgstr "대화를 시작하는 동안 문제가 발생했습니다. 다시 시도해 주세요."
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
msgid "An issue occurred while trying to open the chat"
@@ -1490,7 +1570,7 @@ msgstr "대화를 여는 동안 문제가 발생했습니다"
msgid "An issue occurred, please try again."
msgstr "문제가 발생했습니다. 다시 시도해 주세요."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "파란색 체크 표시가 달린 인증된 사용자의 프로필 화면이 열린 Bluesky 앱을 iPhone에 띄워 보여주는 목업 이미지."
@@ -1539,13 +1619,17 @@ msgstr "누구나"
msgid "Anyone can interact"
msgstr "누구나 상호작용할 수 있음"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr "누구나 참여할 수 있음"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "누구나 바로 참여할 수 있음"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "누구나 참여 요청할 수 있음"
@@ -1555,11 +1639,11 @@ msgstr "누구나 참여 요청할 수 있음"
msgid "Anyone who follows me"
msgstr "나를 팔로우하는 모든 사용자"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr "이 링크를 가진 사람은 더 이상 참여하거나 참여 요청을 할 수 없습니다. 새 링크는 언제든지 다시 만들 수 있습니다."
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "앱 비밀번호 이름은 4자 이상이어야 합니다"
msgid "App passwords"
msgstr "앱 비밀번호"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "앱 비밀번호"
@@ -1618,7 +1702,7 @@ msgstr "라이브 스트리밍 정지 이의신청"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "이의신청을 제출했습니다"
@@ -1632,14 +1716,14 @@ msgstr "일시 정지 이의신청"
msgid "Appeal Suspension"
msgstr "일시 정지 이의신청"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "이 결정에 이의신청"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "정말로 진행하시겠습니까?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "앱 비밀번호 ‘{0}’(을)를 삭제하시겠습니까?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "이 메시지를 정말 삭제하시겠습니까? 삭제하더라도 다른 참여자에게는 메시지가 그대로 표시됩니다."
@@ -1688,23 +1772,23 @@ msgstr "이 스타터 팩을 삭제하시겠습니까?"
msgid "Are you sure you want to discard your changes?"
msgstr "변경 사항을 삭제하시겠습니까?"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "정말 {groupName}에서 나가시겠습니까?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr "이 대화에서 나가시겠습니까?"
-#: 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 "정말 이 대화에서 나가시겠습니까? 나에게 보이는 메시지는 삭제되지만 상대방에게는 삭제되지 않습니다."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr "정말 이 대화에서 나가시겠습니까? 메시지는 본인의 화면에서만 삭제되며 다른 참여자에게는 그대로 유지됩니다."
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr "내 피드에서 이 피드를 삭제하시겠습니까?"
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "이 게시물을 삭제하시겠습니까?"
@@ -1752,7 +1836,7 @@ msgstr "자동화된 계정"
msgid "Automation label"
msgstr "자동화 라벨"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "자동화 라벨"
@@ -1767,12 +1851,12 @@ msgstr "동영상 및 GIF 자동 재생"
msgid "Available"
msgstr "사용 가능"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "사용 가능"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "사용 가능"
msgid "Back"
msgstr "뒤로"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "대화로 돌아가기"
@@ -1840,12 +1926,12 @@ msgstr "이 대화 요청을 수락하려면 먼저 이메일을 인증해야
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "{name} 님의 게시물에 대한 알림을 받으려면 먼저 이메일을 인증해야 합니다."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "다른 사용자에게 메시지를 보내려면 먼저 이메일을 인증해야 합니다."
@@ -1877,7 +1963,7 @@ msgstr "생년월일"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "{displayName} 님 차단하기"
msgid "Block account"
msgstr "계정 차단"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "계정을 차단하시겠습니까?"
@@ -1912,15 +1998,15 @@ msgstr "계정을 차단하시겠습니까?"
msgid "Block accounts"
msgstr "계정 차단"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
-msgstr ""
+msgstr "차단 및 삭제"
#. After-report action for a conversation
#: src/components/dms/AfterReportConversationDialog.tsx:167
msgctxt "button"
msgid "Block and leave"
-msgstr ""
+msgstr "차단 및 나가기"
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
msgid "Block list"
@@ -1936,9 +2022,9 @@ msgstr "이 계정들을 차단하시겠습니까?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "사용자 차단"
@@ -1946,17 +2032,17 @@ msgstr "사용자 차단"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "사용자 차단"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "사용자를 차단하거나 이 대화를 삭제하기"
#: src/components/dms/AfterReportConversationDialog.tsx:217
msgid "Block user and/or leave this conversation"
-msgstr ""
+msgstr "사용자를 차단하거나 이 대화에서 나가기"
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "차단됨"
@@ -1964,13 +2050,13 @@ msgstr "차단됨"
msgid "Blocked accounts"
msgstr "차단한 계정"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "차단한 계정"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "차단한 계정은 내 스레드에 답글을 달거나 나를 멘션하거나 기타 다른 방식으로 나와 상호작용할 수 없습니다."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky는 친구와 함께하면 더 좋답니다!"
msgid "Bluesky is more fun with friends"
msgstr "Bluesky는 친구들과 함께하면 더욱 즐거워집니다"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Bluesky는 친구들과 함께하면 더욱 즐거워집니다! 연락처를 가져와서 누가 이미 Bluesky에 있는지 확인해 보세요."
@@ -2053,7 +2139,7 @@ msgstr "Bluesky가 네트워크에 있는 사용자 중에서 임의로 추천
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:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky는 주목할 만하고 신뢰할 수 있는 계정을 우선적으로 인증합니다."
@@ -2137,25 +2223,32 @@ msgstr "비즈니스"
msgid "Button to go back to the home timeline"
msgstr "홈 타임라인으로 돌아가려면 버튼을 누르세요"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
-msgstr "{0} 님이 만듦"
+msgstr "{0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
-msgstr "<0>{0}0> 님이 만듦"
+msgstr "<0>{0}0>"
+
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr "소유자: <0>{ownerDisplayName}0>"
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
-msgstr "<0>@{0}0> 님이 만듦"
+msgstr "<0>@{0}0>"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182
msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates."
@@ -2181,7 +2274,7 @@ msgstr "계정을 만들면 <0>서비스 이용약관0>에 동의하는 것입
msgid "By you"
msgstr "내가 만듦"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "카메라"
@@ -2192,8 +2285,8 @@ msgstr "카메라"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "카메라"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "카메라"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "취소"
@@ -2248,9 +2341,9 @@ msgstr "재활성화 취소 및 로그아웃"
msgid "Cancel search"
msgstr "검색 취소"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "차단된 사용자와 상호작용할 수 없습니다"
@@ -2264,7 +2357,7 @@ msgstr "자막(.vtt)"
msgid "Captions & alt text"
msgstr "자막 및 대체 텍스트"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "캐러셀"
@@ -2297,7 +2390,7 @@ msgstr "앱 언어 변경"
msgid "Change Handle"
msgstr "핸들 변경"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "검토 서비스 변경"
@@ -2310,11 +2403,11 @@ msgstr "비밀번호 변경"
msgid "Change password dialog"
msgstr "비밀번호 변경 대화 상자"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "신고 카테고리 변경"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "신고 이유 변경"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "리스트를 만든 후에는 스타터 팩의 변경 사항이 리스트에 반영되지 않습니다. 리스트는 별도의 사본으로 저장됩니다."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "대화"
@@ -2361,6 +2454,13 @@ msgstr "대화를 삭제했습니다"
msgid "Chat ended"
msgstr "대화가 종료되었습니다"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr "대화 초대 링크를 사용할 수 없습니다"
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "대화가 잠겼습니다"
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "대화를 뮤트했습니다"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
-msgstr ""
+msgstr "대화 수신자가 발신자를 팔로우하지 않았습니다."
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "대화 요청 수신함"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "대화 요청"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "대화 설정"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "대화 설정"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "대화를 언뮤트했습니다"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "대화"
@@ -2479,7 +2579,7 @@ msgstr "게시물 언어 선택"
msgid "Choose this color as your avatar"
msgstr "이 색상을 아바타로 선택"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "이 그룹 대화에 참여할 수 있는 사람과 참여 방식을 선택하세요."
@@ -2533,7 +2633,7 @@ msgstr "세부 정보 보기"
msgid "click here"
msgstr "이곳을 클릭"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "이곳을 클릭하여 그룹 대화에 사용자를 추가하기"
@@ -2541,7 +2641,7 @@ msgstr "이곳을 클릭하여 그룹 대화에 사용자를 추가하기"
msgid "Click here to contact our support team"
msgstr "이곳을 클릭하여 고객 지원팀에 문의하기"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "이곳을 클릭하여 이 그룹 대화의 초대 링크를 생성하거나 관리하기"
@@ -2558,7 +2658,7 @@ msgstr "이곳을 클릭하여 로그아웃하기"
msgid "Click here to resend the email"
msgstr "이곳을 클릭하여 이메일 다시 전송하기"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "인증 절차를 다시 시작하려면 이곳을 클릭하세요."
@@ -2567,11 +2667,11 @@ msgstr "인증 절차를 다시 시작하려면 이곳을 클릭하세요."
msgid "Click here to update your birthdate"
msgstr "이곳을 클릭하여 생년월일 변경하기"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "이곳을 클릭하여 이메일 변경하기"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "이곳을 클릭하여 이 그룹 대화의 초대 링크 보기"
@@ -2580,7 +2680,7 @@ msgstr "이곳을 클릭하여 이 그룹 대화의 초대 링크 보기"
msgid "Click to open tag menu for {0}"
msgstr "클릭하여 {0}에 대한 태그 메뉴를 엽니다"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "클릭하여 메시지 다시 보내기"
@@ -2594,28 +2694,30 @@ msgstr "클릭하여 메시지 다시 보내기"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "클릭하여 메시지 다시 보내기"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "열려 있는 대화 상자 닫기"
msgid "Close alert"
msgstr "알림 닫기"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr "배너 닫기"
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "하단 서랍 닫기"
@@ -2657,8 +2763,9 @@ msgstr "하단 서랍 닫기"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "대화 상자 닫기"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "이미지 닫기"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "이미지 뷰어 닫기"
@@ -2683,6 +2790,14 @@ msgstr "이미지 뷰어 닫기"
msgid "Close menu"
msgstr "매뉴 닫기"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr "참여 요청 배너를 닫습니다"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "이 대화 상자 닫기"
@@ -2695,7 +2810,7 @@ msgstr "환영 대화 상자 닫기"
msgid "Closes password update alert"
msgstr "비밀번호 변경 알림을 닫습니다"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "게시물 작성기를 닫고 게시물 초안을 삭제합니다"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "만화"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "커뮤니티 가이드라인"
@@ -2740,12 +2855,12 @@ msgstr "챌린지 완료하기"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "새 게시물 작성하기"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "게시물을 최대 {0, plural, other {#자}}까지 작성할 수 있습니다"
@@ -2753,11 +2868,11 @@ msgstr "게시물을 최대 {0, plural, other {#자}}까지 작성할 수 있습
msgid "Compose reply"
msgstr "답글 작성하기"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "GIF 압축 중…"
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "동영상 압축 중…"
@@ -2780,7 +2895,7 @@ msgstr "<0>검토 설정0>에서 설정합니다."
msgid "Confirm"
msgstr "확인"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "콘텐츠 및 미디어"
msgid "Content and media"
msgstr "콘텐츠 및 미디어"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "콘텐츠 및 미디어"
@@ -2889,7 +3004,7 @@ msgstr "컨텍스트 메뉴 배경을 클릭하여 메뉴를 닫습니다."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "스레드 더 보기"
msgid "Continue thread..."
msgstr "스레드 더 보기…"
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "그룹 이름으로 계속"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "다음 단계로 계속하기"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "대화"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "대화 삭제됨"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "대화를 삭제했습니다"
@@ -2939,13 +3054,20 @@ msgstr "대화를 삭제했습니다"
#: src/components/dms/AfterReportConversationDialog.tsx:179
msgctxt "toast"
msgid "Conversation left"
-msgstr ""
+msgstr "대화에서 나갔습니다"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr "대화를 찾을 수 없습니다."
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "빌드 버전을 클립보드에 복사했습니다"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "DID 복사"
msgid "Copy host"
msgstr "호스트 복사"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "프로필 링크 복사"
msgid "Copy link to starter pack"
msgstr "스타터 팩 링크 복사"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "메시지 텍스트 복사"
@@ -3052,7 +3175,7 @@ msgstr "TXT 레코드 값 복사"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "저작권 정책"
@@ -3065,7 +3188,7 @@ msgstr "맞춤 피드에 연결할 수 없습니다"
msgid "Could not connect to feed service"
msgstr "피드 서비스에 연결할 수 없습니다"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr "게시물을 가져올 수 없습니다"
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "모든 사용자를 팔로우할 수 없습니다. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "대화에서 나갈 수 없습니다"
@@ -3094,6 +3217,10 @@ msgstr "대화에서 나갈 수 없습니다"
msgid "Could not load feed"
msgstr "피드를 불러올 수 없습니다"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr "초대를 불러올 수 없습니다"
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "국가 코드"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "만들기"
@@ -3159,7 +3286,7 @@ msgstr "스타터 팩 QR 코드 만들기"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "스타터 팩 만들기"
@@ -3174,13 +3301,14 @@ msgstr "나를 위한 스타터 팩 만들기"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "계정 만들기"
msgid "Create an account without using this starter pack"
msgstr "이 스타터 팩을 사용하지 않고 계정 만들기"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "대신 아바타 만들기"
@@ -3206,7 +3334,7 @@ msgstr "대신 아바타 만들기"
msgid "Create another"
msgstr "다른 스타터 팩 만들기"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "그룹 대화 만들기"
@@ -3228,19 +3356,20 @@ msgstr "스타터 팩에서 리스트 만들기"
msgid "Create moderation list"
msgstr "검토 리스트 만들기"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "새 계정 만들기"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr "이 그룹 대화의 초대 링크를 생성하거나 수정하기"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "{0}에 대한 신고 작성하기"
@@ -3256,8 +3385,8 @@ msgstr "사용자 리스트 만들기"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "{0}에 생성됨"
@@ -3341,7 +3470,7 @@ msgstr "기본"
msgid "Default icons"
msgstr "기본 아이콘"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "대화 신고 기록 삭제"
msgid "Delete contacts"
msgstr "연락처 삭제"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "대화 삭제"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "나에게서 삭제"
@@ -3399,11 +3528,11 @@ msgstr "나에게서 삭제"
msgid "Delete list"
msgstr "리스트 삭제"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "메시지 삭제"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "나에게 보이는 메시지 삭제"
@@ -3413,7 +3542,7 @@ msgstr "내 계정 삭제"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "게시물 삭제"
@@ -3434,12 +3563,12 @@ msgstr "이 리스트를 삭제하시겠습니까?"
msgid "Delete this post?"
msgstr "이 게시물을 삭제하시겠습니까?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "삭제됨"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "삭제된 계정"
@@ -3507,13 +3636,13 @@ msgstr "대화 상자: 이 게시물과 상호작용할 수 있는 사용자 조
msgid "Dim"
msgstr "어둑함"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "비활성화"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "2단계 인증 비활성화"
@@ -3521,7 +3650,7 @@ msgstr "2단계 인증 비활성화"
msgid "Disable captions"
msgstr "캡션 비활성화"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "이메일 2단계 인증 비활성화"
@@ -3534,8 +3663,8 @@ msgstr "이메일 2단계 인증 끄기"
msgid "Disable haptic feedback"
msgstr "햅틱 피드백 끄기"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr "링크 비활성화"
@@ -3547,7 +3676,7 @@ msgstr "이 게시물의 인용 게시물을 비활성화"
msgid "Disable replies entirely"
msgstr "답글을 완전히 비활성화"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "이 초대 링크를 비활성화하시겠습니까?"
@@ -3560,9 +3689,9 @@ msgstr "사용 안 함"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "삭제"
msgid "Discard changes?"
msgstr "변경 사항 삭제"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "임시 저장을 삭제하시겠습니까?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "게시물 삭제"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Germ DM 연결 해제"
@@ -3613,11 +3742,11 @@ msgstr "새 피드 발견하기"
msgid "Dismiss"
msgstr "닫기"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "배너 닫기"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "오류 무시"
@@ -3673,7 +3802,7 @@ msgstr "나체를 포함하지 않습니다."
msgid "Domain verified!"
msgstr "도메인을 확인했습니다."
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "코드가 없거나 새 코드가 필요한가요? <0>이곳을 클릭하세요.0>"
@@ -3681,7 +3810,7 @@ msgstr "코드가 없거나 새 코드가 필요한가요? <0>이곳을 클릭
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "코드가 보이지 않나요? <0>다시 전송하려면 이곳을 클릭하세요.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "이메일이 보이지 않나요? <0>다시 전송하려면 이곳을 클릭하세요.0>"
@@ -3700,16 +3829,19 @@ msgstr "걱정 마세요! 모든 기존 메시지와 설정은 저장되며 성
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "완료"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "메시지를 두 번 탭하거나 길게 눌러서 반응을 추가합니다"
@@ -3741,15 +3873,6 @@ msgstr "두 번 탭하여 좋아요 표시합니다"
msgid "Download Bluesky"
msgstr "Bluesky 다운로드"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "CAR 파일 다운로드"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "CAR 파일 다운로드"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "대화 데이터 다운로드"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "대화 데이터 다운로드"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "이미지 다운로드"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr "프로필 데이터 다운로드"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr "프로필 데이터 다운로드"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "신상 털기"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "예: 반복적으로 광고 답글을 다는 계정."
msgid "Eating disorders"
msgstr "섭식 장애"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "편집"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "프로필 사진 편집"
@@ -3847,14 +3978,14 @@ msgstr "프로필 사진 편집"
msgid "Edit Feeds"
msgstr "피드 편집하기"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "그룹 이름 편집"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "이미지 편집하기"
@@ -3868,7 +3999,16 @@ msgstr "상호작용 설정 편집"
msgid "Edit interests"
msgstr "관심 주제 편집"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr "초대 링크 편집"
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr "초대 링크 편집"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "링크 설정 편집"
@@ -3886,20 +4026,15 @@ msgstr "라이브 상태 편집"
msgid "Edit moderation list"
msgstr "검토 리스트 편집"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "내 피드 편집"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "이름 편집"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "{0} 님의 알림 편집"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "사용자 편집하기"
@@ -3925,7 +4060,7 @@ msgstr "프로필 편집"
msgid "Edit starter pack"
msgstr "스타터 팩 편집"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "이 그룹 대화의 이름을 편집하기"
@@ -3937,7 +4072,7 @@ msgstr "사용자 리스트 편집"
msgid "Edit who can reply"
msgstr "답글을 달 수 있는 사용자 편집"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "스타터 팩 편집"
@@ -3971,7 +4106,7 @@ msgstr "이메일 주소"
msgid "Email Resent"
msgstr "이메일 다시 전송됨"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "이메일을 보냈습니다!"
@@ -4006,8 +4141,8 @@ msgstr "웹사이트에 이 게시물을 임베드하세요. 다음 코드를
msgid "Embedded video player"
msgstr "임베드 동영상 플레이어"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "활성화"
@@ -4025,7 +4160,7 @@ msgstr "성인 콘텐츠 활성화"
msgid "Enable captions"
msgstr "캡션 활성화"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "이메일 2단계 인증 활성화"
@@ -4038,13 +4173,12 @@ msgstr "외부 미디어 사용"
msgid "Enable media players for"
msgstr "미디어 플레이어를 사용할 외부 사이트"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "계정의 프로필을 방문하여 <0>종 모양 아이콘0> <1/> 을 눌러 계정에 대한 알림을 사용 설정하세요."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "푸시 알림 사용"
@@ -4091,8 +4225,8 @@ msgstr "비밀번호 입력"
msgid "Enter a word or tag"
msgstr "단어 또는 태그 입력"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "코드 입력"
@@ -4143,7 +4277,7 @@ msgstr "전체화면으로 봅니다"
msgid "Entertainment"
msgstr "엔터테인먼트"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "오류"
@@ -4185,23 +4319,23 @@ msgstr "누구나 답글을 달 수 있음"
msgid "Everybody can reply to this post."
msgstr "누구나 이 게시물에 답글을 달 수 있습니다."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "모두"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "모두"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "모두"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "기타"
@@ -4217,8 +4351,8 @@ msgstr "내가 팔로우하는 사용자 제외"
msgid "Exit fullscreen"
msgstr "전체화면 나가기"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "대체 텍스트 확장"
@@ -4226,7 +4360,7 @@ msgstr "대체 텍스트 확장"
msgid "Expand list of users"
msgstr "사용자 목록 펼치기"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "답글을 달고 있는 전체 게시물을 펼치거나 접습니다"
@@ -4238,7 +4372,7 @@ msgstr "게시물 텍스트 확장"
msgid "Expands or collapses post text"
msgstr "게시물 텍스트를 펼치거나 접습니다"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "레코드로 확인될 것으로 예상되는 URI"
@@ -4277,9 +4411,9 @@ msgstr "노골적이거나 불쾌감을 줄 수 있는 미디어."
msgid "Explicit sexual images."
msgstr "노골적인 성적 이미지."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "탐색"
@@ -4289,11 +4423,8 @@ msgstr "탐색"
msgid "Explore the app"
msgstr "앱 둘러보기"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr "대화 데이터 내보내기"
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "내 대화 데이터 내보내기"
@@ -4322,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "외부 미디어 설정"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "대화를 수락하지 못했습니다"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr "참여 요청을 승인하지 못했습니다"
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "이모티콘 반응을 추가하지 못했습니다"
@@ -4354,7 +4489,7 @@ msgstr "스타터 팩에 추가하지 못했습니다"
msgid "Failed to change handle. Please try again."
msgstr "핸들을 변경하지 못했습니다. 다시 시도해 주세요."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "링크를 복사하지 못했습니다"
@@ -4367,7 +4502,7 @@ msgstr "앱 비밀번호를 만들지 못했습니다. 다시 시도해 주세
msgid "Failed to create conversation"
msgstr "대화를 만들지 못했습니다"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "초대 링크를 생성하지 못했습니다"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "대화를 삭제하지 못했습니다"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "메시지를 삭제하지 못했습니다"
@@ -4394,24 +4529,24 @@ msgstr "게시물을 삭제하지 못했습니다. 다시 시도해 주세요"
msgid "Failed to delete starter pack"
msgstr "스타터 팩을 삭제하지 못했습니다"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "초대 링크를 비활성화하지 못했습니다"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Germ DM을 연결 해제하지 못했습니다. 오류: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "그룹 대화 이름을 편집하지 못했습니다"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "초대 링크를 편집하지 못했습니다"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "초대 링크를 활성화하지 못했습니다"
@@ -4427,19 +4562,27 @@ msgstr "모든 친구를 팔로우하지 못했습니다. 다시 시도해 주
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "추천을 숨기지 못했습니다. 인터넷 연결 상태를 확인해 주세요"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr "참여 요청을 무시하지 못했습니다"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr "그룹 대화에 참여하지 못했습니다. 다시 시도해 주세요."
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "메시지 앱을 열지 못했습니다"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "그룹 대화에서 나가지 못했습니다"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "대화를 불러오지 못했습니다"
@@ -4456,17 +4599,8 @@ msgstr "피드를 불러오지 못했습니다"
msgid "Failed to load feeds preferences"
msgstr "피드 환경설정을 불러오지 못했습니다"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "알림 설정을 불러오지 못했습니다."
@@ -4493,16 +4627,15 @@ msgstr "추천 피드를 불러오지 못했습니다"
msgid "Failed to load suggested follows"
msgstr "추천 팔로우를 불러오지 못했습니다"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "그룹 대화를 잠그지 못했습니다"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "모든 요청을 읽음으로 표시하지 못했습니다"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "그룹 대화를 뮤트하지 못했습니다"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "게시물을 고정하지 못했습니다"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Germ DM을 다시 연결하지 못했습니다. 오류: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "데이터를 제거하지 못했습니다. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "이모티콘 반응을 제거하지 못했습니다"
@@ -4542,15 +4675,19 @@ msgstr "그룹 대화 멤버를 내보내지 못했습니다"
msgid "Failed to remove verification"
msgstr "인증을 취소하지 못했습니다"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr "요청을 취소하지 못했습니다. 다시 시도해 주세요."
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr "위치를 확인하지 못했습니다. 다시 시도해 주세요."
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "임시 저장하지 못했습니다"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "이미지를 저장하지 못했습니다"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "관심 주제를 저장하지 못했습니다."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "이메일을 전송하지 못했습니다. 다시 시도해 주세요."
@@ -4580,7 +4717,7 @@ msgstr "신고를 보내지 못했습니다"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "이의신청을 제출하지 못했습니다. 다시 시도해 주세요."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "스레드 뮤트를 전환하지 못했습니다. 다시 시도해 주세요"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr "그룹 대화를 잠금 해제하지 못했습니다"
@@ -4597,12 +4734,12 @@ msgstr "그룹 대화를 잠금 해제하지 못했습니다"
msgid "Failed to unpin list"
msgstr "리스트를 고정 해제하지 못했습니다"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "이메일 2단계 인증을 변경하지 못했습니다"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "이메일을 변경하지 못했습니다. 다시 시도해 주세요."
@@ -4614,7 +4751,7 @@ msgstr "피드를 업데이트하지 못했습니다"
msgid "Failed to update notification declaration"
msgstr "알림 선언을 업데이트하지 못했습니다"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "설정을 업데이트하지 못했습니다"
@@ -4641,7 +4778,7 @@ msgstr "가짜 계정 또는 봇"
msgid "False information about elections"
msgstr "선거에 대한 허위 정보"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "피드"
@@ -4649,7 +4786,7 @@ msgstr "피드"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "{0} 님의 피드"
@@ -4662,7 +4799,7 @@ msgstr "피드 작성자"
msgid "Feed identifier"
msgstr "피드 ID"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "피드 메뉴"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "피드 운영자에게 피드백을 전송했습니다"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "피드"
@@ -4739,7 +4876,7 @@ msgstr "언어별 검색 필터링 (현재: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "내 활동 알림을 받을 수 있는 사용자 필터링"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "알림 수신 대상 필터링"
@@ -4747,11 +4884,11 @@ msgstr "알림 수신 대상 필터링"
msgid "Finalizing"
msgstr "마무리 중"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "드디어!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "드디어! 중요한 게시물을 놓치지 마세요. 저장해 두었다가 원할 때 언제든지 다시 확인할 수 있습니다."
@@ -4768,8 +4905,8 @@ msgstr "경제"
msgid "Find accounts to follow"
msgstr "팔로우할 계정 찾아보기"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "연락처 찾기"
@@ -4799,7 +4936,7 @@ msgstr "팔로우할 사용자 찾아보기"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Bluesky에서 게시물, 사용자, 피드 찾기"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "친구들을 찾아보세요"
@@ -4944,8 +5081,12 @@ msgstr "<0>{0}0> 님과 <1>{1}1> 님이 팔로우함"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "<0>{0}0> 님, <1>{1}1> 님 외 {2, plural, other {#명}}이 팔로우함"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr "팔로워만 참여할 수 있음"
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "내가 아는 @{0} 님의 팔로워"
@@ -4995,19 +5136,16 @@ msgstr "{handle} 님을 팔로우 중"
msgid "Following feed preferences"
msgstr "팔로우 중 피드 설정"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "팔로우 중 피드 설정"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "나를 팔로우함"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "나를 팔로우함"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "글꼴"
@@ -5069,7 +5207,7 @@ msgstr "분실"
msgid "Free your feed"
msgstr "피드를 자유롭게"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "수신 대상"
@@ -5086,35 +5224,35 @@ msgstr "<0/>에서"
msgid "Generate a starter pack"
msgstr "스타터 팩 만들기"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "초대 링크 생성"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "새 초대 링크 생성하기"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "새 링크 생성"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germ DM을 연결 해제했습니다"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Germ DM 링크"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germ DM을 다시 연결했습니다"
@@ -5122,46 +5260,50 @@ msgstr "Germ DM을 다시 연결했습니다"
msgid "Get help"
msgstr "도움말"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr "스타터 팩 가입, 인증 및 기타 활동에 대한 알림을 받습니다."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "사람들이 나를 팔로우하면 알림을 받습니다."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "사람들이 내가 재게시한 게시물에 좋아요를 누르면 알림을 받습니다."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "사람들이 내 게시물에 좋아요를 누르면 알림을 받습니다."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr "다른 사용자가 내 재게시물에 좋아요를 누를 때 알림을 받습니다."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "사람들이 나를 멘션하면 알림을 받습니다."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "사람들이 내 게시물을 인용하면 알림을 받습니다."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "사람들이 내 게시물에 답글을 달면 알림을 받습니다."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "사람들이 내가 재게시한 게시물을 재게시하면 알림을 받습니다."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "사람들이 내 게시물을 재게시하면 알림을 받습니다."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr "다른 사용자가 내 게시물을 재게시할 때 알림을 받습니다."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr "구독 중인 게시물에 활동이 있을 때 알림을 받습니다."
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "새 게시물 알림 받기"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "내가 선택한 계정의 새 게시물과 답글에 대한 알림을 받습니다."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "{name} 님의 새 게시물 알림 받기"
@@ -5174,27 +5316,27 @@ msgstr "이 계정의 활동 알림 받기"
msgid "Get notified when {name} posts"
msgstr "{name} 님이 게시물을 올리면 알림 받기"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "다른 사용자가 게시물을 올릴 때 알림 받기"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "시작하기"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIF를 업로드했습니다"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "프로필에 얼굴 달기"
@@ -5213,20 +5355,21 @@ msgstr "폭력 미화"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "뒤로"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "뒤로"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "이전 단계로 돌아가기"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "홈으로 이동"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "홈으로 이동"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "홈으로 이동"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "계정 설정으로 이동"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "{0} 님과의 대화로 이동합니다"
@@ -5299,12 +5440,12 @@ msgstr "다음"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "프로필로 이동"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "‘{chatName}’(이)라는 이름의 그룹 대화로 이동합니다"
@@ -5320,8 +5461,8 @@ msgstr "사용자의 프로필로 이동"
msgid "Going live is currently disabled for your account"
msgstr "현재 내 계정에서 라이브 시작 기능이 비활성화되어 있습니다"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "확인"
@@ -5340,59 +5481,75 @@ msgstr "불쾌감을 주는 폭력 콘텐츠"
msgid "Grooming or predatory behavior"
msgstr "그루밍 또는 포식 행위"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr "그룹 대화"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "그룹 대화 초대 링크 대화 상자"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "그룹 대화가 잠겼습니다"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "그룹 대화를 뮤트했습니다"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr "그룹 대화 이름이 변경되었습니다"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "그룹 대화 설정"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "그룹 대화가 잠금 해제되었습니다"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "그룹 대화를 언뮤트했습니다"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
-msgstr "그룹 채팅 기능은 아직 사용할 수 없습니다"
+msgstr "그룹 대화 기능은 아직 사용할 수 없습니다"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
-msgstr "이제 그룹 채팅 기능을 사용할 수 있습니다"
+msgstr "이제 그룹 대화 기능을 사용할 수 있습니다"
+
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr "그룹 대화는 최대 {0, plural, other {#명}}까지 참여할 수 있습니다."
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "그룹 잠김"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "그룹 이름"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr "그룹 이름이 너무 깁니다. 최대 {MAX_GROUP_NAME_GRAPHEME_LENGTH}자까지 입력할 수 있습니다."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "해킹 또는 시스템 공격"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "핸들이 너무 깁니다. 더 짧은 핸들을 사용하세요."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "지금 진행 중"
@@ -5446,7 +5603,7 @@ msgstr "유해하거나 위험성이 큰 활동"
msgid "Harming or endangering minors"
msgstr "미성년자에게 유해 또는 위험에 빠뜨리는 행위"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "해시태그"
@@ -5458,8 +5615,8 @@ msgstr "해시태그 #{tag}"
msgid "Hate speech"
msgstr "혐오 발언"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "코드가 있나요? <0>이곳을 클릭하세요.0>"
@@ -5483,7 +5640,7 @@ msgstr "Bluesky에서는 악용 방지를 위해 7일간 보관 후 삭제됩니
msgid "Help"
msgstr "도움말"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "사진을 업로드하거나 아바타를 만들어 사람들이 내가 봇이 아니라는 사실을 알 수 있도록 하세요."
@@ -5652,18 +5809,18 @@ msgstr "이 데이터를 불러오는 데 문제가 있는 것 같습니다. 자
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "검토 서비스를 불러올 수 없습니다."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "잠깐! 동영상에 대한 접근 권한이 점차적으로 제공되고 있지만 아직은 기다려야 합니다. 나중에 다시 확인해 주세요!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "잠깐! 아직 이 기능을 사용할 수 없습니다. 나중에 다시 확인해 주세요."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "홈"
@@ -5721,7 +5878,7 @@ msgstr "확인"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr "저는 블루스카이에서 {0}(으)로 활동하고 있어요. 와서 저를 찾아보세요! https://bsky.app/download"
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "대체 텍스트가 긴 경우 대체 텍스트 확장 상태를 전환합니다"
@@ -5757,7 +5914,7 @@ msgstr "이 리스트를 삭제하면 다시 복구할 수 없습니다."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "자체 도메인이 있는 경우 이를 핸들로 사용할 수 있으며, 이를 통해 본인임을 다른 사용자에게 알릴 수 있습니다. <0>더 알아보기 (영어)0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "이메일을 변경해야 하는 경우 <0>이곳을 클릭하세요0>."
@@ -5765,7 +5922,7 @@ msgstr "이메일을 변경해야 하는 경우 <0>이곳을 클릭하세요0>
msgid "If you remove this post, you won't be able to recover it."
msgstr "이 게시물을 삭제하면 다시 복구할 수 없습니다."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "이메일 주소를 변경하면 이메일 2단계 인증이 비활성화됩니다."
@@ -5773,7 +5930,6 @@ msgstr "이메일 주소를 변경하면 이메일 2단계 인증이 비활성
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "비밀번호를 변경하려면 본인 계정 확인을 위해 인증 코드를 전송해야 합니다."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "내 계정의 활동에 대한 알림을 받을 수 있는 사용자를 제한하려면 <0>설정 → 개인정보 및 보안0>에서 변경할 수 있습니다."
@@ -5786,23 +5942,33 @@ msgstr "개발자라면 직접 서버를 호스팅할 수 있습니다."
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "핸들이나 이메일을 변경하려는 경우 비활성화하기 전에 변경하세요."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr "무시"
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr "참여 요청 무시하기"
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "이미지"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "이미지 {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "{1}개 중 {0}번째 이미지"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "{imageCount}개 중 {0}번째 이미지"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "이미지 캐시를 지우고 {0}를 확보했습니다"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "이미지 갤러리, {0}개 이미지"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "내 검토 설정에 따라 숨겨진 이미지입니다."
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "이미지를 사용할 수 없습니다."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "이미지 옵션"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "사칭"
msgid "Import contacts"
msgstr "연락처 가져오기"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "연락처 가져오기"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "연락처를 가져오고 친구들을 찾아보세요"
@@ -5881,40 +6047,40 @@ msgstr "{0}에 가져옴"
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 "연령에 적합한 경험을 제공하기 위해 생년월일이 필요합니다. 생년월일은 한 번만 입력하면 되며 비공개로 안전하게 보관됩니다."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "인앱"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "인앱 알림"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr "인앱, 모두"
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr "인앱, 내가 팔로우하는 사용자"
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr "인앱, 푸시"
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr "인앱, 푸시, 모두"
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr "인앱, 푸시, 내가 팔로우하는 사용자"
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "수신함이 비어 있습니다"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "수신함 제로!"
@@ -5963,6 +6129,10 @@ msgstr "새로운 저장된 게시물(일명 '북마크')을 만나보세요"
msgid "Invalid 2FA confirmation code."
msgstr "잘못된 2단계 인증 코드입니다."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr "잘못된 그룹 대화 코드입니다."
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "잘못된 핸들입니다. 다른 핸들을 사용하세요."
@@ -5977,10 +6147,14 @@ msgstr "잘못된 상호작용 설정입니다"
msgid "Invalid phone number"
msgstr "잘못된 전화번호입니다"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "잘못된 신고 항목"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr "잘못된 취소 요청입니다."
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "잘못된 인증 코드"
@@ -6010,12 +6184,12 @@ msgstr "친구 초대하기"
msgid "Invite friends <0/>"
msgstr "친구 초대하기 <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "초대 링크"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "초대 링크가 생성되었습니다"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "초대 링크가 비활성화되었습니다"
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "아직은 나밖에 없습니다! 위에서 검색하여 스타터 팩에 더 많은 사용자를 추가해 보세요."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "작업 ID: {0}"
@@ -6083,6 +6257,11 @@ msgstr "작업 ID: {0}"
msgid "Jobs"
msgstr "채용"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr "참여"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "채용"
msgid "Join Bluesky"
msgstr "Bluesky 가입하기"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr "그룹 대화 참여"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr "참여 요청을 취소했습니다"
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "대화에 참여하기"
msgid "Journalism"
msgstr "저널리즘"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "계속 작성하기"
@@ -6143,7 +6331,7 @@ msgstr "내 계정의 라벨"
msgid "Labels on your content"
msgstr "내 콘텐츠의 라벨"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "언어 설정"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "최신"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "이 경고에 대해 더 알아보기"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Bluesky의 인증에 대해 더 알아보기 (영어)"
@@ -6239,7 +6427,7 @@ msgstr "Bluesky의 인증에 대해 더 알아보기 (영어)"
msgid "Learn more about what is public on Bluesky."
msgstr "Bluesky에서 공개되는 항목에 대해 자세히 알아보세요."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Germ DM 링크에 대해 더 알아보기"
@@ -6252,8 +6440,8 @@ msgstr "<0>계정 설정0>에서 자세히 알아보세요."
msgid "Learn more."
msgstr "더 알아보기"
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "나가기"
@@ -6276,7 +6464,7 @@ msgstr "대화 나가기"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "대화 나가기"
@@ -6284,13 +6472,13 @@ msgstr "대화 나가기"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "대화 나가기"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "그룹 대화 나가기"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr "이 그룹 대화 나가기"
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "밝음"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "좋아요 ({0, plural, other {#개}})"
@@ -6346,11 +6534,7 @@ msgstr "10개 게시물에 좋아요 누르기"
msgid "Like 10 posts to train the Discover feed"
msgstr "10개 게시물에 좋아요를 눌러 Discover 피드를 훈련시키세요"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "좋아요 알림"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "이 피드에 좋아요 표시"
@@ -6358,8 +6542,8 @@ msgstr "이 피드에 좋아요 표시"
msgid "Like this labeler"
msgstr "이 라벨러에 좋아요 표시"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "좋아요 표시한 사용자"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "{0, plural, other {#명}}의 사용자가 좋아요 표시함"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "{likeCount, plural, other {#명}}의 사용자가 좋아요 표시함"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "좋아요"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "내 재게시물의 좋아요"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "내 재게시물의 좋아요 알림"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "이 게시물을 좋아요 표시합니다"
@@ -6409,11 +6589,11 @@ msgstr "이 게시물을 좋아요 표시합니다"
msgid "Linear"
msgstr "일반"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "링크를 클립보드에 복사했습니다"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "리스트"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "리스트를 언뮤트했습니다"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "리스트"
@@ -6545,7 +6725,7 @@ msgstr "라이브 이벤트를 숨김 해제했습니다"
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "라이브 기능은 베타 테스트 중입니다"
@@ -6595,27 +6775,27 @@ msgstr "게시물 상호작용 설정 불러오는 중…"
msgid "Loading..."
msgstr "불러오는 중…"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "잠그기"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "그룹 대화 잠그기"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "그룹 대화를 잠그시겠습니까?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "이 그룹 대화 잠그기"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "잠김"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "로그"
@@ -6662,7 +6842,7 @@ msgstr "팔로우 중 피드가 누락된 것 같습니다. <0>이곳을 클릭
msgid "Love GIFs"
msgstr "사랑 GIF"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "계정의 이메일 설정 조정하기"
@@ -6687,9 +6867,8 @@ msgstr "인증 설정 관리"
msgid "Manage your muted words and tags"
msgstr "뮤트한 단어 및 태그 관리"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "모두 읽음으로 표시"
@@ -6698,13 +6877,12 @@ msgstr "모두 읽음으로 표시"
msgid "Mark as read"
msgstr "읽음으로 표시"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "모두 읽음으로 표시했습니다"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "나중에 하기"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "일부 사용자에게 불쾌감을 주거나 부적절할 수 있는 미디어."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "멤버"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "멤버들이 대화 기록은 읽을 수 있지만 새 메시지는 보낼 수 없습니다."
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "멘션 알림"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "멘션한 사용자"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "멘션"
@@ -6775,22 +6949,22 @@ msgstr "{0} 님에게 메시지 보내기"
msgid "Message {displayName}"
msgstr "{displayName} 님에게 메시지 보내기"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "메시지 삭제됨"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "메시지를 삭제했습니다"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "메시지를 보내지 못했습니다."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "@{0} 님이 보낸 메시지: {1}"
@@ -6813,19 +6987,19 @@ msgstr "메시지가 너무 깁니다"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "메시지가 너무 깁니다 ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "메시지 옵션"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "메시지"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr "나를 차단한 사람이 보낸 메시지는 숨겨집니다."
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr "차단한 사람이 보낸 메시지는 숨겨집니다."
@@ -6838,10 +7012,6 @@ msgstr "심야"
msgid "Minor harassment or bullying"
msgstr "미성년자 괴롭힘 또는 따돌림"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "기타 알림"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "오해 소지"
@@ -6850,7 +7020,7 @@ msgstr "오해 소지"
msgid "Missing media"
msgstr "미디어 찾을 수 없음"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "검토"
@@ -6894,7 +7064,7 @@ msgstr "검토 리스트를 업데이트했습니다"
msgid "Moderation lists"
msgstr "검토 리스트"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "검토 리스트"
@@ -6903,7 +7073,7 @@ msgstr "검토 리스트"
msgid "moderation settings"
msgstr "검토 설정"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "검토 상태"
@@ -6949,7 +7119,7 @@ msgstr "영화"
msgid "Music"
msgstr "음악"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "음소거"
@@ -6994,7 +7164,7 @@ msgstr "리스트 뮤트"
msgid "Mute these accounts?"
msgstr "이 계정들을 뮤트하시겠습니까?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "이 그룹 대화 뮤트하기"
@@ -7032,7 +7202,7 @@ msgstr "스레드 뮤트"
msgid "Mute words & tags"
msgstr "단어 및 태그 뮤트"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "뮤트됨"
@@ -7040,7 +7210,7 @@ msgstr "뮤트됨"
msgid "Muted accounts"
msgstr "뮤트한 계정"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "뮤트한 계정"
@@ -7108,8 +7278,8 @@ msgstr "다음 화면으로 이동합니다"
msgid "Navigates to your profile"
msgstr "내 프로필로 이동합니다"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "저작권 위반, 법적 요청 또는 규제 준수 문제를 신고해야 하나요?"
@@ -7136,34 +7306,34 @@ msgstr "{firstAuthorLink} 님의 새 {postsCount, plural, other {게시물}}"
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{firstAuthorName} 님의 새 {postsCount, plural, other {게시물}}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "새 대화"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "{0} 님과의 새 대화"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "{0} 님, {1} 님과의 새 대화"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "{0} 님, {1} 님 외 {memberCount, plural, other {{memberCount}명}}과의 새 대화."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "새 이메일 주소"
@@ -7174,29 +7344,25 @@ msgstr "새 이메일 주소"
msgid "New Feature"
msgstr "새로운 기능"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "새 팔로워 알림"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "새 팔로워"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "새 그룹 대화"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "새 그룹 대화"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "새 그룹 대화 멤버:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "새 게시물"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "새 게시물"
@@ -7262,8 +7428,8 @@ msgstr "뉴스"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "‘{query}’에 대한 GIF를 찾을 수 없습니다."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "현재 표시할 GIF가 없습니다. 잠시 후 다시 시도해 주세요."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "이미지 없음"
@@ -7362,7 +7528,7 @@ msgstr "{0} 님을 언팔로우했습니다"
msgid "No media yet"
msgstr "아직 미디어가 없습니다"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "아직 메시지가 없습니다"
@@ -7378,12 +7544,12 @@ msgstr "이름 없음"
msgid "No notifications yet!"
msgstr "아직 알림이 없습니다"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "없음"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "없음"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "결과 없음"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "결과 없음"
@@ -7509,10 +7675,6 @@ msgstr "동의받지 않은 사적인 성적 이미지"
msgid "Non-sexual Nudity"
msgstr "선정적이지 않은 나체"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "없음"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "이 플랫폼에서는 사용할 수 없습니다"
msgid "Not followed by anyone you’re following"
msgstr "내가 팔로우하는 사용자가 팔로우하지 않음"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "찾을 수 없음"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "아직 게시할 준비가 안 되었나요? 가장 좋은 아이디어는 적절한 시기가 될 때까지 임시 저장함에 보관해 두세요."
@@ -7548,44 +7710,31 @@ msgstr "참고: 이 게시물은 로그인한 사용자만 볼 수 있습니다.
msgid "Nothing saved yet"
msgstr "아직 저장된 게시물이 없습니다"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "알림 설정"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "알림음"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "알림"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "다른 사용자가 내 스타터 팩을 통해 가입하는 경우 등 기타 모든 알림을 받습니다."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "지금"
@@ -7601,7 +7750,7 @@ msgstr "입력한 번호는 휴대전화 번호여야 합니다"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "끄기"
@@ -7623,7 +7772,8 @@ msgstr "확인"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "온보딩 재설정"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
-msgstr ""
+msgstr "선택한 수신자 중 한 명이 그룹 대화를 허용하지 않습니다."
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
-msgstr ""
+msgstr "선택한 수신자 중 한 명이 당신을 차단했으므로 메시지를 보낼 수 없습니다."
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "하나 이상의 GIF에 대체 텍스트가 누락되었습니다."
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "하나 이상의 이미지에 대체 텍스트가 누락되었습니다."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr "선택한 파일 중 지원되지 않는 파일이 있습니다."
-#: 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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr "선택한 파일 중 크기가 너무 큰 파일이 있습니다. 최대 크기는 {VIDEO_MAX_SIZE_MB} MB입니다."
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "하나 이상의 게시물이 너무 길어서 임시 저장할 수 없습니다. 최대 글자 수는 {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {#자}}입니다."
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "하나 이상의 동영상에 대체 텍스트가 누락되었습니다."
@@ -7685,6 +7835,26 @@ msgstr "하나 이상의 동영상에 대체 텍스트가 누락되었습니다.
msgid "Only {0} can reply."
msgstr "{0}만 답글을 달 수 있습니다."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr "선택한 {1}{2, plural, other {개}}의 이미지 중 {0}개만 추가되었습니다 (최대 {MAX_GALLERY_IMAGES}개)"
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr "관리자만 가입 요청을 승인할 수 있습니다."
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr "관리자만 가입 요청을 무시할 수 있습니다."
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr "팔로워만 이 그룹 대화에 참여할 수 있습니다."
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "내가 팔로우하는 팔로워만"
msgid "Only image files are supported"
msgstr "이미지 파일만 지원됩니다"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr "{0} 님이 팔로우하는 사람만 참여할 수 있습니다."
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr "대화 소유자가 팔로우하는 사람만 참여할 수 있습니다"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "WebVTT(.vtt) 파일만 지원됩니다"
@@ -7712,7 +7892,7 @@ msgstr "문제가 발생했습니다!"
msgid "Oops!"
msgstr "이런!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "아바타 생성기 열기"
@@ -7720,12 +7900,17 @@ msgstr "아바타 생성기 열기"
msgid "Open camera"
msgstr "카메라 열기"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr "대화 열기"
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "{displayName} 님의 대화 멤버 옵션 열기"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "대화 옵션 열기"
@@ -7739,16 +7924,16 @@ msgstr "서랍 메뉴 열기"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "이모티콘 선택기 열기"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "피드 정보 화면 열기"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "피드 옵션 메뉴 열기"
@@ -7760,13 +7945,17 @@ msgstr "전체 이모티콘 목록 열기"
msgid "Open Germ DM"
msgstr "Germ DM 열기"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr "그룹 대화 열기"
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "그룹 대화 설정 열기"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "{niceUrl} 링크 열기"
@@ -7790,8 +7979,8 @@ msgstr "팩 열기"
msgid "Open post options menu"
msgstr "게시물 옵션 메뉴 열기"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "프로필 열기"
@@ -7817,6 +8006,10 @@ msgstr "스토리북 페이지 열기"
msgid "Open system log"
msgstr "시스템 로그 열기"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr "이 그룹 대화를 엽니다"
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "디버그 항목에 대한 추가 세부 정보를 엽니다"
msgid "Opens alt text dialog"
msgstr "대체 텍스트 대화 상자를 엽니다"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "기기에서 카메라를 엽니다"
@@ -7858,22 +8051,24 @@ msgstr "답글 작성 상자를 엽니다"
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: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개 선택합니다."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr "최대 {MAX_GALLERY_IMAGES, plural, other {#개}}의 이미지 또는 단일 동영상 및 GIF를 선택하기 위해 기기 갤러리를 엽니다"
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "새 Bluesky 계정을 만드는 화면을 엽니다"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "존재하는 Bluesky 계정에 로그인하는 화면을 엽니다"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "전체 이미지를 엽니다"
@@ -7890,7 +8085,7 @@ msgstr "이미지 선택기를 엽니다"
msgid "Opens link {0}"
msgstr "링크 {0}(을)를 엽니다"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "라이브 상태 대화 상자를 엽니다"
@@ -7919,9 +8114,9 @@ msgstr "게시물 작성기를 엽니다"
msgid "Opens this draft in the composer"
msgstr "작성기에서 이 임시 저장을 엽니다"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "이 프로필을 엽니다"
@@ -7997,12 +8192,12 @@ msgstr "이 블로그 게시물"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Bluesky 검토 팀에서 신고를 접수했습니다."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Bluesky 검토 팀에서 신고를 검토한 결과 귀하의 Bluesky 대화 접속을 비활성화하기로 결정했습니다."
@@ -8010,16 +8205,17 @@ msgstr "Bluesky 검토 팀에서 신고를 검토한 결과 귀하의 Bluesky
msgid "Owner"
msgstr "소유자"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr "소유자는 나가기 전에 그룹을 잠가야 합니다."
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "페이지를 찾을 수 없습니다"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "페이지를 찾을 수 없습니다"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "동영상 일시 정지"
msgid "People"
msgstr "사용자"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "{ownerName} 님이 팔로우하는 사람은 바로 참여할 수 있음"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "{ownerName} 님이 팔로우하는 사람은 참여 요청할 수 있음"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "@{0} 님이 팔로우하는 사용자"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "@{0} 님을 팔로우하는 사용자"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "내가 팔로우하는 사용자"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "내가 팔로우하는 사람은 바로 참여할 수 있음"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "내가 팔로우하는 사람은 참여 요청할 수 있음"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "성인용 사진."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "피드 고정"
@@ -8152,7 +8348,7 @@ msgstr "피드 고정"
msgid "Pin to home"
msgstr "홈에 고정"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "홈에 고정"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "고정됨"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0}(을)를 홈에 고정했습니다"
@@ -8236,7 +8432,7 @@ msgstr "핸들을 입력해 주세요."
msgid "Please choose your password."
msgstr "비밀번호를 입력해 주세요."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "방금 보낸 이메일에 있는 링크를 클릭하여 새 이메일 주소를 인증하세요. 이는 Bluesky의 모든 기능을 계속해서 즐길 수 있도록 하기 위한 중요한 단계입니다."
@@ -8244,7 +8440,7 @@ msgstr "방금 보낸 이메일에 있는 링크를 클릭하여 새 이메일
msgid "Please complete the verification captcha."
msgstr "인증 캡차를 완료해 주세요."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "동영상을 업로드하려면 이메일 주소를 인증해 주세요."
@@ -8265,14 +8461,14 @@ msgstr "비밀번호를 입력해 주세요. 비밀번호는 8자 이상이어
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "이 앱 비밀번호에 대해 고유한 이름을 입력하거나 무작위로 생성된 이름을 사용하세요."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "올바른 코드를 입력해 주세요."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "올바른 이메일 주소를 입력해 주세요."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "추후 확인이 필요할 수 있으므로 임시 이메일이 아닌 유효한 이메일 주소를 입력해 주세요."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "아래에 <0>{0}0>(으)로 전송된 코드를 입력해 주세요."
@@ -8293,7 +8489,7 @@ msgstr "아래에 <0>{0}0>(으)로 전송된 코드를 입력해 주세요."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "받은 인증 코드와 사용할 새 비밀번호를 입력해 주세요."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "기존 이메일 주소로 전송된 보안 코드를 입력해 주세요."
@@ -8306,7 +8502,7 @@ msgstr "이메일을 입력해 주세요."
msgid "Please enter your invite code."
msgstr "초대 코드를 입력해 주세요."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "새 이메일 주소를 입력해 주세요."
@@ -8323,7 +8519,7 @@ msgstr "사용자 이름을 입력해 주세요"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "{0}(이)가 이 라벨을 잘못 적용했다고 생각하는 이유를 설명해 주세요"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "대화가 잘못 비활성화되었다고 생각하는 이유를 설명해 주세요"
@@ -8366,7 +8562,7 @@ msgstr "연락처를 가져오려면 모바일 앱을 사용해 주세요."
msgid "Please use the native app to sync your contacts."
msgstr "연락처를 동기화하려면 모바일 앱을 사용해 주세요."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "이메일을 인증해 주세요"
@@ -8383,7 +8579,7 @@ msgstr "정치"
msgid "Porn"
msgstr "음란물"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "게시하기"
@@ -8403,12 +8599,12 @@ msgstr "사진 게시하기"
msgid "Post a video"
msgstr "동영상 게시하기"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "모두 게시하기"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "무시하고 게시"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "게시물 차단됨"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "@{0} 님의 게시물"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "게시물을 삭제했습니다"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "게시물을 업로드하지 못했습니다. 인터넷 연결 상태를 확인하고 다시 시도해 주세요."
@@ -8454,7 +8650,7 @@ msgstr "내가 숨긴 게시물"
msgid "Post interaction settings"
msgstr "게시물 상호작용 설정"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "게시물 상호작용 설정"
@@ -8464,8 +8660,8 @@ msgstr "게시물 상호작용 설정"
msgid "Post language selection"
msgstr "게시물 언어 선택"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "게시물 링크"
@@ -8491,7 +8687,6 @@ msgstr "게시물을 고정 해제했습니다"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "게시물을 텍스트, 태그 또는 둘 다에 따라 뮤트할 수
msgid "Posts hidden"
msgstr "게시물 숨겨짐"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "게시물, 답글"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "오해의 소지가 있는 링크"
@@ -8528,6 +8719,7 @@ msgstr "다시 연결을 시도하려면 누르기"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "다시 시도하려면 누르기"
@@ -8536,7 +8728,7 @@ msgstr "다시 시도하려면 누르기"
msgid "Press to view followers of this account that you also follow"
msgstr "내가 팔로우하는 이 계정의 팔로워를 보려면 누르세요"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "미리보기"
@@ -8559,21 +8751,20 @@ msgstr "개인정보"
msgid "Privacy and security"
msgstr "개인정보 및 보안"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "개인정보 및 보안"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "개인정보 및 보안 설정"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "개인정보 처리방침"
msgid "Privacy violation of a minor"
msgstr "미성년자 사생활 침해"
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "GIF 처리 중…"
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "동영상 처리 중…"
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "처리 중…"
@@ -8602,8 +8793,8 @@ msgstr "처리 중…"
msgid "profile"
msgstr "프로필"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "게시물 등록하기"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "게시물 등록하기"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "답글 등록하기"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "답글 등록하기"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "푸시"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "푸시 알림"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr "푸시, 모두"
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr "푸시, 내가 팔로우하는 사용자"
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "QR 코드를 다운로드했습니다."
msgid "QR code saved to your camera roll!"
msgstr "QR 코드를 사진 보관함에 저장했습니다."
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "인용 알림"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "게시물 인용 비활성화됨"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "인용"
@@ -8733,11 +8920,11 @@ msgstr "요청 횟수 제한을 초과했습니다. 나중에 다시 시도해
msgid "Re-attach quote"
msgstr "인용 다시 연결"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "초대 링크 재활성화"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "링크 재활성화"
@@ -8745,8 +8932,8 @@ msgstr "링크 재활성화"
msgid "React with {emoji}"
msgstr "{emoji}(으)로 반응하기"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "반응"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "검색 필터 사용 방법에 대해 읽어보기 (영어)"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "블로그 게시물 읽기"
@@ -8812,11 +8999,11 @@ msgstr "진짜 사람들."
msgid "Reason for appeal"
msgstr "이의신청 이유"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "인앱 알림 받기"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "푸시 알림 받기"
@@ -8841,6 +9028,10 @@ msgstr "추천"
msgid "Reconnect"
msgstr "다시 연결"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr "확인하려면 앱을 새로 고침하세요."
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "거절"
msgid "Reject chat request"
msgstr "대화 요청 거절하기"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "대화 다시 불러오기"
@@ -8896,17 +9087,17 @@ msgstr "계정 제거"
msgid "Remove all contacts"
msgstr "모든 연락처 삭제"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "첨부 제거"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "프로필 사진 제거"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "배너 제거"
@@ -8914,8 +9105,9 @@ msgstr "배너 제거"
msgid "Remove caption file"
msgstr "캡션 파일 제거"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "임베드 제거"
@@ -8933,8 +9125,8 @@ msgstr "피드를 제거하시겠습니까?"
msgid "Remove from chat"
msgstr "대화에서 내보내기"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "저장된 게시물에서 제거"
msgid "Remove from your feeds?"
msgstr "내 피드에서 제거하시겠습니까?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "이미지 제거"
@@ -9009,11 +9201,11 @@ msgstr "인증 취소"
msgid "Remove your verification for this account?"
msgstr "이 계정을 인증 취소하시겠습니까?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "작성자가 제거함"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "내가 제거함"
@@ -9035,7 +9227,7 @@ msgstr "저장된 게시물에서 제거했습니다"
msgid "Removed from starter pack"
msgstr "스타터 팩에서 제거했습니다"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "나에게 보내는 답글"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "답글"
@@ -9104,14 +9295,14 @@ msgstr "답글 비활성화됨"
msgid "Replies to this post are disabled."
msgstr "이 게시물에 대한 답글은 비활성화되어 있습니다."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "답글 보내기"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "답글 ({0, plural, other {#개}})"
@@ -9125,10 +9316,6 @@ msgstr "스레드 작성자에 의해 답글 숨겨짐"
msgid "Reply Hidden by You"
msgstr "나에 의해 답글 숨겨짐"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "답글 알림"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "답글 설정은 스레드 작성자가 선택합니다"
@@ -9146,9 +9333,9 @@ msgstr "답글 표시 여부를 업데이트했습니다"
msgid "Reply was successfully hidden"
msgstr "답글을 성공적으로 숨겼습니다"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "신고"
@@ -9164,13 +9351,13 @@ msgstr "계정 신고"
msgid "Report conversation"
msgstr "대화 신고"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "신고 대화 상자"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "피드 신고"
@@ -9179,7 +9366,7 @@ msgstr "피드 신고"
msgid "Report list"
msgstr "리스트 신고"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "메시지 신고"
@@ -9199,8 +9386,8 @@ msgstr "스타터 팩 신고"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "신고 제출됨"
@@ -9213,7 +9400,7 @@ msgstr "이 대화 신고하기"
msgid "Report this feed"
msgstr "이 피드 신고하기"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "이 그룹 대화 신고하기"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "이 리스트 신고하기"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "이 라이브 스트리밍 신고하기"
@@ -9256,10 +9443,6 @@ msgstr "재게시"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "재게시 ({0, plural, other {#개}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "재게시 알림"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "내가 재게시함"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "재게시"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "이 게시물의 재게시물"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "내 재게시물의 재게시"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "내 재게시물의 재게시 알림"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr "그룹 대화 참여 권한 요청하기"
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr "요청을 승인했습니다"
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "코드 요청"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr "요청을 무시했습니다"
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr "참여 요청"
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr "요청했습니다"
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "요청"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr "참여 요청"
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "게시하기 전 대체 텍스트 필수"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "계정에 로그인할 때 이메일 코드를 요구합니다."
@@ -9328,7 +9534,11 @@ msgstr "이 제공자에서 필수"
msgid "Required in your region"
msgstr "내 지역에서 필수"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr "요청 취소"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "다시 전송"
@@ -9393,15 +9603,16 @@ msgstr "오류가 발생한 마지막 작업을 다시 시도합니다"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "오류가 발생한 마지막 작업을 다시 시도합니다"
msgid "Retry"
msgstr "다시 시도"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "신고 옵션 불러오기 다시 시도"
@@ -9426,14 +9637,14 @@ msgstr "신고 옵션 불러오기 다시 시도"
msgid "Return to previous page"
msgstr "이전 페이지로 돌아갑니다"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "홈 페이지로 돌아갑니다"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "이전 페이지로 돌아갑니다"
@@ -9454,7 +9665,7 @@ msgstr "슬픈 GIF"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "생년월일 저장"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "변경 사항 저장"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "변경 사항을 저장하시겠습니까?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "임시 저장"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "임시 저장하시겠습니까?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "QR 코드 저장"
msgid "Save these options for next time"
msgstr "다음에도 이 옵션 저장하기"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "내 피드에 저장"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "저장"
msgid "Saved Feeds"
msgstr "저장된 피드"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "저장된 게시물"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "내 피드에 저장했습니다"
@@ -9551,8 +9764,8 @@ msgstr "내 피드에 저장했습니다"
msgid "Say hello!"
msgstr "인사해 보세요!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "먼저 인사를 건네보세요"
@@ -9576,18 +9789,18 @@ msgstr "오른쪽으로 스크롤"
msgid "Scroll to top"
msgstr "맨 위로 스크롤"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "검색"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "@{0} 님의 게시물 검색"
@@ -9667,7 +9880,7 @@ msgstr "내 게시물 검색"
msgid "Search posts"
msgstr "게시물 검색"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "프로필 검색"
msgid "Search..."
msgstr "검색…"
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "프로필을 검색합니다"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "보안 단계 필요"
@@ -9759,7 +9972,7 @@ msgstr "{langName} 선택"
msgid "Select a color"
msgstr "색상 선택"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "이유 선택"
@@ -9828,7 +10041,7 @@ msgstr "GIF 선택"
msgid "Select GIF \"{0}\""
msgstr "GIF ‘{0}’ 선택"
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "그룹 대화 멤버 선택"
@@ -9850,7 +10063,7 @@ msgstr "언어 선택…"
msgid "Select languages"
msgstr "언어 선택"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "검토 서비스 선택"
@@ -9904,11 +10117,11 @@ msgstr "아래 옵션에서 관심 주제를 선택하세요"
msgid "Select your preferred language for translations in your feed."
msgstr "피드에서 번역을 위해 선호하는 언어를 선택합니다."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "선호하는 알림 채널 선택"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "여러 유형의 미디어를 함께 선택할 수 없습니다."
@@ -9921,9 +10134,9 @@ msgstr "자해 또는 위험 행위"
msgid "Send code"
msgstr "코드 전송"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "이메일 전송"
@@ -9939,7 +10152,7 @@ msgstr "오류 신고 보내기"
msgid "Send feedback"
msgstr "피드백 보내기"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "메시지 보내기"
@@ -9952,7 +10165,7 @@ msgstr "{name} 님에게 게시물 보내기"
msgid "Send post to..."
msgstr "게시물을 다음으로 보내기"
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "{title}에게 신고 보내기"
@@ -9960,7 +10173,7 @@ msgstr "{title}에게 신고 보내기"
msgid "Send the message from your phone"
msgstr "휴대폰에서 메시지 전송하기"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "다이렉트 메시지로 보내기"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "{0}에 전송됨"
@@ -10015,14 +10228,14 @@ msgstr "아래에서 생년월일을 설정하고 바로 게시물을 올리거
msgid "Sets email for password reset"
msgstr "비밀번호 재설정을 위한 이메일을 설정합니다"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "설정"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "다른 사용자의 활동 알림 설정"
@@ -10030,39 +10243,39 @@ msgstr "다른 사용자의 활동 알림 설정"
msgid "Settings for allowing others to be notified of your posts"
msgstr "다른 사용자에게 내 게시물 알림을 허용할지에 대한 설정"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "좋아요 알림 설정"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "멘션 알림 설정"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "새 팔로워 알림 설정"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "기타 모든 알림 설정"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "내 재게시물의 좋아요 알림 설정"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "내 재게시물의 재게시 알림 설정"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "인용 알림 설정"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "답글 알림 설정"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "재게시 알림 설정"
@@ -10079,10 +10292,12 @@ msgstr "성행위 또는 선정적인 나체."
msgid "Sexually Suggestive"
msgstr "외설적"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "작성자 DID 공유"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "이미지 공유"
@@ -10124,7 +10339,7 @@ msgstr "게시물 at:// URI 공유"
msgid "Share QR code"
msgstr "QR 코드 공유"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "이 피드 공유하기"
@@ -10151,7 +10366,7 @@ msgstr "공유…"
msgid "Share your contacts to find friends"
msgstr "연락처를 공유하고 친구들을 찾아보세요"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "공유 설정 테스터"
@@ -10167,16 +10382,16 @@ msgstr "대체 텍스트 표시"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "무시하고 표시"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "자동화 라벨 표시"
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "경고 표시 및 피드에서 필터링"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "내가 라이브 중일 때 표시하기"
@@ -10297,15 +10512,17 @@ msgstr "콘텐츠를 표시합니다"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "로그인 또는 계정 만들기"
msgid "Sign in or create your account to join the conversation!"
msgstr "대화에 참여하려면 로그인하거나 계정을 만드세요!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr "초대를 수락하려면 로그인하세요."
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "목록에 없는 계정으로 로그인"
@@ -10337,6 +10558,10 @@ msgstr "목록에 없는 계정으로 로그인"
msgid "Sign in to Bluesky or create a new account"
msgstr "Bluesky에 로그인하거나 새 계정 만들기"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr "이 그룹 대화에 참여 요청하려면 로그인하세요."
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "로그인하여 게시물 보기"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "로그아웃"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "로그아웃"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "로그아웃하시겠습니까?"
@@ -10391,7 +10616,7 @@ msgstr "건너뛰기"
msgid "Skip contact sharing and continue to the app"
msgstr "연락처 공유를 건너뛰고 앱으로 바로 이동하기"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "빈 게시물을 제외하시겠습니까?"
@@ -10405,7 +10630,7 @@ msgstr "소개를 건너뛰고 계정 사용 시작하기"
msgid "Skip to next step"
msgstr "다음 단계로 건너뛰기"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "슬라이드"
@@ -10413,7 +10638,7 @@ msgstr "슬라이드"
msgid "Smaller"
msgstr "작음"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "알림을 끕니다"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "누군가가 그룹에서 나갔습니다"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "누군가가 {0}(으)로 반응했습니다"
@@ -10487,17 +10712,22 @@ msgstr "누군가 내보내졌습니다"
msgid "Someone was removed from the group"
msgstr "누군가가 그룹에서 내보내졌습니다"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr "새로운 기능이 추가되었습니다"
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "신고하려는 데이터에 문제가 있습니다. 지원팀에 문의하세요."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "문제가 발생했습니다"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "문제가 발생했습니다!"
msgid "Something went wrong. Please try again in a moment."
msgstr "문제가 발생했습니다. 잠시 후 다시 시도해 주세요."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "문제가 발생했습니다. 다시 시도해 주세요."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "문제가 발생했나요? 저희에게 알려주세요."
@@ -10568,7 +10798,7 @@ msgstr "스포츠"
msgid "Start a conversation, and it will appear here."
msgstr "대화를 시작하면 여기에 표시됩니다."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "새 대화 시작하기"
@@ -10582,17 +10812,17 @@ msgstr "사용자 추가하기"
msgid "Start adding people!"
msgstr "사용자를 추가해 보세요!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "대화 시작"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "{displayName} 님과 대화 시작하기"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "스타터 팩"
@@ -10654,12 +10884,12 @@ msgstr "스토리지가 지워졌으며 지금 앱을 다시 시작해야 합니
msgid "Stored as part of a secure code for matching with others"
msgstr "다른 사용자와 번호를 대조하는 보안 코드의 일부로 저장됩니다"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "스토리북"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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에서 스트리밍 중이신가요? Bluesky에서 라이브 상태를 설정하여 아바타에 배지를 추가해 보세요. 배지를 누르면 사람들이 내 스트리밍으로 바로 이동할 수 있습니다."
@@ -10671,8 +10901,8 @@ msgstr "Twitch에서 스트리밍 중이신가요? Bluesky에서 라이브 상
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "제출"
@@ -10684,9 +10914,9 @@ msgstr "이의신청 제출"
msgid "Submit Appeal"
msgstr "이의신청 제출"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "신고 제출"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "구독"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr "{0}에서 구독하기"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr "{0}에서 {publicationTitle} 구독하기"
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "성공"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "성공!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr "그룹 대화에 참여했습니다!"
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "성공적으로 인증했습니다"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "추천"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "일몰"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,20 +11014,20 @@ msgstr "지원"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "회원님의 국가에서는 아직 이 기능이 지원되지 않습니다! 나중에 다시 확인해 주세요."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
-msgstr ""
+msgstr "계정이 정지된 경우 그룹 대화에 참여할 수 없습니다."
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
-msgstr ""
+msgstr "정지된 계정은 대화에 참여할 수 없습니다."
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "계정 전환"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "계정 전환"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "{0}(으)로 전환"
@@ -10828,7 +11062,7 @@ msgstr "태그만"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "내 지역에서 이용 가능한 콘텐츠와 기능을 더 정확하게 결정할 수 있도록 아래를 탭하여 Bluesky의 GPS 위치 접근을 허용해 주세요."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr "탭하여 자세히 알아보기"
@@ -10854,33 +11088,51 @@ msgstr "이 업데이트 내용을 이해하고 동의하며 Bluesky를 계속
msgid "Tap to close context menu"
msgstr "컨텍스트 메뉴를 닫습니다"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr "탭하여 이 초대 링크를 복사합니다"
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "탭하여 닫기"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr "탭하여 즉시 그룹 대화에 참여합니다"
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr "탭하여 이 그룹 대화를 엽니다"
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "탭하여 제거"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "탭하여 내 {0} 반응을 제거합니다"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr "탭하여 이 그룹 대화의 참여 권한을 요청합니다"
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "탭하여 다시 시도"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "탭하여 {0} 반응을 표시합니다"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "탭하여 모든 반응을 표시합니다"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "탭하여 반응을 봅니다"
@@ -10924,7 +11176,7 @@ msgstr "이용약관"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "텍스트 및 태그"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "텍스트 입력 필드"
@@ -11049,6 +11301,11 @@ msgstr "새 게시물을 작성할 때 다음 설정이 기본값으로 사용
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "해당 지역의 법률에 따라 특정 기능을 이용하려면 성인 인증이 필요합니다. 자세히 알아보려면 탭하세요."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr "그룹 대화의 최대 인원 제한에 도달했습니다."
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "답글을 보내려는 게시물은 작성자가 언어를 {suggestedLanguageName}로 표시했습니다. <0>{suggestedLanguageName}0>로 답글을 작성하시겠습니까?"
@@ -11057,10 +11314,10 @@ msgstr "답글을 보내려는 게시물은 작성자가 언어를 {suggestedLan
msgid "The Privacy Policy has been moved to <0/>"
msgstr "개인정보 처리방침을 <0/>(으)로 이동했습니다"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
-msgstr "선택한 동영상의 크기가 {videoSize} MB를 초과했습니다. 더 작은 파일로 다시 시도해 주세요."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
+msgstr "선택한 동영상이 {VIDEO_MAX_SIZE_MB} MB보다 큽니다. 더 작은 파일로 다시 시도해 주세요."
#: src/lib/hooks/useCleanError.ts:41
#: src/lib/strings/errors.ts:19
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "이 그룹 대화에는 초대 링크가 없습니다."
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "GIF를 불러오는 동안 문제가 발생했습니다. 인터넷 연결 상태를 확인하고 다시 시도해 주세요."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "인터넷 연결에 문제가 발생했습니다. 다시 시도해 주세요"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "인터넷 연결에 문제가 발생했습니다. 다시 시도해 주
msgid "There was an issue contacting the server"
msgstr "서버에 연결하는 동안 문제가 발생했습니다"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "서버에 연결하는 동안 문제가 발생했습니다. 인터넷 연결 상태를 확인하고 다시 시도해 주세요."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "알림을 가져오는 동안 문제가 발생했습니다. 다시 시도하려면 이곳을 탭하세요."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "게시물을 가져오는 동안 문제가 발생했습니다. 다시 시도하려면 이곳을 탭하세요."
@@ -11161,7 +11420,7 @@ msgstr "내 서비스 정보를 가져오는 동안 문제가 발생했습니다
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "이 피드를 삭제하는 동안 문제가 발생했습니다. 인터넷 연결 상태를 확인하고 다시 시도해 주세요."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "이 이의신청을 <0>{sourceName}0>에게 전송합니다."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "이 이의신청을 Bluesky Moderation Service에게 전송합니다."
@@ -11263,7 +11522,7 @@ msgstr "이 이의신청을 Bluesky Moderation Service에게 전송합니다."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "이 작성자는 로그인한 사용자에게만 게시물을 공개하도록 설정했습니다."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "이 버튼을 누르면 다른 사람이 Germ DM 앱을 열어 메시지를 보낼 수 있습니다. Germ DM 앱에서 이 버튼의 공개 여부를 관리하거나 아래 버튼을 클릭하여 Bluesky 계정을 Germ DM에서 완전히 연결 해제할 수 있습니다."
@@ -11271,7 +11530,12 @@ msgstr "이 버튼을 누르면 다른 사람이 Germ DM 앱을 열어 메시지
msgid "This chat has ended"
msgstr "이 대화는 종료되었습니다"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr "이 대화는 인원이 가득 찼습니다"
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "이 대화는 잠겨 있습니다"
@@ -11310,7 +11574,11 @@ msgstr "관련 사용자 중 한 명이 다른 사용자를 차단했기 때문
msgid "This content is not viewable without a Bluesky account."
msgstr "이 콘텐츠는 Bluesky 계정이 없으면 볼 수 없습니다."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr "이 대화는 잠겨 있습니다."
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "이 대화는 삭제되었거나 비활성화된 계정과의 대화입니다. 옵션을 보려면 누르세요"
@@ -11318,7 +11586,7 @@ msgstr "이 대화는 삭제되었거나 비활성화된 계정과의 대화입
msgid "This draft will be permanently deleted."
msgstr "이 임시 저장은 영구적으로 삭제됩니다."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "이 이메일은 이미 내 계정에 연결되어 있습니다."
@@ -11360,7 +11628,7 @@ msgstr "이 피드는 더 이상 온라인 상태가 아닙니다. 대신 <0>Dis
msgid "This handle is reserved. Please try a different one."
msgstr "이 핸들은 예약되었습니다. 다른 핸들을 사용하세요."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "이 이미지는 사용할 수 없습니다. .jpg 또는 .png와 같은 다른 형식을 사용해 보세요."
@@ -11368,6 +11636,18 @@ msgstr "이 이미지는 사용할 수 없습니다. .jpg 또는 .png와 같은
msgid "This information is private and not shared with other users."
msgstr "이 정보는 비공개이며 다른 사용자와 공유되지 않습니다."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr "이 초대 링크는 비활성화되었습니다."
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr "이 초대 링크는 만료되었습니다"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr "이 초대 링크는 유효하지 않습니다"
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "이것은 빈 상태입니다"
@@ -11377,7 +11657,7 @@ msgstr "이것은 빈 상태입니다"
msgid "This is not a valid link"
msgstr "올바른 링크가 아닙니다"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "이 라벨은 이 계정이 자동화된 계정임을 알려줍니다. 이 기능을 켜면 계정 프로필과 게시물의 계정 이름 옆에 이 라벨이 나타납니다. 이 설정은 언제든지 켜거나 끌 수 있습니다."
@@ -11410,13 +11690,13 @@ msgstr "내가 만든 이 목록은 이름이나 설명에 Bluesky의 커뮤니
msgid "This list is empty."
msgstr "이 리스트는 비어 있습니다."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr "이 사용자가 나를 차단했기 때문에 이 메시지는 숨겨졌습니다."
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr "이 사용자를 차단했기 때문에 이 메시지는 숨겨졌습니다."
@@ -11454,7 +11734,7 @@ msgstr "작성자가 삭제한 게시물입니다"
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "이 게시물을 피드와 스레드에서 숨깁니다. 이 작업은 되돌릴 수 없습니다."
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "이 게시물의 작성자가 인용 게시물을 비활성화했습니다."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "이 답글은 스레드 하단의 숨겨진 위치에 정렬되며 자신과 다른 사용자 모두의 후속 답글에 대한 알림이 뮤트됩니다."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "이 화면은 그룹 대화에서만 사용할 수 있습니다."
@@ -11494,18 +11775,18 @@ msgstr "이 사용자는 표시 이름이 없으므로 인증할 수 없습니
msgid "This user doesn't have any followers."
msgstr "이 사용자는 팔로워가 없습니다."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
-msgstr ""
+msgstr "이 사용자는 나를 차단했으므로 메시지를 보낼 수 없습니다."
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr "이 사용자는 나를 차단했습니다. 이 사용자의 콘텐츠를 볼 수 없습니다."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
-msgstr ""
+msgstr "이 사용자는 대화를 비활성화했으므로 메시지를 보낼 수 없습니다."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
@@ -11574,7 +11855,7 @@ msgstr "스레드 설정"
msgid "Threaded"
msgstr "스레드"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "스레드 설정"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "이메일 2단계 인증을 비활성화하려면 이메일 주소에 대한 접근 권한을 인증하세요."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "이메일 2단계 인증을 비활성화하려면 <0>{0}0>에 대한 접근 권한을 인증해 주세요."
@@ -11646,12 +11927,12 @@ msgstr "인기"
msgid "Top replies first"
msgstr "인기순"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "주제"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "인기 동영상"
msgid "Trolling"
msgstr "분쟁 유발"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "신뢰는 관계, 커뮤니티, 공유된 맥락에서 비롯되므로 직접 인증을 발행할 수 있는 조직인 <0>신뢰할 수 있는 인증자0> 또한 지원합니다."
@@ -11763,13 +12044,17 @@ msgstr "서비스에 연결할 수 없습니다. 인터넷 연결 상태를 확
msgid "Unable to delete"
msgstr "삭제할 수 없음"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
-msgid "Unable to find a selected recipient."
-msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr "참여 요청을 가져올 수 없습니다."
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr "선택한 수신자를 찾을 수 없습니다."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
-msgstr ""
+msgstr "선택한 수신자를 찾을 수 없습니다."
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
@@ -11791,7 +12076,7 @@ msgstr "사용할 수 없음"
msgid "Unavailable feed information"
msgstr "사용할 수 없는 피드 정보"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "리스트 차단 해제"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "실행 취소"
@@ -11872,7 +12157,7 @@ msgstr "계정 언팔로우"
msgid "Unfollows the user"
msgstr "사용자를 언팔로우합니다"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "죄송합니다. 구독하는 라벨러 중 이 신고 유형을 지원하는 라벨러가 없습니다."
@@ -11904,13 +12189,13 @@ msgstr "라벨이 없는 성인 콘텐츠"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "라벨이 없거나, 학대적이거나 동의받지 않은 성인 콘텐츠"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr "좋아요 취소"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "좋아요 취소 ({0, plural, other {#개}})"
@@ -11918,7 +12203,7 @@ msgstr "좋아요 취소 ({0, plural, other {#개}})"
msgid "Unlock chat"
msgstr "대화 잠금 해제"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr "이 그룹 대화 잠금 해제하기"
@@ -11955,7 +12240,7 @@ msgstr "대화 언뮤트"
msgid "Unmute list"
msgstr "리스트 언뮤트"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "이 그룹 대화 언뮤트하기"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "고정 해제"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "피드 고정 해제"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "홈에서 고정 해제"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "검토 리스트 고정 해제"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0}(을)를 홈에서 고정 해제했습니다"
@@ -12030,11 +12315,11 @@ msgstr "이 라벨러 구독 취소하기"
msgid "Unsubscribed from list"
msgstr "리스트를 구독 취소했습니다"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "지원되지 않는 클립보드 콘텐츠"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "지원되지 않는 동영상 유형: {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "업데이트"
msgid "Update <0>{displayName}0> in Lists"
msgstr "리스트에서 <0>{displayName}0> 업데이트"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr "앱 업데이트"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "이메일 변경"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "초대 링크 업데이트"
@@ -12065,11 +12354,19 @@ msgstr "초대 링크 업데이트"
msgid "Update to {domain}"
msgstr "{domain}(으)로 변경"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr "앱 업데이트하기"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr "확인하려면 앱을 업데이트하세요."
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "참여하려면 앱을 최신 버전으로 업데이트하세요!"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "이메일 변경"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "답글 표시 여부를 업데이트하지 못했습니다"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "대신 사진 업로드하기"
@@ -12098,39 +12395,40 @@ msgstr "대신 사진 업로드하기"
msgid "Upload a text file to:"
msgstr "텍스트 파일 업로드 경로:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "카메라에서 업로드"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "파일에서 업로드"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "보관함에서 업로드"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "GIF 업로드 중…"
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "이미지 업로드 중…"
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "링크 미리보기 업로드 중…"
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "동영상 업로드 중…"
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "사용자"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "사용자를 차단했습니다"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "{0} 님의 사용자 리스트"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "{0} 님의 사용자 리스트"
@@ -12255,12 +12553,12 @@ msgstr "<0>@{0}0> 님이 팔로우하는 사용자"
msgid "users following <0>@{0}0>"
msgstr "<0>@{0}0> 님을 팔로우하는 사용자"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "내가 팔로우하는 사용자"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "내가 팔로우하는 사용자"
@@ -12277,7 +12575,7 @@ msgstr "인증하지 못했습니다. 다시 시도해 주세요."
msgid "Verification settings"
msgstr "인증 설정"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "인증 설정"
@@ -12304,8 +12602,8 @@ msgstr "다시 인증하기"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "코드 인증"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "DNS 레코드 인증"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "이메일 코드 인증하기"
@@ -12349,7 +12647,7 @@ msgstr "이 계정을 인증하시겠습니까?"
msgid "Verify your age"
msgstr "나이를 인증하세요"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "버전 {0}"
msgid "Video"
msgstr "동영상"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "동영상을 처리하지 못했습니다"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "동영상 피드"
@@ -12419,7 +12717,7 @@ msgstr "동영상을 찾을 수 없습니다."
msgid "Video settings"
msgstr "동영상 설정"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "동영상을 업로드했습니다"
@@ -12432,18 +12730,18 @@ msgstr "동영상: {0}"
msgid "Videos"
msgstr "동영상"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr "동영상 길이는 3분 미만이어야 합니다."
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "보기"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr "{0} 보기"
@@ -12455,7 +12753,7 @@ msgstr "{0} 님의 아바타 보기"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "{0} 님의 프로필 보기"
msgid "View {0}’s profile"
msgstr "{0} 님의 프로필 보기"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "{displayName} 님의 프로필 보기"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr "{publicationTitle} 보기"
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr "@{0} 님의 프로필 보기"
@@ -12503,10 +12801,18 @@ msgstr "세부 정보 보기"
msgid "View full thread"
msgstr "전체 스레드 보기"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr "그룹 대화 요청 보기"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr "참여 요청 보기"
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr "이 그룹 대화의 참여 요청을 확인합니다"
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "이 라벨에 대한 정보 보기"
@@ -12522,7 +12828,7 @@ msgstr "더 보기"
msgid "View more trending videos"
msgstr "인기 동영상 더 보기"
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "게시물 보기"
@@ -12539,10 +12845,10 @@ msgstr "프로필 보기"
msgid "View profile banner"
msgstr "프로필 배너 보기"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr "발행물 보기"
@@ -12550,7 +12856,7 @@ msgstr "발행물 보기"
msgid "View the avatar"
msgstr "아바타 보기"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "이 그룹 대화의 초대 링크 보기"
@@ -12563,7 +12869,7 @@ msgstr "{0} 님이 제공하는 라벨링 서비스 보기"
msgid "View this user's verifications"
msgstr "이 사용자의 인증 보기"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "이 피드를 좋아하는 사용자 보기"
@@ -12596,8 +12902,8 @@ msgstr "내가 뮤트한 계정 보기"
msgid "View your verifications"
msgstr "내 인증 보기"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "전체 이미지를 봅니다"
@@ -12640,8 +12946,8 @@ msgstr "콘텐츠 경고"
msgid "Warn content and filter from feeds"
msgstr "콘텐츠 경고 및 피드에서 필터링"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "시청하기"
@@ -12665,10 +12971,14 @@ msgstr "해당 태그에 대한 검색 결과를 찾을 수 없습니다."
msgid "We couldn't find any results for that topic."
msgstr "해당 주제에 대한 결과를 찾을 수 없습니다."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "이 대화를 불러올 수 없습니다"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr "이 대화의 참여 요청을 불러올 수 없습니다"
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "이 대화 설정을 불러올 수 없습니다"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "관심 주제를 2개 이상 선택하는 것을 권장합니다."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "링크가 포함된 이메일을 <0>{0}0>(으)로 보냈습니다. 이메일 인증 절차를 완료하려면 해당 링크를 클릭하세요."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "동영상을 업로드할 수 있는지 확인할 수 없습니다. 다시 시도해 주세요."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "친구를 찾으면 알림을 보냅니다."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "링크가 포함된 이메일을 <0>{0}0>(으)로 전송합니다. 이메일 인증 절차를 완료하려면 해당 링크를 클릭하세요."
@@ -12779,12 +13089,12 @@ msgstr "계정의 연령 확인 절차를 시작하는 데 문제가 발생했
msgid "We're having network issues, try again"
msgstr "네트워크 문제가 발생했습니다. 다시 시도해 주세요"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "네트워크 문제가 발생했습니다. 다시 시도해 주세요"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Bluesky에 인증을 쉽게 확인할 수 있는 체크 표시를 도입합니다."
@@ -12814,12 +13124,12 @@ msgstr "죄송하지만 검색을 완료할 수 없습니다. 몇 분 후에 다
msgid "We're sorry, you cannot access this screen at this time."
msgstr "죄송합니다. 현재 이 화면에 접근할 수 없습니다."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "죄송하지만 답글을 달려는 게시물이 삭제되었습니다."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "죄송합니다. 페이지를 찾을 수 없습니다."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "스타터 팩의 이름을 무엇으로 할까요?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "무슨 일이 일어나고 있나요?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "체크 표시를 탭하면 어떤 조직이 인증을 승인했는지 확인할 수 있습니다."
@@ -12878,7 +13188,7 @@ msgstr "체크 표시를 탭하면 어떤 조직이 인증을 승인했는지
msgid "Who can interact with this post?"
msgstr "누가 이 게시물과 상호작용할 수 있나요?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "그룹 대화 참여 대상 및 방식"
@@ -12887,13 +13197,13 @@ msgstr "그룹 대화 참여 대상 및 방식"
msgid "Who can reply"
msgstr "답글을 달 수 있는 사용자"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "누가 인증을 받을 수 있나요?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "이런!"
@@ -12939,19 +13249,19 @@ msgstr "이 스타터 팩을 검토해야 하는 이유는 무엇인가요?"
msgid "Why should this user be reviewed?"
msgstr "이 사용자를 검토해야 하는 이유는 무엇인가요?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "이 사용자를 차단하거나 이 대화를 삭제하시겠습니까?"
#: src/components/dms/AfterReportConversationDialog.tsx:47
msgid "Would you like to block this user and/or leave this conversation?"
-msgstr ""
+msgstr "이 사용자를 차단하거나 대화를 종료하시겠습니까?"
#: src/view/com/composer/drafts/DraftsButton.tsx:110
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr "임시 저장 목록으로 이동하기 전에 작성 중인 내용을 저장하시겠습니까?"
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr "나중에 다시 작성할 수 있도록 임시 저장하시겠습니까?"
@@ -12960,12 +13270,12 @@ msgstr "나중에 다시 작성할 수 있도록 임시 저장하시겠습니까
msgid "Write a post"
msgstr "게시물 작성하기"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "게시물 작성"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "답글 작성하기"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "서버에서 잘못된 DID를 반환했습니다. 수신됨: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "올바르지 않은 대화 유형"
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "회원님이 접속하신 지역은 앱 접근 전 법적으로 연령 확인이 필요한 곳입니다."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr "{0} 님을 차단했습니다"
@@ -13068,7 +13379,7 @@ msgstr "라이브 중"
msgid "You are no longer live"
msgstr "더 이상 라이브 중이 아닙니다"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "동영상을 업로드할 수 없습니다."
@@ -13117,12 +13428,12 @@ msgstr "언제든지 동의를 철회하고 데이터를 삭제할 수 있습니
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "앱 내 대화 설정에서 대화 알림 소리 여부를 선택할 수 있습니다"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "어떤 설정을 선택하든 진행 중인 대화를 계속할 수 있습니다."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "이제 특정 사용자가 게시물을 올릴 때 알림을 받도록 선택할 수 있습니다. 실시간 업데이트를 받고 싶은 사용자가 있다면 해당 사용자의 프로필로 이동하여 팔로우 버튼 근처에 있는 새로운 종 모양 아이콘을 찾아보세요."
@@ -13131,7 +13442,12 @@ msgstr "이제 특정 사용자가 게시물을 올릴 때 알림을 받도록
msgid "You can now sign in with your new password."
msgstr "이제 새 비밀번호로 로그인할 수 있습니다."
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr "게시물당 최대 {MAX_GALLERY_IMAGES, plural, other {#개}}의 이미지만 추가할 수 있습니다"
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "최대 1000자까지만 임시 저장할 수 있습니다."
@@ -13139,11 +13455,11 @@ msgstr "최대 1000자까지만 임시 저장할 수 있습니다."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "최대 1000자까지만 임시 저장할 수 있습니다. 임시 저장 목록을 확인하기 전에 이 게시물을 삭제하시겠습니까?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr "GIF는 한 번에 하나만 선택할 수 있습니다."
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "동영상은 한 번에 하나만 선택할 수 있습니다."
@@ -13155,10 +13471,10 @@ msgstr "계정을 재활성화하여 로그인을 계속할 수 있습니다.
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
-msgstr "이미지는 최대 {MAX_IMAGES, plural, other {#개}}까지 선택할 수 있습니다."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr "총 {MAX_GALLERY_IMAGES, plural, other {#개}}까지 선택할 수 있습니다."
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,9 +13482,9 @@ msgstr "이미지는 최대 {MAX_IMAGES, plural, other {#개}}까지 선택할
msgid "You can update this later from your settings."
msgstr "나중에 설정에서 변경할 수 있습니다."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
-msgstr ""
+msgstr "아직 그룹 대화를 만들 수 없습니다."
#: src/lib/hooks/useCleanError.ts:54
#: src/lib/strings/errors.ts:28
@@ -13197,6 +13513,10 @@ msgstr "저장된 피드가 없습니다."
msgid "You got here first"
msgstr "제일 먼저 오셨네요"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr "이전에 이 그룹에서 내보내졌으므로 이 링크를 사용하여 다시 가입할 수 없습니다."
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ msgstr "이메일 주소를 성공적으로 인증했습니다. 이 대화 상
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "일시적으로 동영상 업로드 한도에 도달했습니다. 나중에 다시 시도해 주세요."
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr "이 초안에 저장되지 않은 변경 사항이 있습니다. 저장하시겠습니까?"
@@ -13336,7 +13656,7 @@ msgstr "스타터 팩을 만들려면 다른 사용자를 최소 7명 이상 팔
msgid "You must grant access to your photo library to save a QR code"
msgstr "QR 코드를 저장하려면 사진 보관함에 대한 접근 권한을 부여해야 합니다"
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "미디어 라이브러리에 대한 접근 권한을 허용해야 합니다."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "앱을 다시 시작해야 할 수 있습니다."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "내가 {0}(으)로 반응함"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "최근 생년월일을 변경했습니다"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "모든 계정에서 로그아웃됩니다."
@@ -13390,7 +13710,7 @@ msgstr "이제 이 스레드에 대한 알림을 받습니다"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "‘재설정 코드’가 포함된 이메일을 받게 되면 여기에 해당 코드를 입력한 다음 새 비밀번호를 입력하세요."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "초대받지 않으면 다시 참여할 수 없습니다."
@@ -13463,7 +13783,7 @@ msgstr "활성 콘텐츠의 끝에 도달했습니다."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "피드 끝에 도달했습니다! 팔로우할 계정을 더 찾아보세요."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "임시 저장 수가 최대치에 도달했습니다"
@@ -13475,11 +13795,11 @@ msgstr "허용된 최대 요청 수에 도달했습니다. 나중에 다시 시
msgid "You've reached the start of the active content."
msgstr "활성 콘텐츠의 시작 부분에 도달했습니다."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "동영상 업로드 일일 한도에 도달했습니다 (용량이 너무 큼)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "동영상 업로드 일일 한도에 도달했습니다 (동영상 수가 너무 많음)"
@@ -13499,10 +13819,18 @@ msgstr "계정을 삭제했습니다. 또 봐요! ✌️"
msgid "Your account has been suspended"
msgstr "계정이 일시 정지되었습니다"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "내 계정은 아직 동영상을 업로드할 수 없습니다. 나중에 다시 시도해 주세요."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr "계정이 너무 새롭습니다"
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr "새 그룹 대화를 만들려면 계정 생성 후 최소 7일이 지나야 합니다."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "모든 공개 데이터 레코드가 포함된 계정 저장소를 ‘CAR’ 파일로 다운로드할 수 있습니다. 이 파일에는 이미지와 같은 미디어 임베드나 별도로 가져와야 하는 비공개 데이터는 포함되지 않습니다."
@@ -13519,7 +13847,7 @@ msgstr "이의신청을 제출했습니다. 이의신청이 받아들여지면
msgid "Your birth date"
msgstr "생년월일"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "대화가 사용 중지되었습니다"
@@ -13561,7 +13889,7 @@ msgstr "이메일"
msgid "Your email appears to be invalid."
msgstr "이메일이 잘못된 것 같습니다."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "내 이메일이 아직 인증되지 않았습니다. Bluesky의 모든 기능을 즐기려면 이메일을 인증해 주세요."
@@ -13582,7 +13910,7 @@ msgstr "팔로우 중 피드가 비어 있습니다. 더 많은 사용자를 팔
msgid "Your full handle will be <0>@{0}0>"
msgstr "내 전체 핸들: <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "위치 정보를 업데이트했습니다"
msgid "Your muted words"
msgstr "뮤트한 단어"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "내 이름과 프로필 사진 및 그룹 채팅 이름이 모든 멤버에게 공개됩니다."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr "이름, 아바타, 그룹 대화 이름, 멤버 수가 모든 사람에게 공개됩니다."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,11 @@ msgstr "비밀번호를 성공적으로 변경했습니다! 앞으로 Bluesky에
msgid "Your password must be at least 8 characters long."
msgstr "비밀번호는 8자 이상이어야 합니다."
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "게시물을 보냈습니다"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "게시물을 보냈습니다"
@@ -13635,7 +13963,7 @@ msgstr "게시물을 보냈습니다"
msgid "Your preferred language"
msgstr "선호하는 언어"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "내 프로필 사진"
@@ -13648,12 +13976,12 @@ msgstr "여러 사용자들의 프로필 사진이 동심원 형태로 내 프
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "답글을 보냈습니다"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "신고를 <0>{0}0>에게 전송합니다."
@@ -13661,7 +13989,7 @@ msgstr "신고를 <0>{0}0>에게 전송합니다."
msgid "Your selected interests help us serve you content you care about."
msgstr "선택한 관심 주제는 사용자가 관심 있는 콘텐츠를 제공하는 데 도움을 줍니다."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "스레드에 내용이 없는 게시물이 포함되어 있어 해당 게시물은 제외됩니다. 나머지 게시물은 스레드 형식으로 게시됩니다."
diff --git a/src/locale/locales/lt/messages.po b/src/locale/locales/lt/messages.po
index 3a911cc6a1..55babe3e94 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\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"
@@ -86,9 +86,14 @@ msgstr ""
msgid "{0, plural, one {# month} other {# months}}"
msgstr ""
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr ""
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:203
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:639
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr ""
msgid "{0}s"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr ""
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:850
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:811
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,8 +643,8 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:33
-msgid "{memberCount}/{MEMBER_LIMIT}"
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
+msgid "{memberCount}/{memberLimit}"
msgstr ""
#: src/features/liveNow/utils.ts:10
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:52
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:47
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,6 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -802,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -825,7 +892,11 @@ msgstr ""
msgid "A screenshot of 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:547
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
+msgid "A selected recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -841,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -854,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr ""
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr ""
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -939,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr ""
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr ""
@@ -993,8 +1079,8 @@ msgstr ""
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1006,16 +1092,16 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1029,7 +1115,7 @@ msgstr ""
msgid "Add App Password"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1037,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1046,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1056,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
+#: src/components/moderation/ReportDialog/index.tsx:528
#: src/components/moderation/ReportDialog/index.tsx:532
-#: src/components/moderation/ReportDialog/index.tsx:536
msgid "Add more details (optional)"
msgstr ""
@@ -1074,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1159,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:550
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1222,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1235,7 +1321,7 @@ msgstr ""
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1272,13 +1358,13 @@ msgstr ""
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1332,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr ""
@@ -1356,7 +1442,7 @@ msgid "Alt Text"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr ""
@@ -1381,7 +1467,7 @@ msgstr ""
msgid "An error occurred"
msgstr ""
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr ""
@@ -1426,11 +1512,11 @@ msgstr ""
msgid "An error occurred while trying to follow all"
msgstr ""
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1455,20 +1541,20 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:56
-msgid "An issue occurred creating the group chat, please try again"
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
+msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:42
-msgid "An issue occurred starting the chat, please try again"
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
+msgid "An issue occurred starting the chat, please try again."
msgstr ""
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
@@ -1484,7 +1570,7 @@ msgstr ""
msgid "An issue occurred, please try again."
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1533,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1549,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1591,7 +1681,7 @@ msgstr ""
msgid "App passwords"
msgstr ""
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr ""
@@ -1612,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr ""
@@ -1626,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr ""
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1669,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1682,23 +1772,23 @@ msgstr ""
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1746,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1761,12 +1851,12 @@ msgstr ""
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1777,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1790,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1834,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:94
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1871,7 +1963,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1881,8 +1973,8 @@ msgstr ""
msgid "Block {displayName}"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:277
-#: src/components/dms/ConvoMenu.tsx:281
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749
#: src/screens/Messages/components/RequestButtons.tsx:149
@@ -1892,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1906,8 +1998,14 @@ msgstr ""
msgid "Block accounts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:147
-msgid "Block and Delete"
+#: src/components/dms/AfterReportDialog.tsx:148
+msgid "Block and delete"
+msgstr ""
+
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:167
+msgctxt "button"
+msgid "Block and leave"
msgstr ""
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
@@ -1922,20 +2020,29 @@ msgstr ""
msgid "Block these accounts?"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:188
-#: src/components/dms/AfterReportDialog.tsx:191
+#: src/components/dms/AfterReportConversationDialog.tsx:221
+#: src/components/dms/AfterReportConversationDialog.tsx:224
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:153
-msgid "Block User"
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:182
+msgctxt "button"
+msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:184
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:196
+#: src/components/dms/AfterReportConversationDialog.tsx:217
+msgid "Block user and/or leave this conversation"
+msgstr ""
+
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr ""
@@ -1943,13 +2050,13 @@ msgstr ""
msgid "Blocked accounts"
msgstr ""
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr ""
@@ -2008,7 +2115,7 @@ msgstr ""
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2032,7 +2139,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:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2116,23 +2223,30 @@ msgstr ""
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:853
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:74
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2160,7 +2274,7 @@ msgstr ""
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr ""
@@ -2171,8 +2285,8 @@ msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2191,10 +2305,10 @@ msgstr ""
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2207,11 +2321,11 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr ""
@@ -2227,9 +2341,9 @@ msgstr ""
msgid "Cancel search"
msgstr ""
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr ""
@@ -2243,7 +2357,7 @@ msgstr ""
msgid "Captions & alt text"
msgstr ""
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2276,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:449
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2289,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:314
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:394
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2323,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr ""
@@ -2340,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2352,31 +2473,35 @@ msgstr ""
msgid "Chat messages - sound"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:199
+#: src/components/dms/ConvoMenu.tsx:216
msgctxt "toast"
msgid "Chat muted"
msgstr ""
-#: src/Navigation.tsx:588
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
+msgid "Chat recipient is not followed by the sender."
+msgstr ""
+
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:82
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/components/dms/ConvoMenu.tsx:84
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr ""
@@ -2393,14 +2518,14 @@ msgstr ""
msgid "Chat unlocked"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:201
+#: src/components/dms/ConvoMenu.tsx:218
msgctxt "toast"
msgid "Chat unmuted"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2454,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2508,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2516,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2533,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2542,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2555,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr ""
@@ -2569,24 +2694,30 @@ msgstr ""
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
-#: src/components/dms/AfterReportDialog.tsx:93
-#: src/components/dms/AfterReportDialog.tsx:98
+#: src/components/dms/AddMembersFlow.tsx:377
+#: src/components/dms/AfterReportConversationDialog.tsx:91
+#: src/components/dms/AfterReportConversationDialog.tsx:96
+#: src/components/dms/AfterReportConversationDialog.tsx:247
+#: src/components/dms/AfterReportConversationDialog.tsx:252
+#: src/components/dms/AfterReportDialog.tsx:94
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2594,14 +2725,14 @@ msgstr ""
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2618,6 +2749,10 @@ msgstr ""
msgid "Close alert"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr ""
@@ -2628,8 +2763,9 @@ msgstr ""
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr ""
@@ -2643,7 +2779,7 @@ msgid "Close image"
msgstr ""
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2654,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr ""
@@ -2666,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2696,7 +2840,7 @@ msgid "Comics"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr ""
@@ -2711,12 +2855,12 @@ msgstr ""
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr ""
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2724,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr ""
@@ -2751,7 +2895,7 @@ msgstr ""
msgid "Confirm"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2813,7 +2957,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr ""
@@ -2860,7 +3004,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2879,38 +3023,51 @@ msgstr ""
msgid "Continue thread..."
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:148
-#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr ""
+#: src/components/dms/AfterReportConversationDialog.tsx:172
+#: src/components/dms/AfterReportConversationDialog.tsx:179
+msgctxt "toast"
+msgid "Conversation left"
+msgstr ""
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2962,6 +3119,7 @@ msgstr ""
msgid "Copy host"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -2992,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr ""
@@ -3017,7 +3175,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr ""
@@ -3030,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3049,8 +3207,9 @@ msgstr ""
msgid "Could not follow all matches. {0}"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:138
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportConversationDialog.tsx:158
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr ""
@@ -3058,13 +3217,17 @@ msgstr ""
msgid "Could not load feed"
msgstr ""
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
msgid "Could not load list"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:205
+#: src/components/dms/ConvoMenu.tsx:222
msgid "Could not mute chat"
msgstr ""
@@ -3103,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr ""
@@ -3123,7 +3286,7 @@ msgstr ""
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr ""
@@ -3138,13 +3301,14 @@ msgstr ""
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3162,7 +3326,7 @@ msgstr ""
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr ""
@@ -3170,7 +3334,7 @@ msgstr ""
msgid "Create another"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3192,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:713
-#: src/components/moderation/ReportDialog/index.tsx:759
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr ""
@@ -3220,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:461
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr ""
@@ -3305,7 +3470,7 @@ msgstr ""
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3346,18 +3511,15 @@ msgstr ""
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:194
-#: src/components/dms/AfterReportDialog.tsx:197
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:150
-msgid "Delete Conversation"
-msgstr ""
-
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr ""
@@ -3366,11 +3528,11 @@ msgstr ""
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr ""
@@ -3380,7 +3542,7 @@ msgstr ""
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr ""
@@ -3401,12 +3563,12 @@ msgstr ""
msgid "Delete this post?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:189
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr ""
@@ -3474,13 +3636,13 @@ msgstr ""
msgid "Dim"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3488,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3501,8 +3663,8 @@ msgstr ""
msgid "Disable haptic feedback"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3514,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3527,9 +3689,9 @@ msgstr ""
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3540,19 +3702,19 @@ msgstr ""
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3580,11 +3742,11 @@ msgstr ""
msgid "Dismiss"
msgstr ""
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr ""
@@ -3640,7 +3802,7 @@ msgstr ""
msgid "Domain verified!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3648,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3667,15 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
-#: src/components/dms/AfterReportDialog.tsx:144
+#: src/components/dms/AfterReportConversationDialog.tsx:164
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3691,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr ""
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3707,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr ""
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr ""
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr ""
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3725,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3789,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3804,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr ""
@@ -3813,14 +3978,14 @@ msgstr ""
msgid "Edit Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr ""
@@ -3834,7 +3999,16 @@ msgstr ""
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3852,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:495
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr ""
@@ -3891,7 +4060,7 @@ msgstr ""
msgid "Edit starter pack"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:494
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3903,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr ""
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr ""
@@ -3937,7 +4106,7 @@ msgstr ""
msgid "Email Resent"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -3972,8 +4141,8 @@ msgstr ""
msgid "Embedded video player"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr ""
@@ -3991,7 +4160,7 @@ msgstr ""
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4004,13 +4173,12 @@ msgstr ""
msgid "Enable media players for"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4057,8 +4225,8 @@ msgstr ""
msgid "Enter a word or tag"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4109,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr ""
@@ -4151,23 +4319,23 @@ msgstr ""
msgid "Everybody can reply to this post."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr ""
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4183,8 +4351,8 @@ msgstr ""
msgid "Exit fullscreen"
msgstr ""
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr ""
@@ -4192,7 +4360,7 @@ msgstr ""
msgid "Expand list of users"
msgstr ""
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr ""
@@ -4204,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -4243,9 +4411,9 @@ msgstr ""
msgid "Explicit sexual images."
msgstr ""
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4255,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4288,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr ""
@@ -4302,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4320,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4333,7 +4502,7 @@ msgstr ""
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4348,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr ""
@@ -4360,24 +4529,24 @@ msgstr ""
msgid "Failed to delete starter pack"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:343
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4393,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:370
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4422,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4459,16 +4627,15 @@ msgstr ""
msgid "Failed to load suggested follows"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:391
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:357
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4477,7 +4644,7 @@ msgid "Failed to pin post"
msgstr ""
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4491,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4508,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4535,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4546,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr ""
@@ -4555,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:394
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4563,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4580,7 +4751,7 @@ msgstr ""
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr ""
@@ -4607,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr ""
@@ -4615,7 +4786,7 @@ msgstr ""
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr ""
@@ -4628,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr ""
@@ -4652,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr ""
@@ -4705,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4713,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4734,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr ""
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4765,7 +4936,7 @@ msgstr ""
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4910,8 +5081,12 @@ msgstr ""
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr ""
@@ -4961,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr ""
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr ""
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr ""
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr ""
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr ""
@@ -5035,7 +5207,7 @@ msgstr ""
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5052,35 +5224,35 @@ msgstr ""
msgid "Generate a starter pack"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5088,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr ""
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5140,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:180
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr ""
@@ -5179,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr ""
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr ""
@@ -5203,7 +5380,9 @@ msgid "Go back to previous step"
msgstr ""
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr ""
@@ -5213,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr ""
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr ""
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5250,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr ""
@@ -5262,19 +5437,19 @@ msgstr ""
msgid "Go to next"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:255
+#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:251
+#: src/components/dms/ConvoMenu.tsx:268
msgid "Go to user's profile"
msgstr ""
@@ -5286,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5306,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:383
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:350
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:338
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
-#: src/screens/Messages/ConversationSettings/index.tsx:89
+#: src/Navigation.tsx:490
+#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5387,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr ""
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5412,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr ""
@@ -5424,8 +5615,8 @@ msgstr ""
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5449,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr ""
@@ -5618,18 +5809,18 @@ msgstr ""
msgid "Hmmmm, we couldn't load that moderation service."
msgstr ""
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr ""
@@ -5679,7 +5870,6 @@ msgid "I have my own domain"
msgstr ""
#: src/components/dms/BlockedByListDialog.tsx:55
-#: src/components/dms/ReportConversationPrompt.tsx:21
msgid "I understand"
msgstr ""
@@ -5688,7 +5878,7 @@ msgstr ""
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr ""
@@ -5724,7 +5914,7 @@ msgstr ""
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5732,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5740,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5753,23 +5942,33 @@ msgstr ""
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr ""
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5784,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5829,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5848,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5930,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr ""
@@ -5948,6 +6151,10 @@ msgstr ""
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr ""
@@ -5977,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:508
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -5991,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6041,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr ""
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr ""
@@ -6050,6 +6257,11 @@ msgstr ""
msgid "Jobs"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6057,6 +6269,15 @@ msgstr ""
msgid "Join Bluesky"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6066,8 +6287,8 @@ msgstr ""
msgid "Journalism"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6110,7 +6331,7 @@ msgstr ""
msgid "Labels on your content"
msgstr ""
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr ""
@@ -6141,7 +6362,7 @@ msgid "Latest"
msgstr ""
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6196,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr ""
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6206,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6219,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:542
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr ""
@@ -6237,19 +6458,27 @@ msgstr ""
msgid "Leave chat"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:229
-#: src/components/dms/ConvoMenu.tsx:233
-#: src/components/dms/ConvoMenu.tsx:299
-#: src/components/dms/ConvoMenu.tsx:303
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/AfterReportConversationDialog.tsx:229
+#: src/components/dms/AfterReportConversationDialog.tsx:233
+#: src/components/dms/ConvoMenu.tsx:246
+#: src/components/dms/ConvoMenu.tsx:250
+#: src/components/dms/ConvoMenu.tsx:316
+#: src/components/dms/ConvoMenu.tsx:320
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#. After-report action for a conversation
+#: src/components/dms/AfterReportConversationDialog.tsx:174
+msgctxt "button"
+msgid "Leave conversation"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:541
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6286,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -6305,11 +6534,7 @@ msgstr ""
msgid "Like 10 posts to train the Discover feed"
msgstr ""
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr ""
@@ -6317,8 +6542,8 @@ msgstr ""
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr ""
@@ -6336,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr ""
@@ -6368,11 +6589,11 @@ msgstr ""
msgid "Linear"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr ""
@@ -6458,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr ""
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr ""
@@ -6504,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6554,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:522
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:520
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:522
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr ""
@@ -6621,7 +6842,7 @@ msgstr ""
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6646,24 +6867,22 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:241
-#: src/components/dms/ConvoMenu.tsx:245
+#: src/components/dms/ConvoMenu.tsx:258
+#: src/components/dms/ConvoMenu.tsx:262
msgid "Mark as read"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6686,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:28
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr ""
@@ -6734,22 +6949,22 @@ msgstr ""
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr ""
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6772,19 +6987,19 @@ msgstr ""
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr ""
-#: src/components/dms/MessageItem.tsx:651
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:646
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6797,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6809,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr ""
@@ -6853,7 +7064,7 @@ msgstr ""
msgid "Moderation lists"
msgstr ""
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr ""
@@ -6862,7 +7073,7 @@ msgstr ""
msgid "moderation settings"
msgstr ""
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr ""
@@ -6908,7 +7119,7 @@ msgstr ""
msgid "Music"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:487
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr ""
@@ -6936,8 +7147,8 @@ msgstr ""
msgid "Mute accounts"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:260
-#: src/components/dms/ConvoMenu.tsx:267
+#: src/components/dms/ConvoMenu.tsx:277
+#: src/components/dms/ConvoMenu.tsx:284
msgid "Mute conversation"
msgstr ""
@@ -6953,7 +7164,7 @@ msgstr ""
msgid "Mute these accounts?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:485
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -6991,7 +7202,7 @@ msgstr ""
msgid "Mute words & tags"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:487
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -6999,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr ""
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr ""
@@ -7067,8 +7278,8 @@ msgstr ""
msgid "Navigates to your profile"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:345
-#: src/components/moderation/ReportDialog/index.tsx:362
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7095,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:107
-#: src/components/dms/dialogs/NewChatDialog.tsx:117
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7133,23 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
-#: src/components/dms/InitiateChatFlow.tsx:715
-#: src/components/dms/InitiateChatFlow.tsx:743
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#. Button used to create a new group chat.
+#. Button used to create a new group chat.
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
+msgctxt "action"
+msgid "New group chat"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7180,7 +7393,7 @@ msgid "New post"
msgstr ""
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr ""
@@ -7215,8 +7428,8 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7288,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7315,7 +7528,7 @@ msgstr ""
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr ""
@@ -7331,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr ""
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7388,8 +7601,8 @@ msgid "No result"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr ""
@@ -7462,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7475,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7501,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr ""
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr ""
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr ""
@@ -7554,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr ""
@@ -7576,7 +7772,8 @@ msgstr ""
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:658
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7601,27 +7798,35 @@ msgstr ""
msgid "Onboarding reset"
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
+msgid "One of the selected recipients does not allow group chats."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
+msgid "One of the selected recipients has blocked you and cannot be messaged."
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr ""
@@ -7630,6 +7835,26 @@ msgstr ""
msgid "Only {0} can reply."
msgstr ""
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7640,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr ""
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr ""
@@ -7657,7 +7892,7 @@ msgstr ""
msgid "Oops!"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr ""
@@ -7665,12 +7900,17 @@ msgstr ""
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr ""
@@ -7684,16 +7924,16 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr ""
@@ -7705,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:120
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr ""
@@ -7735,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7762,6 +8006,10 @@ msgstr ""
msgid "Open system log"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7783,7 +8031,7 @@ msgstr ""
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr ""
@@ -7803,22 +8051,24 @@ msgstr ""
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7835,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7864,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr ""
@@ -7940,12 +8190,14 @@ msgstr ""
msgid "Our blog post"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:88
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportConversationDialog.tsx:86
+#: src/components/dms/AfterReportConversationDialog.tsx:213
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr ""
@@ -7953,14 +8205,15 @@ msgstr ""
msgid "Owner"
msgstr ""
-#: src/components/Lists.tsx:205
-#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
-msgid "Page not found"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
msgstr ""
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
+#: src/components/Lists.tsx:205
+#: src/components/Lists.tsx:220
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
+msgid "Page not found"
msgstr ""
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
@@ -8011,34 +8264,34 @@ msgstr ""
msgid "People"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8084,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr ""
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr ""
@@ -8095,7 +8348,7 @@ msgstr ""
msgid "Pin to home"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr ""
@@ -8109,8 +8362,8 @@ msgid "Pinned"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr ""
@@ -8179,7 +8432,7 @@ msgstr ""
msgid "Please choose your password."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8187,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr ""
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8208,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8228,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8236,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8249,7 +8502,7 @@ msgstr ""
msgid "Please enter your invite code."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8266,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr ""
@@ -8309,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8326,7 +8579,7 @@ msgstr ""
msgid "Porn"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr ""
@@ -8346,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8360,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr ""
@@ -8372,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr ""
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
@@ -8397,7 +8650,7 @@ msgstr ""
msgid "Post interaction settings"
msgstr ""
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8407,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8434,7 +8687,6 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8448,10 +8700,6 @@ msgstr ""
msgid "Posts hidden"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8471,6 +8719,7 @@ msgstr ""
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr ""
@@ -8479,7 +8728,7 @@ msgstr ""
msgid "Press to view followers of this account that you also follow"
msgstr ""
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8502,21 +8751,20 @@ msgstr ""
msgid "Privacy and security"
msgstr ""
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8529,15 +8777,15 @@ msgstr ""
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr ""
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr ""
@@ -8545,8 +8793,8 @@ msgstr ""
msgid "profile"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8578,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8625,10 +8873,6 @@ msgstr ""
msgid "QR code saved to your camera roll!"
msgstr ""
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8654,8 +8898,8 @@ msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr ""
@@ -8676,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8688,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8707,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8755,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8784,6 +9028,10 @@ msgstr ""
msgid "Reconnect"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8793,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr ""
@@ -8839,17 +9087,17 @@ msgstr ""
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr ""
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr ""
@@ -8857,8 +9105,9 @@ msgstr ""
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr ""
@@ -8876,8 +9125,8 @@ msgstr ""
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8902,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr ""
@@ -8952,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:224
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr ""
-#: src/components/Post/Embed/index.tsx:222
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr ""
@@ -8978,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9032,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr ""
@@ -9047,14 +9295,14 @@ msgstr ""
msgid "Replies to this post are disabled."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr ""
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9068,10 +9316,6 @@ msgstr ""
msgid "Reply Hidden by You"
msgstr ""
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr ""
@@ -9089,9 +9333,9 @@ msgstr ""
msgid "Reply was successfully hidden"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:533
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr ""
@@ -9100,21 +9344,20 @@ msgstr ""
msgid "Report account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:287
-#: src/components/dms/ConvoMenu.tsx:291
-#: src/components/dms/ReportConversationPrompt.tsx:17
+#: src/components/dms/ConvoMenu.tsx:304
+#: src/components/dms/ConvoMenu.tsx:308
#: src/screens/Messages/components/RequestButtons.tsx:160
#: src/screens/Messages/components/RequestButtons.tsx:163
msgid "Report conversation"
msgstr ""
#: src/components/moderation/ReportDialog/index.tsx:98
-#: src/components/moderation/ReportDialog/index.tsx:265
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr ""
@@ -9123,7 +9366,7 @@ msgstr ""
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr ""
@@ -9141,12 +9384,15 @@ msgstr ""
msgid "Report starter pack"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:85
-#: src/components/dms/AfterReportDialog.tsx:177
+#: src/components/dms/AfterReportConversationDialog.tsx:83
+#: src/components/dms/AfterReportConversationDialog.tsx:210
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:51
+#: src/components/moderation/ReportDialog/copy.ts:65
msgid "Report this conversation"
msgstr ""
@@ -9154,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:532
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9163,7 +9409,7 @@ msgid "Report this list"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9197,10 +9443,6 @@ msgstr ""
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9223,8 +9465,8 @@ msgid "Reposted by you"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9233,13 +9475,17 @@ msgid "Reposts of this post"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9247,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9269,7 +9534,11 @@ msgstr ""
msgid "Required in your region"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9334,15 +9603,16 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:299
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9356,7 +9626,7 @@ msgstr ""
msgid "Retry"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:296
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9367,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr ""
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr ""
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr ""
@@ -9395,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9420,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:229
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9459,12 +9731,12 @@ msgstr ""
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9475,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr ""
@@ -9492,8 +9764,8 @@ msgstr ""
msgid "Say hello!"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9517,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr ""
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9608,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9618,13 +9890,13 @@ msgstr ""
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9700,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:384
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9769,7 +10041,7 @@ msgstr ""
msgid "Select GIF \"{0}\""
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9791,7 +10063,7 @@ msgstr ""
msgid "Select languages"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:434
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9845,11 +10117,11 @@ msgstr ""
msgid "Select your preferred language for translations in your feed."
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9862,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr ""
@@ -9880,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr ""
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr ""
@@ -9893,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:824
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9901,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9915,7 +10187,7 @@ msgid "Send via direct message"
msgstr ""
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -9956,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr ""
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -9971,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10020,10 +10292,12 @@ msgstr ""
msgid "Sexually Suggestive"
msgstr ""
+#: src/components/MediaPreview.tsx:235
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10039,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10065,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10092,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr ""
@@ -10108,16 +10382,16 @@ msgstr ""
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10211,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr ""
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10238,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10270,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr ""
@@ -10278,6 +10558,10 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10289,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr ""
@@ -10300,7 +10584,7 @@ msgid "Sign Out"
msgstr ""
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr ""
@@ -10332,7 +10616,7 @@ msgstr ""
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10346,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10354,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10403,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10428,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
-#: src/screens/Messages/ConversationSettings/index.tsx:110
+#: src/screens/Messages/Conversation.tsx:137
+#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:291
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10458,11 +10747,11 @@ msgstr ""
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:239
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr ""
@@ -10509,7 +10798,7 @@ msgstr ""
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:123
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr ""
@@ -10523,17 +10812,17 @@ msgstr ""
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:779
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr ""
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr ""
@@ -10595,12 +10884,12 @@ msgstr ""
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10612,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr ""
@@ -10625,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:512
-#: src/components/moderation/ReportDialog/index.tsx:573
-#: src/components/moderation/ReportDialog/index.tsx:580
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10636,13 +10925,13 @@ msgid "Subscribe"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:377
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:386
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:385
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10673,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10711,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10721,12 +11014,20 @@ msgstr ""
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
+msgid "Suspended accounts cannot participate in a group chat."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
+msgid "Suspended accounts cannot participate in chat."
+msgstr ""
+
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr ""
@@ -10735,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10761,7 +11062,7 @@ msgstr ""
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10787,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10857,7 +11176,7 @@ msgstr ""
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10872,7 +11191,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr ""
@@ -10982,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -10990,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr ""
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11034,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11048,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11059,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -11069,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr ""
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr ""
@@ -11094,7 +11420,7 @@ msgstr ""
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11187,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr ""
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr ""
@@ -11196,7 +11522,7 @@ msgstr ""
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11204,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11243,7 +11574,11 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11251,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11293,7 +11628,7 @@ msgstr ""
msgid "This handle is reserved. Please try a different one."
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11301,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11310,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11343,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr ""
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:624
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:620
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11387,7 +11734,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr ""
@@ -11399,7 +11746,8 @@ msgstr ""
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 ""
-#: src/screens/Messages/ConversationSettings/index.tsx:130
+#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11407,7 +11755,7 @@ msgstr ""
msgid "This service has not provided terms of service or a privacy policy."
msgstr ""
-#: src/features/liveNow/index.tsx:200
+#: src/features/liveNow/index.tsx:203
msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}."
msgstr ""
@@ -11427,11 +11775,19 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
+msgid "This user has blocked you and cannot be messaged."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
+msgid "This user has disabled chat and cannot be messaged."
+msgstr ""
+
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
msgstr ""
@@ -11499,7 +11855,7 @@ msgstr ""
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr ""
@@ -11525,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr ""
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11534,10 +11890,6 @@ msgstr ""
msgid "To log out, <0>click here0>. Or if you’d prefer, you can <1>delete your account1>."
msgstr ""
-#: src/components/dms/ReportConversationPrompt.tsx:19
-msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue."
-msgstr ""
-
#: src/components/dms/DateDivider.tsx:27
msgid "Today"
msgstr ""
@@ -11575,12 +11927,12 @@ msgstr ""
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11631,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11692,6 +12044,18 @@ msgstr ""
msgid "Unable to delete"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
+msgid "Unable to find the selected recipient."
+msgstr ""
+
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
msgstr ""
@@ -11712,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:662
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11734,8 +12098,8 @@ msgstr ""
msgid "Unblock {displayName}"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:277
-#: src/components/dms/ConvoMenu.tsx:281
+#: src/components/dms/ConvoMenu.tsx:294
+#: src/components/dms/ConvoMenu.tsx:298
#: src/view/com/profile/ProfileMenu.tsx:468
#: src/view/com/profile/ProfileMenu.tsx:474
msgid "Unblock account"
@@ -11758,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11793,7 +12157,7 @@ msgstr ""
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:496
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11825,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11839,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:519
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11867,7 +12231,7 @@ msgstr ""
msgid "Unmute account"
msgstr ""
-#: src/components/dms/ConvoMenu.tsx:265
+#: src/components/dms/ConvoMenu.tsx:282
msgid "Unmute conversation"
msgstr ""
@@ -11876,7 +12240,7 @@ msgstr ""
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:484
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11895,14 +12259,14 @@ msgid "Unpin"
msgstr ""
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr ""
@@ -11917,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr ""
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr ""
@@ -11951,11 +12315,11 @@ msgstr ""
msgid "Unsubscribed from list"
msgstr ""
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -11968,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -11986,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12011,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr ""
@@ -12019,39 +12395,40 @@ msgstr ""
msgid "Upload a text file to:"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr ""
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr ""
@@ -12094,7 +12471,8 @@ msgstr ""
msgid "user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportConversationDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12131,7 +12509,7 @@ msgid "User list by {0}"
msgstr ""
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12175,12 +12553,12 @@ msgstr ""
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12197,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12224,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12236,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr ""
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12269,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12300,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr ""
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr ""
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12339,7 +12717,7 @@ msgstr ""
msgid "Video settings"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr ""
@@ -12352,18 +12730,18 @@ msgstr ""
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12375,7 +12753,7 @@ msgstr ""
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12387,17 +12765,17 @@ msgstr ""
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:388
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12423,10 +12801,18 @@ msgstr ""
msgid "View full thread"
msgstr ""
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:42
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr ""
@@ -12442,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12459,10 +12845,10 @@ msgstr ""
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:378
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:389
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12470,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:506
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12483,7 +12869,7 @@ msgstr ""
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr ""
@@ -12516,8 +12902,8 @@ msgstr ""
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12560,8 +12946,8 @@ msgstr ""
msgid "Warn content and filter from feeds"
msgstr ""
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12585,11 +12971,15 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:111
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
+#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12635,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr ""
@@ -12669,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12699,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12734,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr ""
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr ""
@@ -12785,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr ""
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12798,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12807,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr ""
@@ -12827,6 +13217,7 @@ msgid "Why are you appealing?"
msgstr ""
#: src/components/moderation/ReportDialog/copy.ts:52
+#: src/components/moderation/ReportDialog/copy.ts:66
msgid "Why should this conversation be reviewed?"
msgstr ""
@@ -12858,15 +13249,19 @@ msgstr ""
msgid "Why should this user be reviewed?"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:49
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
+#: src/components/dms/AfterReportConversationDialog.tsx:47
+msgid "Would you like to block this user and/or leave this conversation?"
+msgstr ""
+
#: src/view/com/composer/drafts/DraftsButton.tsx:110
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12875,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr ""
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr ""
@@ -12893,7 +13288,8 @@ msgstr ""
msgid "Wrong DID returned from server. Received: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:129
+#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -12945,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:635
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -12979,11 +13375,11 @@ msgstr ""
msgid "You are Live"
msgstr ""
-#: src/features/liveNow/index.tsx:368
+#: src/features/liveNow/index.tsx:371
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr ""
@@ -12991,7 +13387,7 @@ msgstr ""
msgid "You are not following anyone yet"
msgstr ""
-#: src/features/liveNow/index.tsx:312
+#: src/features/liveNow/index.tsx:315
msgid "You are now live!"
msgstr ""
@@ -13032,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13046,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13054,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13070,9 +13471,9 @@ msgstr ""
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13081,6 +13482,10 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr ""
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
+msgid "You cannot create a group chat yet."
+msgstr ""
+
#: src/lib/hooks/useCleanError.ts:54
#: 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."
@@ -13108,6 +13513,10 @@ msgstr ""
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13177,7 +13586,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13247,7 +13656,7 @@ msgstr ""
msgid "You must grant access to your photo library to save a QR code"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13265,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13280,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr ""
@@ -13301,7 +13710,7 @@ msgstr ""
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13374,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr ""
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13386,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr ""
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr ""
@@ -13410,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 ""
@@ -13430,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr ""
@@ -13472,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13493,7 +13910,7 @@ msgstr ""
msgid "Your full handle will be <0>@{0}0>"
msgstr ""
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13522,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13534,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13546,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13559,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:523
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13572,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/ne/messages.po b/src/locale/locales/ne/messages.po
index 55019040db..7c5b048cc8 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Nepali\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# मिनेट} other {# मिनेटहरू}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# महिना} other {# महिनाहरू}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# सेकेन्ड} other {# सेकेन्ड
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "{0} को अवतार"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}मि"
msgid "{0}s"
msgstr "{0}से"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr "{following} पछ्याउँदै छन्"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "{handle} लाई सन्देश पठाउन सकिदैन"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -860,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "पहुँचयोग्यता"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "पहुँचयोग्यता सेटिङ्स"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "खाताको म्यूट हटाइएको छ"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "थप्नुहोस्"
@@ -999,8 +1079,8 @@ msgstr "खाता थप्नुहोस्"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "वैकल्पिक पाठ थप्नुहोस् (ऐच
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "अर्को खाता थप्नुहोस्"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "अर्को पोष्ट थप्नुहोस्"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr "एप पासवर्ड थप्नुहोस्"
msgid "Add App Password"
msgstr "एप पासवर्ड थप्नुहोस्"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr ""
@@ -1080,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "म्यूट शब्दहरू र ट्यागहरू थप्नुहोस्"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr ""
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "तपाईंको प्रत्यक्ष सन्देशह
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "पहिले नै @{0} को रूपमा साइन इन गरिएको छ"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "वैकल्पिक"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "वैकल्पिक पाठ"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "वैकल्पिक पाठले दृष्टिहीन र कमजोर दृष्टि भएका प्रयोगकर्ताहरूका लागि चित्रहरू वर्णन गर्छ, र सबैलाई सन्दर्भ दिन मद्दत गर्दछ।"
@@ -1387,7 +1467,7 @@ msgstr "त्रुटि भएको छ"
msgid "An error occurred"
msgstr "त्रुटि भयो"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "भिडियो संकुचन गर्दा त्रुटि भयो।"
@@ -1432,11 +1512,11 @@ msgstr "QR कोड बचत गर्दा त्रुटि भयो!"
msgid "An error occurred while trying to follow all"
msgstr "सबैलाई पछ्याउने प्रयास गर्दा त्रुटि भयो"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "यी विकल्पहरूमा समावेश नभएको समस्या"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "कुराकानी खोल्ने प्रयास गर्
msgid "An issue occurred, please try again."
msgstr "समस्या भयो, कृपया पुन: प्रयास गर्नुहोस्।"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "एप पासवर्ड नाम कम्तिमा ४ वर
msgid "App passwords"
msgstr "एप पासवर्डहरू"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "एप पासवर्डहरू"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "अपील बुझाइएको छ।"
@@ -1632,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "यो निर्णयको अपील गर्नुहोस्।"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "के तपाईं \"{0}\" एप पासवर्ड मेटाउन निश्चित हुनुहुन्छ?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ msgstr "के तपाईं यो स्टार्टर प्याक
msgid "Are you sure you want to discard your changes?"
msgstr "के तपाईं आफ्ना परिवर्तनहरू हटाउन निश्चित हुनुहुन्छ?"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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 "के तपाईं यो कुराकानी छोड्न निश्चित हुनुहुन्छ? तपाईंका सन्देशहरू तपाईंको लागि मेटिनेछन्, तर अर्को सहभागीको लागि होइन।"
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr "के तपाईं यसलाई आफ्नो फिडहरूबाट हटाउन निश्चित हुनुहुन्छ?"
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "के तपाईं यस पोस्ट हटाउन चाहनुहुन्छ?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "भिडियो र GIF हरू अटोप्ले गर्न
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr "फिर्ता"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1840,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1877,7 +1963,7 @@ msgstr "जन्मदिन"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "खाता ब्लक गर्नुहोस्"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "खाता ब्लक गर्नुहोस्?"
msgid "Block accounts"
msgstr "खाताहरू ब्लक गर्नुहोस्"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "यी खाताहरू ब्लक गर्नुहोस्?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr ""
@@ -1948,7 +2034,7 @@ msgctxt "button"
msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "ब्लक गरियो"
@@ -1964,13 +2050,13 @@ msgstr "ब्लक गरियो"
msgid "Blocked accounts"
msgstr "ब्लक गरिएका खाताहरू"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "ब्लक गरिएका खाताहरू"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "ब्लक गरिएका खाताहरूले तपाईंको थ्रेडहरूमा उत्तर दिन सक्दैनन्, तपाईंलाई उल्लेख गर्न सक्दैनन्, वा अन्यथा तपाईंसँग अन्तरक्रिया गर्न सक्दैनन्।"
@@ -2029,7 +2115,7 @@ msgstr "ब्लूस्काई साथीहरूसँग अझ रा
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,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:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2137,23 +2223,30 @@ msgstr "व्यापार"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "{0} द्वारा"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "खाता सिर्जना गरेर तपाईं <0>स
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "क्यामेरा"
@@ -2192,8 +2285,8 @@ msgstr "क्यामेरा"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "क्यामेरा"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "क्यामेरा"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "रद्द गर्नुहोस्"
@@ -2248,9 +2341,9 @@ msgstr "पुनः सक्रियता रद्द गर्नुहो
msgid "Cancel search"
msgstr "खोजी रद्द गर्नुहोस्"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "ब्लक गरिएको प्रयोगकर्तासँग अन्तरक्रिया गर्न सकिँदैन"
@@ -2264,7 +2357,7 @@ msgstr "उपशीर्षक (.vtt)"
msgid "Captions & alt text"
msgstr "उपशीर्षक र वैकल्पिक पाठ"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr "ह्यान्डल परिवर्तन गर्नुहोस्"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "कुराकानी"
@@ -2361,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "कुराकानी म्यूट गरियो"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "कुराकानी सेटिङ्स"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "कुराकानी सेटिङ्स"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "कुराकानी अनम्यूट गरियो"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "यो रंगलाई आफ्नो अवतारको रूपमा छान्नुहोस्"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr "यहाँ क्लिक गर्नुहोस्"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2567,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "असफल सन्देश पुन: प्रयास गर्न क्लिक गर्नुहोस्"
@@ -2594,28 +2694,30 @@ msgstr "असफल सन्देश पुन: प्रयास गर्
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "असफल सन्देश पुन: प्रयास गर्
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "सक्रिय संवाद बन्द गर्नुहोस
msgid "Close alert"
msgstr "चेतावनी बन्द गर्नुहोस्"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "तलको दराज बन्द गर्नुहोस्"
@@ -2657,8 +2763,9 @@ msgstr "तलको दराज बन्द गर्नुहोस्"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "संवाद बन्द गर्नुहोस्"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "चित्र बन्द गर्नुहोस्"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "यो संवाद बन्द गर्नुहोस्"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "पासवर्ड अद्यावधिक चेतावनी बन्द गर्नुहोस्"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "कमिक्स"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "समुदायका दिशानिर्देशहरू"
@@ -2740,12 +2855,12 @@ msgstr "चुनौती पूरा गर्नुहोस्"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "नयाँ पोस्ट तयार गर्नुहोस्"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2753,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr "जवाफ तयार गर्नुहोस्"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "भिडियो कम्प्रेस गर्दै..."
@@ -2780,7 +2895,7 @@ msgstr "<0>मोडरेशन सेटिङ्स0> मा कन्फ
msgid "Confirm"
msgstr "पुष्टि गर्नुहोस्"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "सामग्री र मिडिया"
msgid "Content and media"
msgstr "सामग्री र मिडिया"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "सामग्री र मिडिया"
@@ -2889,7 +3004,7 @@ msgstr "सन्दर्भ मेनु पृष्ठभूमि, मे
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "थ्रेड जारी राख्नुहोस्..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "अर्को चरणमा जारी राख्नुहोस्"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "वार्तालाप मेटाइयो"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "वार्तालाप मेटाइयो"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "बिल्ड संस्करण क्लिपबोर्डमा प्रतिलिपि गरियो"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "DID प्रतिलिपि गर्नुहोस्"
msgid "Copy host"
msgstr "होस्ट प्रतिलिपि गर्नुहोस्"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "सन्देशको पाठ प्रतिलिपि गर्नुहोस्"
@@ -3052,7 +3175,7 @@ msgstr "TXT रेकर्ड मान प्रतिलिपि गर्
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "प्रतिलिपि अधिकार नीति"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "कुराकानी छोड्न सकिएन"
@@ -3094,6 +3217,10 @@ msgstr "कुराकानी छोड्न सकिएन"
msgid "Could not load feed"
msgstr "फिड लोड गर्न सकिएन"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "सिर्जना गर्नुहोस्"
@@ -3159,7 +3286,7 @@ msgstr "स्टार्टर प्याकका लागि QR कोड
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "स्टार्टर प्याक सिर्जना गर्नुहोस्"
@@ -3174,13 +3301,14 @@ msgstr "मेरो लागि स्टार्टर प्याक स
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "खाता बनाउनुहोस्"
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "यसको सट्टा एउटा अवतार बनाउनुहोस्"
@@ -3206,7 +3334,7 @@ msgstr "यसको सट्टा एउटा अवतार बनाउ
msgid "Create another"
msgstr "अर्को बनाउनुहोस्"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "नयाँ खाता सिर्जना गर्नुहोस्"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "{0} का लागि रिपोर्ट सिर्जना गर्नुहोस्"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "सिर्जना गरियो {0}"
@@ -3341,7 +3470,7 @@ msgstr "डिफल्ट"
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "कुराकानी घोषणाको रेकर्ड मे
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "मेरो लागि मेटाउनुहोस्"
@@ -3399,11 +3528,11 @@ msgstr "मेरो लागि मेटाउनुहोस्"
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "सन्देश मेटाउनुहोस्"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "मेरो लागि सन्देश मेटाउनुहोस्"
@@ -3413,7 +3542,7 @@ msgstr "मेरो खाता मेटाउनुहोस्"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "पोस्ट मेटाउनुहोस्"
@@ -3434,12 +3563,12 @@ msgstr "यो सूची मेटाउनुहोस्?"
msgid "Delete this post?"
msgstr "यो पोस्ट मेटाउनुहोस्?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "मेटाइयो"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "मेटाइएको खाता"
@@ -3507,13 +3636,13 @@ msgstr "संवाद: यो पोस्टसँग कसले अन्
msgid "Dim"
msgstr "धूमिल"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3521,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3534,8 +3663,8 @@ msgstr "इमेल 2FA अक्षम गर्नुहोस्"
msgid "Disable haptic feedback"
msgstr "ह्याप्टिक प्रतिक्रिया अक्षम गर्नुहोस्"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "अक्षम गरियो"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "त्याग्नुहोस्"
msgid "Discard changes?"
msgstr "परिवर्तनहरू त्याग्नुहोस्?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "मस्यौदा त्याग्नुहोस्?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "पोस्ट त्याग्नुहोस्?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "नयाँ फिडहरू खोज्नुहोस्"
msgid "Dismiss"
msgstr "रद्द गर्नुहोस्"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "त्रुटि रद्द गर्नुहोस्"
@@ -3673,7 +3802,7 @@ msgstr "यसमा नग्नता समावेश छैन।"
msgid "Domain verified!"
msgstr "डोमेन प्रमाणित गरियो!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3681,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "सम्पन्न"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3741,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr "Bluesky डाउनलोड गर्नुहोस्"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "CAR फाइल डाउनलोड गर्नुहोस्"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "CAR फाइल डाउनलोड गर्नुहोस्"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "उदा. बारम्बार विज्ञापनहरू
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "सम्पादन गर्नुहोस्"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "अवतार सम्पादन गर्नुहोस्"
@@ -3847,14 +3978,14 @@ msgstr "अवतार सम्पादन गर्नुहोस्"
msgid "Edit Feeds"
msgstr "फिड सम्पादन गर्नुहोस्"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "चित्र सम्पादन गर्नुहोस्"
@@ -3868,7 +3999,16 @@ msgstr "अन्तर्क्रिया सेटिङ्स सम्प
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "मेरो फिड सम्पादन गर्नुहोस्"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "व्यक्ति सम्पादन गर्नुहोस्"
@@ -3925,7 +4060,7 @@ msgstr "प्रोफाइल सम्पादन गर्नुहोस
msgid "Edit starter pack"
msgstr "स्टार्टर प्याक सम्पादन गर्नुहोस्"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "को उत्तर दिन सक्छ सम्पादन गर्नुहोस्"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "तपाईंको स्टार्टर प्याक सम्पादन गर्नुहोस्"
@@ -3971,7 +4106,7 @@ msgstr "इमेल ठेगाना"
msgid "Email Resent"
msgstr "इमेल पुनः पठाइयो"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -4006,8 +4141,8 @@ msgstr "यो पोस्टलाई तपाईंको वेबसाइ
msgid "Embedded video player"
msgstr "समाविष्ट भिडियो प्लेयर"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "सक्षम गर्नुहोस्"
@@ -4025,7 +4160,7 @@ msgstr "वयस्क सामग्री सक्षम गर्नुह
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4038,13 +4173,12 @@ msgstr "बाह्य मिडिया सक्षम गर्नुहो
msgid "Enable media players for"
msgstr "मिडिया प्लेयर सक्षम गर्नुहोस्"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr "पासवर्ड प्रविष्ट गर्नुहोस
msgid "Enter a word or tag"
msgstr "शब्द वा ट्याग प्रविष्ट गर्नुहोस्"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4143,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "त्रुटि"
@@ -4185,23 +4319,23 @@ msgstr "सबैले उत्तर दिन सक्छन्"
msgid "Everybody can reply to this post."
msgstr "सबैले यो पोस्टमा उत्तर दिन सक्छन्।"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "सबै जना"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "सबै जना"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "सबै जना"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "तपाईंले पछ्याएका प्रयोगकर
msgid "Exit fullscreen"
msgstr "पूर्ण स्क्रीनबाट बाहिर जानुहोस्"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "वैकल्पिक पाठ विस्तार गर्नुहोस्"
@@ -4226,7 +4360,7 @@ msgstr "वैकल्पिक पाठ विस्तार गर्नु
msgid "Expand list of users"
msgstr "प्रयोगकर्ताहरूको सूची विस्तार गर्नुहोस्"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "जसमा तपाईं उत्तर दिँदै हुनुहुन्छ, त्यो पोस्ट विस्तार वा सङ्कुचित गर्नुहोस्"
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "एक रेकर्डमा URI समाधान हुने आशा गरियो"
@@ -4277,9 +4411,9 @@ msgstr "स्पष्ट वा सम्भावित रूपमा ब
msgid "Explicit sexual images."
msgstr "स्पष्ट यौन चित्रहरू।"
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4289,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "बाह्य मिडिया प्राथमिकताहरू"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "ह्यान्डल परिवर्तन गर्न असफल भयो। कृपया पुन: प्रयास गर्नुहोस्।"
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "एप पासवर्ड सिर्जना गर्न अस
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "सन्देश मेटाउन असफल"
@@ -4394,24 +4529,24 @@ msgstr "पोस्ट मेटाउन असफल। कृपया प
msgid "Failed to delete starter pack"
msgstr "स्टार्टर प्याक मेटाउन असफल"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "फिड्स प्राथमिकताहरू लोड गर्न असफल"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "सुझाव गरिएका फिड्स लोड गर्
msgid "Failed to load suggested follows"
msgstr "सुझाव गरिएका फलोहरू लोड गर्न असफल भयो"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "पोस्ट पिन गर्न असफल भयो"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "अपील पठाउन असफल भयो, कृपया पुन: प्रयास गर्नुहोस्।"
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "थ्रेड म्यूट टगल गर्न असफल, कृपया पुन: प्रयास गर्नुहोस्"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4614,7 +4751,7 @@ msgstr "फिड्स अद्यावधिक गर्न असफल
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "सेटिङ्स अद्यावधिक गर्न असफल"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "फिड"
@@ -4649,7 +4786,7 @@ msgstr "फिड"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "{0} द्वारा फिड"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr ""
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "फिड्स"
@@ -4739,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "अन्तिम रूप दिँदै"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "फलो गर्न खाताहरू फेला पार्नुहोस्"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr ""
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "<0>{0}0> र <1>{1}1> ले अनुसरण गरेका छ
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "<0>{0}0>, <1>{1}1>, र {2, plural, one {# other} other {# others}} ले अनुसरण गरेका छन्"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "तपाईंले चिनेका @{0} का अनुसरणकर्ताहरू"
@@ -4995,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr "अनुसरण फिड प्राथमिकताहरू"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "अनुसरण फिड प्राथमिकताहरू"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "तपाईलाई अनुसरण गर्छ"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "तपाईलाई अनुसरण गर्छ"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "फन्ट"
@@ -5069,7 +5207,7 @@ msgstr "बिर्सनुभयो?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr "<0/> बाट"
msgid "Generate a starter pack"
msgstr "स्टार्टर प्याक उत्पन्न गर्नुहोस्"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "मद्दत प्राप्त गर्नुहोस्"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "आफ्नो प्रोफाइललाई अनुहार दिनुहोस्"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "फर्कनुहोस्"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "फर्कनुहोस्"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "पिछले चरण पर जाएं"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "गृहपृष्ठमा जानुहोस्"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "गृहपृष्ठमा जानुहोस्"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "गृहपृष्ठमा जानुहोस्"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "{0} सँगको कुराकानीमा जानुहोस्"
@@ -5299,12 +5440,12 @@ msgstr "अर्कोमा जानुहोस्"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "प्रोफाइलमा जानुहोस्"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "ह्यान्डल धेरै लामो छ। कृपया छोटो प्रयास गर्नुहोस्।"
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "ह्यासट्याग"
@@ -5458,8 +5615,8 @@ msgstr ""
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "सहयोग"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "फोटो अपलोड गरेर वा अवतार सिर्जना गरेर आफू बोट होइन भनेर देखाउन सहयोग गर्नुहोस्।"
@@ -5652,18 +5809,18 @@ msgstr "हाम्रोमा समस्या छ, यो डेटा ल
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "हाम्रोमा समस्या छ, हामीले त्यो मोडरेशन सेवा लोड गर्न सकेनौं।"
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "पर्खनुहोस्! हामी बिस्तारै भिडियो पहुँच उपलब्ध गराउँदैछौं, र तपाईं अझै प्रतीक्षामा हुनुहुन्छ। छिट्टै पुनः प्रयास गर्नुहोस्।"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "गृहपृष्ठ"
@@ -5721,7 +5878,7 @@ msgstr "म बुझ्छु"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "यदि वैकल्पिक पाठ लामो छ भने, यसको विस्तारित स्थिति परिवर्तन गर्नुहोस्।"
@@ -5757,7 +5914,7 @@ msgstr "यदि तपाईं यो सूची हटाउनुहु
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5765,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr "यदि तपाईंले यो पोस्ट हटाउनुभयो भने, तपाईं यसलाई पुनः प्राप्त गर्न सक्नुहुन्न।"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5773,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "यदि तपाईं आफ्नो पासवर्ड परिवर्तन गर्न चाहनुहुन्छ भने, हामी तपाईंलाई यो खाता हो भनेर प्रमाणित गर्न कोड पठाउनेछौं।"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr ""
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "यदि तपाईं आफ्नो ह्यान्डल वा इमेल परिवर्तन गर्न प्रयास गरिरहनु भएको छ भने, निष्क्रिय गर्नु अघि गर्नुहोस्।"
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "चित्र"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "अमान्य 2FA पुष्टि कोड।"
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "अवैध ह्यान्डल। कृपया अर्को प्रयास गर्नुहोस्।"
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "अवैध प्रमाणिकरण कोड"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "अहिले मात्र तपाईं हुनुहुन्छ! माथि खोजेर आफ्नो स्टार्टर प्याकमा थप मानिसहरू थप्नुहोस्।"
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "जॉब आईडी: {0}"
@@ -6083,6 +6257,11 @@ msgstr "जॉब आईडी: {0}"
msgid "Jobs"
msgstr "जॉबहरू"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "जॉबहरू"
msgid "Join Bluesky"
msgstr "ब्लूस्काईमा सामेल हुनुहोस्"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "कुरा गर्ने प्रक्रियामा साम
msgid "Journalism"
msgstr "पत्रकारिता"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "तपाईंको खातामा लेबलहरू"
msgid "Labels on your content"
msgstr "तपाईंको सामग्रीमा लेबलहरू"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "भाषा सेटिङ"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "पछिल्लो"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "यस चेतावनीबारे थप जान्नुहोस्।"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "ब्लूस्काईमा सार्वजनिक हुने विषयबारे थप जान्नुहोस्।"
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "थप जान्नुहोस्।"
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "छोड्नुहोस्"
@@ -6276,7 +6464,7 @@ msgstr "च्याट छोड्नुहोस्"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "वार्तालाप छोड्नुहोस्"
@@ -6284,13 +6472,13 @@ msgstr "वार्तालाप छोड्नुहोस्"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "वार्तालाप छोड्नुहोस्"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "हल्का"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -6346,11 +6534,7 @@ msgstr "१० पोस्टहरू मन पराउनुहोस्"
msgid "Like 10 posts to train the Discover feed"
msgstr "डिस्कभर फीडलाई तालिम दिन १० पोस्ट मन पराउनुहोस्।"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "यस फीडलाई मन पराउनुहोस्।"
@@ -6358,8 +6542,8 @@ msgstr "यस फीडलाई मन पराउनुहोस्।"
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "मन पराउनेहरू"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "रुचिहरू"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "यस पोस्टमा रुचिहरू"
@@ -6409,11 +6589,11 @@ msgstr "यस पोस्टमा रुचिहरू"
msgid "Linear"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "सूची"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "सूची अनम्यूट गरियो"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "सूचीहरू"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "लोड हुँदैछ..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "लग"
@@ -6662,7 +6842,7 @@ msgstr "तपाईंले अनुसरण गर्ने फीड ह
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr "तपाईंका म्यूट गरिएको शब्द र ट्यागहरू व्यवस्थापन गर्नुहोस्।"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
@@ -6698,13 +6877,12 @@ msgstr ""
msgid "Mark as read"
msgstr "पढिएको रूपमा चिन्ह लगाउनुहोस्।"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "केही दर्शकहरूको लागि असुविधाजनक वा अनुचित हुन सक्ने मिडिया।"
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "उल्लेख गरिएका प्रयोगकर्ता"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr ""
@@ -6775,22 +6949,22 @@ msgstr "सन्देश {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "सन्देश मेटाइएको।"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "सन्देश मेटाइएको।"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6813,19 +6987,19 @@ msgstr "सन्देश धेरै लामो छ।"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "सन्देशहरू"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "मोडरेशन"
@@ -6894,7 +7064,7 @@ msgstr "मोडरेशन सूची अपडेट गरियो।"
msgid "Moderation lists"
msgstr "मोडरेशन सूचीहरू"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "मोडरेशन सूचीहरू"
@@ -6903,7 +7073,7 @@ msgstr "मोडरेशन सूचीहरू"
msgid "moderation settings"
msgstr "मोडरेशन सेटिङ्स"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "मोडरेशन अवस्थाहरू"
@@ -6949,7 +7119,7 @@ msgstr "चलचित्रहरू"
msgid "Music"
msgstr "संगीत"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "म्यूट गर्नुहोस्"
@@ -6994,7 +7164,7 @@ msgstr "सूची म्यूट गर्नुहोस्"
msgid "Mute these accounts?"
msgstr "यी खाता म्यूट गर्नुहोस्?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "थ्रेड म्यूट गर्नुहोस्"
msgid "Mute words & tags"
msgstr "शब्दहरू र ट्यागहरू म्यूट गर्नुहोस्"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "म्यूट गरिएका खाता"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "म्यूट गरिएका खाता"
@@ -7108,8 +7278,8 @@ msgstr "अर्को स्क्रिनमा जानुहोस्"
msgid "Navigates to your profile"
msgstr "तपाईंको प्रोफाइलमा जानुहोस्"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "नयाँ कुराकानी"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7174,29 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "नयाँ पोस्ट"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "नयाँ पोस्ट"
@@ -7262,8 +7428,8 @@ msgstr "समाचार"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "{0} लाई अब अनुसरण गरिरहेको छै
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "अहिलेसम्म कुनै सन्देश छैन"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "अहिले सम्म कुनै सूचना छैन!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "कुनै परिणाम छैन"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "कुनै परिणाम छैन"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "अ-यौन नग्नता"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "फेला परेन"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "सूचना सेटिङ्स"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "सूचना ध्वनीहरू"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "सूचनाहरू"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "अहिले"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "बन्द"
@@ -7623,7 +7772,8 @@ msgstr "ठिक छ"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "मा<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "अनबोर्डिङ रिसेट"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "एक वा बढी GIF हरूमा वैकल्पिक पाठ छैन।"
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "एक वा बढी चित्रहरूमा वैकल्पिक पाठ छैन।"
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "एक वा बढी भिडियोहरूमा वैकल्पिक पाठ छैन।"
@@ -7685,6 +7835,26 @@ msgstr "एक वा बढी भिडियोहरूमा वैकल
msgid "Only {0} can reply."
msgstr "केवल {0} उत्तर दिन सक्छ।"
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr "केवल चित्र फाइलहरू समर्थित छन्"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "केवल WebVTT (.vtt) फाइलहरू समर्थित छन्"
@@ -7712,7 +7892,7 @@ msgstr "ओहो, केही गडबड भयो!"
msgid "Oops!"
msgstr "ओहो!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "अवतार सिर्जनाकर्ता खोल्नुहोस्"
@@ -7720,12 +7900,17 @@ msgstr "अवतार सिर्जनाकर्ता खोल्नु
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "कुराकानी विकल्प खोल्नुहोस्"
@@ -7739,16 +7924,16 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "इमोजी चयनकर्ता खोल्नुहोस्"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "फिड विकल्प मेनु खोल्नुहोस्"
@@ -7760,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "{niceUrl} को लिङ्क खोल्नुहोस्"
@@ -7790,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr "पोस्ट विकल्प मेनु खोल्नुहोस्"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr "स्टोरीबुक पृष्ठ खोल्नुहोस
msgid "Open system log"
msgstr "प्रणाली लग खोल्नुहोस्"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "डिबग प्रविष्टिका लागि थप व
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "डिभाइसमा क्यामेरा खोल्नुहोस्"
@@ -7858,22 +8051,24 @@ msgstr "कम्पोजर खोल्नुहोस्"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "नयाँ Bluesky खाता सिर्जना गर्न प्रवाह खोल्नुहोस्"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "आफ्नो विद्यमान Bluesky खातामा साइन इन गर्न प्रवाह खोल्नुहोस्"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "यो प्रोफाइल खोल्नुहोस्"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "हाम्रा मोडरेटरहरूले रिपोर्टहरूको समीक्षा गरी तपाईंको Bluesky च्याट पहुँचलाई निष्क्रिय गर्ने निर्णय गरेका छन्।"
@@ -8010,16 +8205,17 @@ msgstr "हाम्रा मोडरेटरहरूले रिपोर
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "पृष्ठ फेला परेन"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "पृष्ठ फेला परेन"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "भिडियो रोक्नुहोस्"
msgid "People"
msgstr "व्यक्ति"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "@{0} द्वारा अनुसरण गरिएका व्यक्ति"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "@{0} लाई अनुसरण गर्ने व्यक्ति"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "वयस्कका लागि बनाइएका तस्वीरहरू।"
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr ""
@@ -8152,7 +8348,7 @@ msgstr ""
msgid "Pin to home"
msgstr "होममा पिन गर्नुहोस्"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "होममा पिन गर्नुहोस्"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "पिन गरियो"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr ""
@@ -8236,7 +8432,7 @@ msgstr "कृपया तपाईंको ह्यान्डल चयन
msgid "Please choose your password."
msgstr "कृपया तपाईंको पासवर्ड चयन गर्नुहोस्।"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "कृपया प्रमाणीकरण क्याप्चा पूरा गर्नुहोस्।"
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "कृपया यस एप पासवर्डको लागि अद्वितीय नाम प्रविष्ट गर्नुहोस् वा हाम्रो स्वचालित रूपमा उत्पन्न गरिएको नाम प्रयोग गर्नुहोस्।"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "कृपया तपाईंको इमेल प्रविष्
msgid "Please enter your invite code."
msgstr "कृपया तपाईंको आमन्त्रण कोड प्रविष्ट गर्नुहोस्।"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "कृपया व्याख्या गर्नुहोस् कि तपाईंलाई किन लाग्छ यो लेबल {0} द्वारा गलत रूपमा लागू गरियो।"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "कृपया व्याख्या गर्नुहोस् कि तपाईंलाई किन लाग्छ तपाईंको च्याटहरू गलत रूपमा निष्क्रिय गरिए।"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "राजनीति"
msgid "Porn"
msgstr "पोर्न"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "पोस्ट"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "सबै पोस्ट गर्नुहोस्"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "@{0} द्वारा पोस्ट"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "पोस्ट मेटियो"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "पोस्ट अपलोड गर्न असफल भयो। कृपया तपाईंको इन्टरनेट कनेक्शन जाँच गर्नुहोस् र पुनः प्रयास गर्नुहोस्।"
@@ -8454,7 +8650,7 @@ msgstr "तपाईं द्वारा पोस्ट लुकाइएक
msgid "Post interaction settings"
msgstr "पोस्ट अन्तरक्रिया सेटिङ्स"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8464,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "पोस्ट अनपिन गरियो"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "पोस्टहरूलाई तिनीहरूको पाठ,
msgid "Posts hidden"
msgstr "पोस्टहरू लुकाइयो।"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "पुनः जडानको प्रयास गर्न थि
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "पुनः प्रयास गर्न थिच्नुहोस्।"
@@ -8536,7 +8728,7 @@ msgstr "पुनः प्रयास गर्न थिच्नुहोस
msgid "Press to view followers of this account that you also follow"
msgstr "यस खाता का अनुयायीहरू जसलाई तपाईंले पनि पछ्याउनुभएको छ हेर्न थिच्नुहोस्।"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "गोपनीयता।"
msgid "Privacy and security"
msgstr "गोपनीयता र सुरक्षा"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "गोपनीयता र सुरक्षा"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "गोपनीयता नीति"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "भिडियो प्रशोधन हुँदैछ।"
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "प्रशोधन हुँदैछ।"
@@ -8602,8 +8793,8 @@ msgstr "प्रशोधन हुँदैछ।"
msgid "profile"
msgstr "प्रोफाइल"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "QR कोड डाउनलोड गरियो!"
msgid "QR code saved to your camera roll!"
msgstr "QR कोड तपाईंको क्यामेरा रोलमा सुरक्षित गरियो!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "उद्धरण पोस्टहरू अक्षम गरिए
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "उद्धरण।"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "उद्धरण पुनः जोड्नुहोस्"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr ""
msgid "Reconnect"
msgstr "पुनः जडान गर्नुहोस्"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "वार्तालाप पुनः लोड गर्नुहोस्"
@@ -8896,17 +9087,17 @@ msgstr "खाता हटाउनुहोस्"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "संलग्नक हटाउनुहोस्"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "अवतार हटाउनुहोस्"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "ब्यानर हटाउनुहोस्"
@@ -8914,8 +9105,9 @@ msgstr "ब्यानर हटाउनुहोस्"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "एम्बेड हटाउनुहोस्"
@@ -8933,8 +9125,8 @@ msgstr "फिड हटाउने?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "तस्बिर हटाउनुहोस्"
@@ -9009,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "लेखकद्वारा हटाइयो"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "तपाईँद्वारा हटाइयो"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "उत्तरहरू"
@@ -9104,14 +9295,14 @@ msgstr "उत्तरहरू निष्क्रिय गरियो"
msgid "Replies to this post are disabled."
msgstr "यो पोस्टका उत्तरहरू निष्क्रिय गरिएका छन्।"
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "उत्तर दिनुहोस्"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9125,10 +9316,6 @@ msgstr "थ्रेड लेखकद्वारा उत्तर लुक
msgid "Reply Hidden by You"
msgstr "तपाईँद्वारा उत्तर लुकाइएको"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "उत्तर सेटिङ्स थ्रेडका लेखकद्वारा चयन गरिन्छ"
@@ -9146,9 +9333,9 @@ msgstr "उत्तर दृश्यता अद्यावधिक गर
msgid "Reply was successfully hidden"
msgstr "उत्तर सफलतापूर्वक लुकाइएको"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "रिपोर्ट गर्नुहोस्"
@@ -9164,13 +9351,13 @@ msgstr "खाता रिपोर्ट गर्नुहोस्"
msgid "Report conversation"
msgstr "वार्ता रिपोर्ट गर्नुहोस्"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "रिपोर्ट संवाद"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "फिड रिपोर्ट गर्नुहोस्"
@@ -9179,7 +9366,7 @@ msgstr "फिड रिपोर्ट गर्नुहोस्"
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "सन्देश रिपोर्ट गर्नुहोस्"
@@ -9199,8 +9386,8 @@ msgstr "स्टार्टर प्याक रिपोर्ट गर्
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "यस फिडलाई रिपोर्ट गर्नुहोस्"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "यस सूचीलाई रिपोर्ट गर्नुहोस्"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "पुनःपोस्ट गर्नुहोस्"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "तपाईँद्वारा पुनःपोस्ट गरियो"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "यस पोस्टका पुनःपोस्टहरू"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "पोस्ट गर्नु अघि वैकल्पिक पाठ आवश्यक छ"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9328,7 +9534,11 @@ msgstr "यस प्रदायकका लागि आवश्यक छ"
msgid "Required in your region"
msgstr "तपाईँको क्षेत्रमा आवश्यक छ"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9393,15 +9603,16 @@ msgstr "अन्तिम कार्य पुन: प्रयास गर
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "अन्तिम कार्य पुन: प्रयास गर
msgid "Retry"
msgstr "पुन: प्रयास गर्नुहोस्"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9426,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr "अघिल्लो पृष्ठमा फर्कनुहोस्"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "गृहपृष्ठमा फर्कनुहोस्"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "अघिल्लो पृष्ठमा फर्कनुहोस्"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "परिवर्तनहरू सुरक्षित गर्नुहोस्"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "QR कोड सुरक्षित गर्नुहोस्"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "मेरो फिडहरूमा सुरक्षित गर्नुहोस्"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "सुरक्षित फिडहरू"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "तपाईंको फिडहरूमा सुरक्षित गरियो"
@@ -9551,8 +9764,8 @@ msgstr "तपाईंको फिडहरूमा सुरक्षित
msgid "Say hello!"
msgstr "नमस्ते भन्नुहोस्!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "माथि स्क्रोल गर्नुहोस्"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "खोज्नुहोस्"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9667,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "प्रोफाइलहरूको लागि खोज्नु
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "रंग चयन गर्नुहोस्।"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "GIF चयन गर्नुहोस्।"
msgid "Select GIF \"{0}\""
msgstr "GIF \"{0}\" चयन गर्नुहोस्।"
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "भाषा चयन गर्नुहोस्..."
msgid "Select languages"
msgstr "भाषाहरू चयन गर्नुहोस्।"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9904,11 +10117,11 @@ msgstr "तलका विकल्पहरूबाट आफ्नो रु
msgid "Select your preferred language for translations in your feed."
msgstr "आफ्नो फिडमा अनुवादका लागि मनपर्ने भाषा चयन गर्नुहोस्।"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "इमेल पठाउनुहोस्"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "प्रतिक्रिया पठाउनुहोस्"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "सन्देश पठाउनुहोस्"
@@ -9952,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr "पोष्ट पठाउनुहोस्..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9960,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "प्रत्यक्ष सन्देश मार्फत पठाउनुहोस्"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "पासवर्ड रीसेटको लागि इमेल सेट गर्दछ"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "सेटिङ्स"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "यौन क्रियाकलाप वा कामोत्ते
msgid "Sexually Suggestive"
msgstr "यौन रूपले प्रस्तावनात्मक"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr "QR कोड साझा गर्नुहोस्"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10151,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "साझा गरिएको प्राथमिकता परीक्षक"
@@ -10167,16 +10382,16 @@ msgstr "विकल्पात्मक पाठ देखाउनुहो
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "तथापि देखाउनुहोस्"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "चेतावनी देखाउनुहोस् र फीडबाट फिल्टर गर्नुहोस्"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr "चर्चामा सामेल हुन साइन इन गर्नुहोस् वा आफ्नो खाता सिर्जना गर्नुहोस्!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "सूचीबद्ध नभएको खातामा लगइन गर्नुहोस्।"
@@ -10337,6 +10558,10 @@ msgstr "सूचीबद्ध नभएको खातामा लगइन
msgid "Sign in to Bluesky or create a new account"
msgstr "ब्लूस्काईमा साइन इन गर्नुहोस् वा नयाँ खाता सिर्जना गर्नुहोस्"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "साइन आउट गर्नुहोस्"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "साइन आउट गर्नुहोस्"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "साइन आउट गर्नुहोस्?"
@@ -10391,7 +10616,7 @@ msgstr "छोड्नुहोस्"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "सानो"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "केहि गलत भयो"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "केहि गलत भयो!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr ""
@@ -10568,7 +10798,7 @@ msgstr "खेलकुद"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "नयाँ च्याट सुरु गर्नुहोस्"
@@ -10582,17 +10812,17 @@ msgstr ""
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "{displayName} सँग च्याट सुरु गर्नुहोस्"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "स्टार्टर प्याक"
@@ -10654,12 +10884,12 @@ msgstr "भण्डारण मेटिएको छ, अब तपाईं
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "स्टोरीबुक"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "पेश गर्नुहोस्"
@@ -10684,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "सदस्यता लिनुहोस्"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "सफलता!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "सहयोग"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "खाता स्विच गर्नुहोस्"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10828,7 +11062,7 @@ msgstr "केवल टैगहरू"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "हटाउनका लागि ट्याप गर्नुहोस्"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "नियमहरू"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "पाठ र टैगहरू"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "पाठ इनपुट क्षेत्र"
@@ -11049,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "गोपनीयता नीति <0/> मा सारिएको छ।"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "सर्भरलाई सम्पर्क गर्न समस्या आयो।"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "सर्भरलाई सम्पर्क गर्न समस्या आयो, कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।"
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "सूचनाहरू प्राप्त गर्न समस्या आयो। पुन: प्रयास गर्न यहाँ ट्याप गर्नुहोस्।"
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "पोस्टहरू प्राप्त गर्न समस्या आयो। पुन: प्रयास गर्न यहाँ ट्याप गर्नुहोस्।"
@@ -11161,7 +11420,7 @@ msgstr "तपाईंको सेवा जानकारी प्राप
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "यो फीड मेटाउन समस्या आयो। कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "यो अपील <0>{sourceName}0> मा पठाइनेछ।"
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "यो अपील ब्लूस्काईको मोडरेशन सेवामा पठाइनेछ।"
@@ -11263,7 +11522,7 @@ msgstr "यो अपील ब्लूस्काईको मोडरेश
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "यो सामग्री उपलब्ध छैन किनक
msgid "This content is not viewable without a Bluesky account."
msgstr "यो सामग्री बिना Bluesky खाता प्रयोग नगरी हेर्न सकिँदैन।"
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11318,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr "यो फिड अब अनलाइन छैन। हामी <0>
msgid "This handle is reserved. Please try a different one."
msgstr "यो ह्यान्डल आरक्षित छ। कृपया अर्को प्रयास गर्नुहोस्।"
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr ""
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "यो पोस्ट फिड र थ्रेडहरूबाट लुकेको हुनेछ। यसलाई उल्टाउन सकिँदैन।"
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "यस पोस्टको लेखकले उद्धरण पोस्टहरू निष्क्रिय गरेको छ।"
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "यो जवाफ तपाईंको थ्रेडको तल लुकेको सेक्सनमा क्रमबद्ध गरिनेछ र subsequent जवाफहरूको लागि - तपाईं र अरूसँग - अधिसूचनाहरू म्यूट गरिनेछ।"
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr "यस प्रयोगकर्तासँग कुनै फलोअर छैन।"
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "यस प्रयोगकर्ताले तपाईंलाई ब्लक गरेको छ। तपाईं तिनीहरूको सामग्री हेर्न सक्दैन।"
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "थ्रेड प्राथमिकताहरू"
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "थ्रेड प्राथमिकताहरू"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "इमेल 2FA विधि बन्द गर्नका लागि कृपया आफ्नो इमेल ठेगानामा पहुँच प्रमाणित गर्नुहोस्।"
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11646,12 +11927,12 @@ msgstr "शीर्ष"
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11763,11 +12044,15 @@ msgstr "तपाईंको सेवा सम्पर्क गर्न
msgid "Unable to delete"
msgstr "हटाउन असमर्थ"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr "खाता अनफोलो गर्नुहोस्"
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11918,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "वार्तालाप म्यूट हटाउनुहोस
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "अनपिन गर्नुहोस्"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "होमबाट अनपिन गर्नुहोस्"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "मोडरेशन सूची अनपिन गर्नुहोस्"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr ""
@@ -12030,11 +12315,11 @@ msgstr "यस लेबलरबाट सदस्यता समाप्त
msgid "Unsubscribed from list"
msgstr "सूचीबाट सदस्यता समाप्त गरिएको"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "सूचीहरूमा <0>{displayName}0> अपडेट गर्नुहोस्"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "{domain} मा अपडेट गर्नुहोस्"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "उत्तर दृश्यता अपडेट गर्न असफल"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "फोटो अपलोड गर्नुहोस्"
@@ -12098,39 +12395,40 @@ msgstr "फोटो अपलोड गर्नुहोस्"
msgid "Upload a text file to:"
msgstr "टेक्स्ट फाइल अपलोड गर्नुहोस्:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "क्यामेरा बाट अपलोड गर्नुहोस्"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "फाइल बाट अपलोड गर्नुहोस्"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "लाइब्रेरी बाट अपलोड गर्नुहोस्"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "तस्विरहरू अपलोड गर्दै..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "लिंक थम्बनेल अपलोड गर्दै..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "भिडियो अपलोड गर्दै..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "{0} द्वारा प्रयोगकर्ता सूची"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "<0>@{0}0> द्वारा फलो गरिएका प्रय
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "DNS रेकर्ड प्रमाणित गर्नुहोस्"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12349,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr "भिडियो"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "भिडियो प्रोसेस गर्न असफल"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12419,7 +12717,7 @@ msgstr "भिडियो फेला पारिएन।"
msgid "Video settings"
msgstr "भिडियो सेटिङ्गहरू"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "भिडियो अपलोड गरियो"
@@ -12432,18 +12730,18 @@ msgstr "भिडियो: {0}"
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "{0} को अवतार हेर्नुहोस्"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "{0} को प्रोफाइल हेर्नुहोस्"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "विवरण हेर्नुहोस्"
msgid "View full thread"
msgstr "पूरा थ्रेड हेर्नुहोस्"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "यी लेबलहरूको जानकारी हेर्नुहोस्"
@@ -12522,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "प्रोफाइल हेर्नुहोस्"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "अवतार हेर्नुहोस्"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "@{0} द्वारा प्रदान गरिएको लेब
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "यो फिड मन पराउने प्रयोगकर्ताहरू हेर्नुहोस्"
@@ -12596,8 +12902,8 @@ msgstr "तपाईंका म्युट गरिएको खाता
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12640,8 +12946,8 @@ msgstr "सामग्रीलाई चेतावनी दिनुहो
msgid "Warn content and filter from feeds"
msgstr "सामग्रीलाई चेतावनी दिनुहोस् र फीडहरूबाट फिल्टर गर्नुहोस्"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "हामी यो कुराकानी लोड गर्न असमर्थ भयौं।"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "हामी यो निर्धारण गर्न असमर्थ भयौं कि तपाईंलाई भिडियो अपलोड गर्न अनुमति छ कि छैन। कृपया पुन: प्रयास गर्नुहोस्।"
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "हामी नेटवर्क समस्या भोगिरहेका छौं, कृपया पुनः प्रयास गर्नुहोस्।"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "हामीलाई खेद छ! तपाईंले जवाफ दिइरहेको पोस्ट मेटाइ सकेको छ।"
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "हामीलाई खेद छ! हामी तपाईंले खोजेको पृष्ठ फेला पार्न सक्दैनौं।"
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "तपाईंको स्टार्टर प्याकलाई के भन्न चाहनुहुन्छ?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "के भइरहेको छ?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12878,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr "यस पोस्टसँग को को अन्तरक्रिया गर्न सक्छ?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "को को जवाफ दिन सक्छ?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "वोप्स!"
@@ -12939,7 +13249,7 @@ msgstr "यो स्टार्टर प्याक किन समीक
msgid "Why should this user be reviewed?"
msgstr "यो प्रयोगकर्ता किन समीक्षा गर्नुपर्छ?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "पोस्ट लेख्नुहोस्"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "तपाईंको जवाफ लेख्नुहोस्"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "सर्भरबाट गलत DID प्राप्त भयो। प्राप्त: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr ""
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "तपाईंलाई भिडियो अपलोड गर्न अनुमति छैन।"
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "तपाईंले जुन सेटिङ पनि छनोट गर्नुभएको भए पनि चलिरहेको वार्तालापलाई जारी राख्न सक्नुहुन्छ।"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "तपाईं अब नयाँ पासवर्डसँग साइन इन गर्न सक्नुहुन्छ।"
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "तपाईं आफ्नो खाता पुनः सक्र
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "तपाईंको कुनै पनि बचत गरिएक
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "तपाईंले भिडियो अपलोडको लागि अस्थायी रूपमा सीमा पार गर्नुभयो। कृपया पछि पुनः प्रयास गर्नुहोस्।"
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "तपाईंलाई कम्तिमा सात अन्य
msgid "You must grant access to your photo library to save a QR code"
msgstr "QR कोड बचत गर्नको लागि तपाईंलाई आफ्नो फोटो लाइब्रेरीमा पहुँच दिनु पर्छ।"
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "तपाईंलाई तपाईंका सबै खाता हरुबाट साइन आउट गरिनेछ।"
@@ -13390,7 +13710,7 @@ msgstr "तपाईं अब यस थ्रेडको लागि सू
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "तपाईंलाई एक इमेल प्राप्त हुनेछ जसमा \"रीसेट कोड\" हुनेछ। त्यो कोड यहाँ प्रविष्ट गर्नुहोस्, त्यसपछि तपाईंको नयाँ पासवर्ड प्रविष्ट गर्नुहोस्।"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "तपाईंले आफ्नो फीडको अन्त्यमा पुग्नुभयो! थप खाता फलो गर्नको लागि खोजी गर्नुहोस्।"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "तपाईंले भिडियो अपलोडको लागि आफ्नो दैनिक सीमा पुग्नुभयो (धेरै बाइट्स)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "तपाईंले भिडियो अपलोडको लागि आफ्नो दैनिक सीमा पुग्नुभयो (धेरै भिडियो)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "तपाईंको खाता अझै भिडियो अपलोड गर्नको लागि पर्याप्त पुरानो छैन। कृपया पछि पुनः प्रयास गर्नुहोस्।"
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "तपाईंको खाता रिपोजिटोरी, जसमा सबै सार्वजनिक डेटा रेकर्डहरू समावेश छन्, \"CAR\" फाइलको रूपमा डाउनलोड गर्न सकिन्छ। यस फाइलमा मिडिया एम्बेडहरू (जस्तै चित्र) वा तपाईंको निजी डेटा समावेश छैन, जसलाई अलग गरेर ल्याउन आवश्यक छ।"
@@ -13519,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr "तपाईंको जन्म मिति"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "तपाईंको च्याटहरू अक्षम गरिएको छ"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "तपाईंको ईमेल अमान्य देखिन्छ।"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13582,7 +13910,7 @@ msgstr "तपाईंको फलोइङ फीड खाली छ! के
msgid "Your full handle will be <0>@{0}0>"
msgstr "तपाईंको पूर्ण ह्याण्डल हुनेछ <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "तपाईंका म्यूट शब्दहरू"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13661,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/nl/messages.po b/src/locale/locales/nl/messages.po
index 9c77a25a43..0fb45b5c6c 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minuut} other {# minuten}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# maand} other {# maanden}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# seconde} other {# seconden}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# ongelezen item} other {# ongelezen items}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr "{0} van 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} heeft gereageerd met {1}"
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Avatar van {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# ongelezen item} other {# ongelezen items}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} heeft jou geverifieerd"
msgid "{following} following"
msgstr "{following} volgend"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "{handle} kan geen privébericht ontvangen"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# uur {minutesString}} other {# uur {minutesString}
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# uur} other {# uur}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# ongelezen item} other {# ongelezen items}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Een nieuwe vorm van verificatie"
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr "Accepteren"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Accepteren"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Chatverzoek accepteren"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Verzoek accepteren"
@@ -860,17 +935,26 @@ msgstr "Verzoek accepteren"
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Toegankelijkheid"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Toegankelijkheidsinstellingen"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Account negeren opgeheven"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Accounts met een blauw vinkje <0><1/>0> kunnen anderen verifiëren. Deze vertrouwde verifieerders worden geselecteerd door Bluesky."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Toevoegen"
@@ -999,8 +1079,8 @@ msgstr "Account toevoegen"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Optioneel alt-tekst toevoegen"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Nog een account toevoegen"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Nog een bericht toevoegen"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr "App-wachtwoord toevoegen"
msgid "Add App Password"
msgstr "App-wachtwoord toevoegen"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr "Emoji-reactie toevoegen"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Voeg meer informatie toe (optioneel)"
@@ -1080,8 +1160,8 @@ msgstr "Negeerwoord toevoegen met gekozen instellingen"
msgid "Add muted words and tags"
msgstr "Genegeerde woorden en tags toevoegen"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Aanvullende informatie (maximaal 300 tekens)"
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@voorbeeld.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Alle"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Geef toegang tot je privéberichten"
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Al aangemeld als @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Alt-tekst"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alt-tekst beschrijft afbeeldingen voor blinde en slechtziende gebruikers en biedt iedereen context."
@@ -1387,7 +1467,7 @@ msgstr "Er is een fout opgetreden"
msgid "An error occurred"
msgstr "Er is een fout opgetreden"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Er is een fout opgetreden tijdens het comprimeren van de video."
@@ -1432,11 +1512,11 @@ msgstr "Er is een fout opgetreden bij het opslaan van de QR-code!"
msgid "An error occurred while trying to follow all"
msgstr "Er is een fout opgetreden tijdens het proberen om allen te volgen"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Een probleem niet vermeld in deze opties"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Er is een probleem opgetreden bij het openen van de chat"
msgid "An issue occurred, please try again."
msgstr "Er is een probleem opgetreden. Probeer het opnieuw."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "App-wachtwoordnamen moeten minimaal 4 tekens lang zijn"
msgid "App passwords"
msgstr "App-wachtwoorden"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "App-wachtwoorden"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Bezwaar ingediend"
@@ -1632,14 +1716,14 @@ msgstr "Bezwaar maken tegen schorsing"
msgid "Appeal Suspension"
msgstr "Bezwaar maken tegen schorsing"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Bezwaar maken tegen deze beslissing"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Weet je zeker dat je het app-wachtwoord \"{0}\" wilt verwijderen?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
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: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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Weet je zeker dat je dit bericht wilt weggooien?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Video's en GIF's automatisch afspelen"
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr "Terug"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Terug naar chats"
@@ -1840,12 +1926,12 @@ msgstr "Je moet eerst je e-mailadres bevestigen voordat je dit chatverzoek kunt
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Je moet eerst je e-mailadres bevestigen voordat je een andere gebruiker een privébericht mag sturen."
@@ -1877,7 +1963,7 @@ msgstr "Verjaardag"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Account blokkeren"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "Account blokkeren?"
msgid "Block accounts"
msgstr "Accounts blokkeren"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Deze accounts blokkeren?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Gebruiker blokkeren"
@@ -1946,9 +2032,9 @@ msgstr "Gebruiker blokkeren"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Gebruiker blokkeren"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Geblokkeerd"
@@ -1964,13 +2050,13 @@ msgstr "Geblokkeerd"
msgid "Blocked accounts"
msgstr "Geblokkeerde accounts"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Geblokkeerde accounts"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Geblokkeerde accounts kunnen niet reageren op jouw gesprekken, je niet vermelden en niet op een andere manier met je communiceren."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky is leuker met vrienden!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky kiest een aantal aanbevolen accounts van personen in je netwerk.
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 "Bluesky toont je profiel en berichten niet aan afgemelde gebruikers. Andere apps honoreren dit verzoek mogelijk niet. Dit maakt je account niet privé."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky verifieert proactief bekende en authentieke accounts."
@@ -2137,23 +2223,30 @@ msgstr "Zakelijk"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Door {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Door <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Door een account aan te maken ga je akkoord met de <0>Servicevoorwaarden
msgid "By you"
msgstr "Door jou"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Camera"
@@ -2192,8 +2285,8 @@ msgstr "Camera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Camera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Camera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Annuleren"
@@ -2248,9 +2341,9 @@ msgstr "Heractivering annuleren en afmelden"
msgid "Cancel search"
msgstr "Zoeken annuleren"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Kan geen interactie hebben met een geblokkeerde gebruiker"
@@ -2264,7 +2357,7 @@ msgstr "Ondertiteling (.vtt)"
msgid "Captions & alt text"
msgstr "Ondertiteling en alt-tekst"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr "App-taal wijzigen"
msgid "Change Handle"
msgstr "Handle wijzigen"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Moderatieservice wijzigen"
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Reden van melding wijzigen"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Chat"
@@ -2361,6 +2454,13 @@ msgstr "Chat verwijderd"
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Chat genegeerd"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Chatverzoeken"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Chatinstellingen"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Chatinstellingen"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Chat niet meer genegeerd"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Chats"
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "Deze kleur kiezen als je avatar"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr "klik hier"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Klik hier om het verificatieproces opnieuw te starten."
@@ -2567,11 +2667,11 @@ msgstr "Klik hier om het verificatieproces opnieuw te starten."
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Klik hier om je e-mailadres te wijzigen"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Klik om mislukt privébericht opnieuw te proberen"
@@ -2594,28 +2694,30 @@ msgstr "Klik om mislukt privébericht opnieuw te proberen"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Klik om mislukt privébericht opnieuw te proberen"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Actief dialoogvenster sluiten"
msgid "Close alert"
msgstr "Waarschuwing sluiten"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Paneel onderaan sluiten"
@@ -2657,8 +2763,9 @@ msgstr "Paneel onderaan sluiten"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Dialoogvenster sluiten"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Afbeelding sluiten"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr "Menu sluiten"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Dit dialoogvenster sluiten"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Sluit waarschuwing voor bijwerken wachtwoord"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Strips"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Gemeenschapsrichtlijnen"
@@ -2740,12 +2855,12 @@ msgstr "Voltooi de uitdaging"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Nieuw bericht opstellen"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
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}}"
@@ -2753,11 +2868,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:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Video comprimeren..."
@@ -2780,7 +2895,7 @@ msgstr "Geconfigureerd in <0>moderatie-instellingen0> ."
msgid "Confirm"
msgstr "Bevestigen"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Inhoud & media"
msgid "Content and media"
msgstr "Inhoud en media"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Inhoud en media"
@@ -2889,7 +3004,7 @@ msgstr "Contextmenu-achtergrond, klik om het menu te sluiten."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "Verder lezen..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Doorgaan naar volgende stap"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Gesprek verwijderd"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Gesprek verwijderd"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Buildversie gekopieerd naar klembord"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "DID kopiëren"
msgid "Copy host"
msgstr "Host kopiëren"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Tekst privébericht kopiëren"
@@ -3052,7 +3175,7 @@ msgstr "TXT-recordwaarde kopiëren"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Auteursrechtbeleid"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Kan chat niet verlaten"
@@ -3094,6 +3217,10 @@ msgstr "Kan chat niet verlaten"
msgid "Could not load feed"
msgstr "Kan feed niet laden"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Aanmaken"
@@ -3159,7 +3286,7 @@ msgstr "Maak een QR-code voor een startpakket"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Maak een startpakket"
@@ -3174,13 +3301,14 @@ msgstr "Maak een startpakket voor mij"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Een account aanmaken"
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "In plaats daarvan een avatar maken"
@@ -3206,7 +3334,7 @@ msgstr "In plaats daarvan een avatar maken"
msgid "Create another"
msgstr "Nog een aanmaken"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Account aanmaken"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Melding maken voor {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "{0} gemaakt"
@@ -3341,7 +3470,7 @@ msgstr "Standaard"
msgid "Default icons"
msgstr "Standaardpictogrammen"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Chatdeclaratierecord verwijderen"
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Gesprek verwijderen"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Voor mij verwijderen"
@@ -3399,11 +3528,11 @@ msgstr "Voor mij verwijderen"
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Privébericht verwijderen"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Privébericht voor mij verwijderen"
@@ -3413,7 +3542,7 @@ msgstr "Mijn account verwijderen"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Bericht verwijderen"
@@ -3434,12 +3563,12 @@ msgstr "Deze lijst verwijderen?"
msgid "Delete this post?"
msgstr "Dit bericht verwijderen?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Verwijderd"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Verwijderd account"
@@ -3507,13 +3636,13 @@ msgstr "Dialoog: aanpassen wie op dit bericht mag reageren"
msgid "Dim"
msgstr "Dimmen"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3521,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3534,8 +3663,8 @@ msgstr "Uitschakelen e-mail 2FA"
msgid "Disable haptic feedback"
msgstr "Uitschakelen voelbare feedback"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Uitgeschakeld"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Weggooien"
msgid "Discard changes?"
msgstr "Wijzigingen weggooien?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Concept weggooien?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Bericht weggooien?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Ontdek nieuwe feeds"
msgid "Dismiss"
msgstr "Sluiten"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Fout negeren"
@@ -3673,7 +3802,7 @@ msgstr "Bevat geen bloot."
msgid "Domain verified!"
msgstr "Domein geverifieerd!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3681,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Gereed"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3741,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr "Bluesky downloaden"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "CAR-bestand downloaden"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "CAR-bestand downloaden"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Bewerken"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Avatar bewerken"
@@ -3847,14 +3978,14 @@ msgstr "Avatar bewerken"
msgid "Edit Feeds"
msgstr "Feeds bewerken"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Afbeelding bewerken"
@@ -3868,7 +3999,16 @@ msgstr "Interactie-instellingen bewerken"
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Mijn feeds bewerken"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Personen bewerken"
@@ -3925,7 +4060,7 @@ msgstr "Profiel bewerken"
msgid "Edit starter pack"
msgstr "Startpakket bewerken"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "Bewerk wie kan reageren"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Je startpakket bewerken"
@@ -3971,7 +4106,7 @@ msgstr "E-mailadres"
msgid "Email Resent"
msgstr "E-mail opnieuw verzonden"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -4006,8 +4141,8 @@ msgstr "Sluit dit bericht in op je website. Kopieer simpelweg het volgende fragm
msgid "Embedded video player"
msgstr "Geïntegreerde videospeler"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Inschakelen"
@@ -4025,7 +4160,7 @@ msgstr "Inhoud voor volwassenen inschakelen"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4038,13 +4173,12 @@ msgstr "Externe media inschakelen"
msgid "Enable media players for"
msgstr "Mediaspelers inschakelen voor"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr "Vul een wachtwoord in"
msgid "Enter a word or tag"
msgstr "Vul een woord of tag in"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4143,7 +4277,7 @@ msgstr "Opent volledig scherm"
msgid "Entertainment"
msgstr "Entertainment"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Fout"
@@ -4185,23 +4319,23 @@ msgstr "Iedereen kan reageren"
msgid "Everybody can reply to this post."
msgstr "Iedereen kan reageren op dit bericht."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Iedereen"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Iedereen"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Iedereen"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "Gebruikers uitsluiten die je volgt"
msgid "Exit fullscreen"
msgstr "Volledig scherm afsluiten"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Alt-tekst uitklappen"
@@ -4226,7 +4360,7 @@ msgstr "Alt-tekst uitklappen"
msgid "Expand list of users"
msgstr "Gebruikerslijst uitklappen"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Uitklappen of inklappen van het volledige bericht waar je op reageert"
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr "Klapt berichttekst uit of in"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Verwacht werd dat uri omgezet kon worden naar een record"
@@ -4277,9 +4411,9 @@ msgstr "Expliciete of mogelijk aanstootgevende media."
msgid "Explicit sexual images."
msgstr "Expliciete seksuele afbeeldingen."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Verkennen"
@@ -4289,11 +4423,8 @@ msgstr "Verkennen"
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,7 @@ msgstr "Externe media"
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 "Externe media kunnen websites toestaan om informatie over jou en jouw apparaat te verzamelen. Er wordt geen informatie verzonden of gevraagd totdat je drukt op de knop \"afspelen\"."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Externe mediavoorkeuren"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Accepteren van chat mislukt"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Toevoegen van emoji-reactie mislukt"
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "Kon de handle niet wijzigen. Probeer het nog eens."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "Kon app-wachtwoord niet aanmaken. Probeer het nog eens."
msgid "Failed to create conversation"
msgstr "Aanmaken van gesprek mislukt"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Verwijderen van chat mislukt"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Privébericht kan niet worden verwijderd"
@@ -4394,24 +4529,24 @@ msgstr "Bericht verwijderen mislukt, probeer het opnieuw"
msgid "Failed to delete starter pack"
msgstr "Het verwijderen van het startpakket is mislukt"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "Het laden van feedvoorkeuren is mislukt"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "Het laden van voorgestelde feeds is mislukt"
msgid "Failed to load suggested follows"
msgstr "Het is niet gelukt om een lijst te laden met volgsuggesties"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Vastzetten van bericht is mislukt"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr "Verwijderen van verificatie mislukt"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Het indienen van bezwaar is mislukt, probeer het opnieuw."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Het wisselen tussen wel/niet-negeren van het gesprek is mislukt, probeer het opnieuw"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4614,7 +4751,7 @@ msgstr "Het is niet gelukt om de feeds bij te werken"
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Het is niet gelukt om de instellingen bij te werken"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Feed"
@@ -4649,7 +4786,7 @@ msgstr "Feed"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Feed door {0}"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Feedmenu"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Feeds"
@@ -4739,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "Afronding"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Zoek accounts om te volgen"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr "Mensen zoeken om te volgen"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Zoek berichten, gebruikers en feeds op Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "Gevolgd door <0>{0}0> en <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Gevolgd door <0>{0}0>, <1>{1}1>, en {2, plural, one {# ander} other {# anderen}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Volgers van @{0} die je kent"
@@ -4995,19 +5136,16 @@ msgstr "Je volgt {handle}"
msgid "Following feed preferences"
msgstr "Volgfeedvoorkeuren"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Volgfeedvoorkeuren"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Volgt jou"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Volgt jou"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Lettertype"
@@ -5069,7 +5207,7 @@ msgstr "Vergeten?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr "Van <0/>"
msgid "Generate a starter pack"
msgstr "Een startpakket genereren"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "Hulp krijgen"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Aan de slag"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Geef je profiel een gezicht"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Terug"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Terug"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Terug naar de vorige stap"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Naar startpagina"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Naar startpagina"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Naar startpagina"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Naar gesprek met {0}"
@@ -5299,12 +5440,12 @@ msgstr "Naar volgende"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Naar profiel"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Handle te lang. Probeer een kortere."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Hashtag"
@@ -5458,8 +5615,8 @@ msgstr "Hashtag {tag}"
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Heb je een code? <0>Klik hier.0>"
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Hulp"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Laat mensen weten dat je geen bot bent door een foto te uploaden of een avatar te maken."
@@ -5652,18 +5809,18 @@ msgstr "Hmm, het lijkt erop dat we problemen hebben met het laden van deze gegev
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmm, we kunnen die moderatieservice niet laden."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Wacht even! We geven geleidelijk toegang tot video en je staat nog steeds in de rij. Kom snel terug!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Startpagina"
@@ -5721,7 +5878,7 @@ msgstr "Ik begrijp het"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
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"
@@ -5757,7 +5914,7 @@ msgstr "Als je deze lijst verwijdert kun je deze niet meer herstellen."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Als je een eigen domein hebt, kun je dat als handle gebruiken. Zo kun je je identiteit zelf verifiëren. <0>Klik hier voor meer informatie.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "<0>Klik hier0> als je je e-mailadres wilt wijzigen."
@@ -5765,7 +5922,7 @@ msgstr "<0>Klik hier0> als je je e-mailadres wilt wijzigen."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Als je dit bericht verwijdert kun je het niet meer herstellen."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Als je je e-mailadres wijzigt, wordt 2FA via e-mail uitgeschakeld."
@@ -5773,7 +5930,6 @@ msgstr "Als je je e-mailadres wijzigt, wordt 2FA via e-mail uitgeschakeld."
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Als je jouw wachtwoord wilt wijzigen sturen we je een code om te verifiëren dat dit jouw account is."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr "Als je een ontwikkelaar bent, kun je je eigen server hosten."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Afbeelding"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Afbeeldingencache gewist, {0} vrijgemaakt"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Ongeldige 2FA-bevestigingscode."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Ongeldige handle. Probeer een andere."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Ongeldige verificatiecode"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Jij bent nu nog de enige! Voeg meer personen toe aan je startpakket door hierboven te zoeken."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "Taak-ID: {0}"
@@ -6083,6 +6257,11 @@ msgstr "Taak-ID: {0}"
msgid "Jobs"
msgstr "Vacatures"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Vacatures"
msgid "Join Bluesky"
msgstr "Lid worden van Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Aan het gesprek deelnemen"
msgid "Journalism"
msgstr "Journalistiek"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "Labels op je account"
msgid "Labels on your content"
msgstr "Labels op je inhoud"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Taalinstellingen"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Nieuwste"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Leer meer over deze waarschuwing"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Leer meer over wat openbaar is op Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "Leer meer."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Verlaten"
@@ -6276,7 +6464,7 @@ msgstr "Chat verlaten"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Gesprek verlaten"
@@ -6284,13 +6472,13 @@ msgstr "Gesprek verlaten"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Gesprek verlaten"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Licht"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Leuk ({0, plural, one {# vind-ik-leuk} other {# vind-ik-leuks}})"
@@ -6346,11 +6534,7 @@ msgstr "Vind 10 berichten leuk"
msgid "Like 10 posts to train the Discover feed"
msgstr "Vind 10 berichten leuk om de Ontdekken-feed te trainen"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Vind deze feed leuk"
@@ -6358,8 +6542,8 @@ msgstr "Vind deze feed leuk"
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Leuk gevonden door"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Leuk gevonden door {0, plural, one {# gebruiker} other {# gebruikers}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Leuk gevonden door {likeCount, plural, one {# gebruiker} other {# gebruikers}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Vind-ik-leuks"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Vind-ik-leuks op dit bericht"
@@ -6409,11 +6589,11 @@ msgstr "Vind-ik-leuks op dit bericht"
msgid "Linear"
msgstr "Lineair"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Lijst"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Lijst niet-genegeerd"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Lijsten"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Laden..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Logboek"
@@ -6662,7 +6842,7 @@ msgstr "Het lijkt erop dat je een feed mist die je volgt.<0>Klik hier om er een
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr "Beheer je genegeerde woorden en tags"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
@@ -6698,13 +6877,12 @@ msgstr ""
msgid "Mark as read"
msgstr "Markeren als gelezen"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Media die voor bepaalde doelgroepen aanstootgevend of ongepast kunnen zijn."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "vermelde gebruikers"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Vermeldingen"
@@ -6775,22 +6949,22 @@ msgstr "Privébericht verzenden naar {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Privébericht verwijderd"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Privébericht verwijderd"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6813,19 +6987,19 @@ msgstr "Privébericht is te lang"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Berichtopties"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Privéberichten"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderatie"
@@ -6894,7 +7064,7 @@ msgstr "Moderatielijst bijgewerkt"
msgid "Moderation lists"
msgstr "Moderatielijsten"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Moderatielijsten"
@@ -6903,7 +7073,7 @@ msgstr "Moderatielijsten"
msgid "moderation settings"
msgstr "moderatie-instellingen"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Moderatietoestanden"
@@ -6949,7 +7119,7 @@ msgstr "Films"
msgid "Music"
msgstr "Muziek"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Negeren"
@@ -6994,7 +7164,7 @@ msgstr "Negeerlijst"
msgid "Mute these accounts?"
msgstr "Deze accounts negeren?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Gesprek negeren"
msgid "Mute words & tags"
msgstr "Woorden en tags negeren"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Genegeerde accounts"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Genegeerde accounts"
@@ -7108,8 +7278,8 @@ msgstr "Navigeert naar het volgende scherm"
msgid "Navigates to your profile"
msgstr "Navigeert naar je profiel"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Nieuwe chat"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7174,29 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Nieuw bericht"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Nieuw bericht"
@@ -7262,8 +7428,8 @@ msgstr "Nieuws"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "Je volgt {0} niet meer"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Nog geen privéberichten"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "Nog geen meldingen!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Geen resultaat"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Geen resultaten"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Niet-seksuele naaktbeelden"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Niet gevonden"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Meldinginstellingen"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Meldingsgeluiden"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Meldingen"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "nu"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Uit"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "op<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Introductie opnieuw tonen"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Alt-tekst ontbreekt bij een of meer video's."
@@ -7685,6 +7835,26 @@ msgstr "Alt-tekst ontbreekt bij een of meer video's."
msgid "Only {0} can reply."
msgstr "Alleen {0} kan reageren."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr "Alleen afbeeldingsbestanden worden ondersteund"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Alleen WebVTT (.vtt)-bestanden worden ondersteund"
@@ -7712,7 +7892,7 @@ msgstr "Oeps, er is iets misgegaan!"
msgid "Oops!"
msgstr "Oeps!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Avatar-maker openen"
@@ -7720,12 +7900,17 @@ msgstr "Avatar-maker openen"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Gespreksopties openen"
@@ -7739,16 +7924,16 @@ msgstr "Menu openen"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Emoji-kiezer openen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Menu Feedopties openen"
@@ -7760,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Link naar {niceUrl} openen"
@@ -7790,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr "Menu met berichtopties openen"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr "Verhalenboekpagina openen"
msgid "Open system log"
msgstr "Systeemlogboek openen"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Opent aanvullende details voor een debug-item"
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Opent camera op apparaat"
@@ -7858,22 +8051,24 @@ msgstr "Opent composer"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Opent proces om een nieuw Bluesky-account aan te maken"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
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"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Opent dit profiel"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Ons moderatieteam heeft je melding ontvangen."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Onze moderators hebben de meldingen bekeken en besloten je toegang tot chats op Bluesky uit te schakelen."
@@ -8010,16 +8205,17 @@ msgstr "Onze moderators hebben de meldingen bekeken en besloten je toegang tot c
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Pagina niet gevonden"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Pagina niet gevonden"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Video pauzeren"
msgid "People"
msgstr "Personen"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Personen gevolgd door @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Personen die @{0} volgen"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Afbeeldingen bedoeld voor volwassenen."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr ""
@@ -8152,7 +8348,7 @@ msgstr ""
msgid "Pin to home"
msgstr "Vastzetten op startpagina"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Vastzetten op startpagina"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Vastgezet"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} vastgemaakt aan startpagina"
@@ -8236,7 +8432,7 @@ msgstr "Je handle kiezen."
msgid "Please choose your password."
msgstr "Kies je wachtwoord."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "Vul de verificatie-captcha in."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Voer een unieke naam in voor dit app-wachtwoord of gebruik ons willekeurig gegenereerde wachtwoord."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "Vul je e-mailadres in."
msgid "Please enter your invite code."
msgstr "Vul je uitnodigingscode in."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Leg uit waarom je denkt dat dit label onjuist is toegepast door {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Leg uit waarom je denkt dat je chats ten onrechte zijn uitgeschakeld"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "Politiek"
msgid "Porn"
msgstr "Porno"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Plaatsen"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Alles plaatsen"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Bericht door @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Bericht verwijderd"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Bericht kan niet worden geüpload. Controleer je internetverbinding en probeer het opnieuw."
@@ -8454,7 +8650,7 @@ msgstr "Bericht verborgen door jou"
msgid "Post interaction settings"
msgstr "Instellingen voor berichtinteractie"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8464,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Bericht losgemaakt"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Berichten kunnen worden genegeerd op basis van tekst, tags of beide. We
msgid "Posts hidden"
msgstr "Berichten verborgen"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "Druk om opnieuw verbinding te maken"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Druk om opnieuw te proberen"
@@ -8536,7 +8728,7 @@ msgstr "Druk om opnieuw te proberen"
msgid "Press to view followers of this account that you also follow"
msgstr "Druk om de volgers van dit account te bekijken die je ook volgt"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr ""
msgid "Privacy and security"
msgstr "Privacy en beveiliging"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privacy en beveiliging"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Privacybeleid"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Video verwerken..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Verwerken..."
@@ -8602,8 +8793,8 @@ msgstr "Verwerken..."
msgid "profile"
msgstr "profiel"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "QR-code is gedownload!"
msgid "QR code saved to your camera roll!"
msgstr "QR-code opgeslagen in je camerarol!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Citaatberichten uitgeschakeld"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Citaten"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Citaat opnieuw toevoegen"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr ""
msgid "Reconnect"
msgstr "Opnieuw verbinden"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Gesprekken opnieuw laden"
@@ -8896,17 +9087,17 @@ msgstr "Account verwijderen"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Bijlage verwijderen"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Avatar verwijderen"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Banner verwijderen"
@@ -8914,8 +9105,9 @@ msgstr "Banner verwijderen"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Insluiting verwijderen"
@@ -8933,8 +9125,8 @@ msgstr "Feed verwijderen?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Afbeelding verwijderen"
@@ -9009,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Verwijderd door auteur"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Verwijderd door je"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Antwoorden"
@@ -9104,14 +9295,14 @@ msgstr "Antwoorden uitgeschakeld"
msgid "Replies to this post are disabled."
msgstr "Antwoorden op dit bericht zijn uitgeschakeld."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Reageren"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9125,10 +9316,6 @@ msgstr "Reactie verborgen door auteur van gesprek"
msgid "Reply Hidden by You"
msgstr "Reactie verborgen door jou"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Reactie-instellingen worden gekozen door de auteur van het gesprek"
@@ -9146,9 +9333,9 @@ msgstr "Zichtbaarheid van reactie bijgewerkt"
msgid "Reply was successfully hidden"
msgstr "Reactie is succesvol verborgen"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Melden"
@@ -9164,13 +9351,13 @@ msgstr "Account melden"
msgid "Report conversation"
msgstr "Gesprek melden"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Dialoogvenster Melden"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Feed melden"
@@ -9179,7 +9366,7 @@ msgstr "Feed melden"
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Privébericht melden"
@@ -9199,8 +9386,8 @@ msgstr "Startpakket melden"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Deze feed melden"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Deze lijst melden"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Herplaatsen"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Herplaatst door jou"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "Herplaatsingen van dit bericht"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Alt-tekst vereisen voor het plaatsen"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9328,7 +9534,11 @@ msgstr "Vereist voor deze provider"
msgid "Required in your region"
msgstr "Vereist in je regio"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9393,15 +9603,16 @@ msgstr "Probeert de laatste mislukte actie opnieuw"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Probeert de laatste mislukte actie opnieuw"
msgid "Retry"
msgstr "Opnieuw"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9426,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr "Terug naar vorige pagina"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Terug naar de startpagina"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Terug naar de vorige pagina"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Wijzigingen opslaan"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "QR-code opslaan"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "In mijn feeds opslaan"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "Opgeslagen feeds"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Opgeslagen in je feeds"
@@ -9551,8 +9764,8 @@ msgstr "Opgeslagen in je feeds"
msgid "Say hello!"
msgstr "Zeg hallo!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "Naar boven scrollen"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Zoeken"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9667,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Profielen zoeken"
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "Selecteer een kleur"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "GIF selecteren"
msgid "Select GIF \"{0}\""
msgstr "GIF \"{0}\" selecteren"
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Selecteer taal..."
msgid "Select languages"
msgstr "Selecteer talen"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9904,11 +10117,11 @@ msgstr "Selecteer je interesses uit de onderstaande opties"
msgid "Select your preferred language for translations in your feed."
msgstr "Selecteer de taal waarin je de vertalingen in je feed wilt weergeven."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "E-mail verzenden"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Feedback verzenden"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Privébericht verzenden"
@@ -9952,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr "Bericht verzenden naar..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9960,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Verzenden als privébericht"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Stelt e-mail in voor het opnieuw instellen van wachtwoorden"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Instellingen"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "Seksuele activiteit of erotisch bloot."
msgid "Sexually Suggestive"
msgstr "Seksueel suggestief"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr "at://-URI van bericht delen"
msgid "Share QR code"
msgstr "QR-code delen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10151,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Gedeelde voorkeuren-tester"
@@ -10167,16 +10382,16 @@ msgstr "Toon alt-tekst"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Toch laten zien"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Waarschuwing en filter uit feeds tonen"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr "Meld je aan of registreer een account aan om deel te nemen aan het gesprek!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr ""
@@ -10337,6 +10558,10 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Afmelden"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr ""
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Afmelden?"
@@ -10391,7 +10616,7 @@ msgstr "Overslaan"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Kleiner"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Er is iets misgegaan"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Er is iets fout gegaan!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr ""
@@ -10568,7 +10798,7 @@ msgstr "Sport"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Een nieuwe chat starten"
@@ -10582,17 +10812,17 @@ msgstr ""
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Chat starten met {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Startpakket"
@@ -10654,12 +10884,12 @@ msgstr "Opslag gewist, je moet de app nu opnieuw opstarten."
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Verhalenboek"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Verzenden"
@@ -10684,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Abonneren"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Gelukt!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Ondersteuning"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Van account wisselen"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10828,7 +11062,7 @@ msgstr "Alleen tags"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Tik om te sluiten"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Voorwaarden"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Tekst en tags"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Tekstinvoerveld"
@@ -11049,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "Het bericht waarop je antwoordt, werd door de auteur gemarkeerd als geschreven in het {suggestedLanguageName}. Wil je antwoorden in het <0>{suggestedLanguageName}0>?"
@@ -11057,9 +11314,9 @@ msgstr "Het bericht waarop je antwoordt, werd door de auteur gemarkeerd als gesc
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Het privacybeleid is verplaatst naar <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "Er is een probleem opgetreden bij het verbinden met de server"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Er is een probleem opgetreden bij het verbinden met de server. Controleer je internetverbinding en probeer het opnieuw."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Er is een probleem opgetreden bij het ophalen van meldingen. Tik hier om het opnieuw te proberen."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Er is een probleem opgetreden bij het ophalen van berichten. Tik hier om het opnieuw te proberen."
@@ -11161,7 +11420,7 @@ msgstr "Er is een probleem opgetreden bij het ophalen van uw servicegegevens"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Er is een probleem opgetreden bij het verwijderen van deze feed. Controleer je internetverbinding en probeer het opnieuw."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Dit bezwaar wordt verzonden naar <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Dit bezwaar wordt doorgestuurd naar de moderatieservice van Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Dit bezwaar wordt doorgestuurd naar de moderatieservice van Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Deze inhoud is niet beschikbaar omdat een van de betrokken gebruikers de
msgid "This content is not viewable without a Bluesky account."
msgstr "Deze inhoud is niet zichtbaar zonder een Bluesky-account."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11318,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr "Deze feed is niet langer online. We tonen <0>Ontdekken0> in plaats van
msgid "This handle is reserved. Please try a different one."
msgstr "Dit handle is gereserveerd. Probeer een ander."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr ""
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "De auteur van dit bericht heeft het plaatsen van citaten uitgeschakeld."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Deze reactie wordt gesorteerd in een verborgen sectie onderaan het gesprek en negeert meldingen voor volgende reacties - zowel voor jou als voor anderen."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr "Deze gebruiker heeft geen volgers."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Deze gebruiker heeft je geblokkeerd. Je kunt de inhoud niet bekijken."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Gespreksvoorkeuren"
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Gespreksvoorkeuren"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Je moet je toegang tot het e-mailadres verifiëren om de 2FA-methode voor e-mail uit te schakelen."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11646,12 +11927,12 @@ msgstr "Populair"
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11763,11 +12044,15 @@ msgstr "Kan geen contact maken met je service. Controleer je internetverbinding.
msgid "Unable to delete"
msgstr "Kan niet verwijderen"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr "Account ontvolgen"
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11918,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Gesprek niet meer negeren"
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Losmaken"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Losmaken van startpagina"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Moderatielijst losmaken"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr ""
@@ -12030,11 +12315,11 @@ msgstr "Afmelden voor deze labeler"
msgid "Unsubscribed from list"
msgstr "Uitgeschreven voor lijst"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "<0>{displayName}0> bijwerken in lijsten"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "Bijwerken naar {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Bijwerken van zichtbaarheid van reactie is mislukt"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "In plaats daarvan een foto uploaden"
@@ -12098,39 +12395,40 @@ msgstr "In plaats daarvan een foto uploaden"
msgid "Upload a text file to:"
msgstr "Upload een tekstbestand naar:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Uploaden vanaf camera"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Uploaden vanuit bestanden"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Uploaden vanuit bibliotheek"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Afbeeldingen uploaden..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Linkminiatuur uploaden..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Video uploaden..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Gebruikerslijst door {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "gebruikers gevolgd door <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "DNS-record verifiëren"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12349,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr ""
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Video kan niet worden verwerkt"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12419,7 +12717,7 @@ msgstr "Video niet gevonden."
msgid "Video settings"
msgstr "Video-instellingen"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Video geüpload"
@@ -12432,18 +12730,18 @@ msgstr ""
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Avatar van {0} bekijken"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Profiel van {0} bekijken"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Details bekijken"
msgid "View full thread"
msgstr "Volledig gesprek bekijken"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Informatie over deze labels bekijken"
@@ -12522,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "Profiel bekijken"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Bekijk de avatar"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "De labelservice van @{0} bekijken"
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Bekijk gebruikers die deze feed leuk vinden"
@@ -12596,8 +12902,8 @@ msgstr "Je genegeerde accounts bekijken"
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12640,8 +12946,8 @@ msgstr "Waarschuwen over inhoud"
msgid "Warn content and filter from feeds"
msgstr "Waarschuwen over inhoud en filteren uit feeds"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "We kunnen dit gesprek niet laden"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "We hebben niet kunnen bepalen of je video's mag uploaden. Probeer het opnieuw."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "Er zijn netwerkproblemen, probeer het opnieuw."
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Het spijt ons! Het bericht waarop je reageert is verwijderd."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Hoe wil je jouw startpakket noemen?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Hoe gaat het?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12878,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr "Wie kan reageren op dit bericht?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Wie kan reageren"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Oeps!"
@@ -12939,7 +13249,7 @@ msgstr "Waarom moet dit startpakket worden beoordeeld?"
msgid "Why should this user be reviewed?"
msgstr "Waarom moet deze gebruiker worden beoordeeld?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Bericht schrijven"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Schrijf je reactie"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Verkeerde DID teruggestuurd door server. Ontvangen: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr ""
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Het is niet toegestaan om video's te uploaden."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Je kunt lopende gesprekken voortzetten, ongeacht welke instelling je kiest."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "Je kunt je account opnieuw activeren om door te kunnen gaan met aanmelde
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "Je hebt geen opgeslagen feeds."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "Je moet ten minste 7 andere personen volgen om een startpakket te genere
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Je wordt afgemeld bij al je accounts."
@@ -13390,7 +13710,7 @@ msgstr "Je ontvangt nu meldingen voor dit gesprek"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Je ontvangt een e-mail met een 'resetcode'. Vul hier die code in en vul vervolgens je nieuwe wachtwoord in."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Je hebt het einde van je feed bereikt! Zoek nog meer accounts om te volgen."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Je hebt je dagelijkse limiet voor video-uploads bereikt (te veel bytes)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Je account is nog niet oud genoeg om video's te uploaden. Probeer het later nog eens."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Je accountrepository, die alle openbare gegevensrecords bevat, kan worden gedownload als een \"CAR\"-bestand. Dit bestand bevat geen media-insluitingen zoals afbeeldingen, en geen privégegevens. Die moeten afzonderlijk worden opgehaald."
@@ -13519,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr "Je geboortedatum"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Je chats zijn uitgeschakeld"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "Je e-mailadres lijkt ongeldig te zijn."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13582,7 +13910,7 @@ msgstr "Je volgende feed is leeg! Volg meer gebruikers om te zien wat er gebeurt
msgid "Your full handle will be <0>@{0}0>"
msgstr "Je volledige handle wordt <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "Je genegeerde woorden"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13661,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/pl/messages.po b/src/locale/locales/pl/messages.po
index 5d99d5ad1b..3cb4ed04a6 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\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"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minuta} few {# minuty} other {# minut}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# miesiąc} few {# miesiące} other {# miesięcy}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# sekundę} few {# sekundy} other {# sekund}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Zdjęcie profilowe {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0} min."
msgid "{0}s"
msgstr "{0} sek."
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr "{following} obserwowanych"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "Nie możesz wysłać wiadomości do {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -860,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Ułatwienia dostępu"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Ustawienia ułatwień dostępu"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Cofnięto wyciszenie konta"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Dodaj"
@@ -999,8 +1079,8 @@ msgstr "Dodaj konto"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Dodaj tekst alternatywny (opcjonalne)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Dodaj inne konto"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Dodaj inny wpis"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr "Dodaj hasło aplikacji"
msgid "Add App Password"
msgstr "Dodaj hasło aplikacji"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr ""
@@ -1080,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "Dodaj wyciszone słowa i tagi"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Wszystkie"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Zezwalaj na dostęp do wiadomości bezpośrednich"
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Już zalogowano jako @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Tekst alternatywny"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Tekst alternatywny opisuje zdjęcia dla użytkowników niewidomych i niedowidzących oraz pomaga określić kontekst."
@@ -1387,7 +1467,7 @@ msgstr "Wystąpił błąd"
msgid "An error occurred"
msgstr "Wystąpił błąd"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Wystąpił błąd podczas kompresowania wideo."
@@ -1432,11 +1512,11 @@ msgstr "Wystąpił błąd podczas zapisywania kodu QR!"
msgid "An error occurred while trying to follow all"
msgstr "Wystąpił błąd podczas próby zaobserwowania wszystkich"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Inny problem"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Wystąpił błąd podczas otwierania czatu"
msgid "An issue occurred, please try again."
msgstr "Wystąpił błąd, spróbuj ponownie."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr "Każdy może wchodzić w interakcje"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Nazwy haseł aplikacji muszą składać się z co najmniej 4 znaków"
msgid "App passwords"
msgstr "Hasła aplikacji"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Hasła aplikacji"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Odwołanie zostało złożone"
@@ -1632,14 +1716,14 @@ msgstr "Zawieszenie odwołania"
msgid "Appeal Suspension"
msgstr "Zawieszenie odwołania"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Odwołaj się od tej decyzji"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Czy na pewno chcesz usunąć hasło aplikacji \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Czy na pewno chcesz odrzucić ten wpis?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Autoodtwarzanie filmów i GIF-ów"
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr "Powrót"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1840,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1877,7 +1963,7 @@ msgstr "Data urodzenia"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Blokuj konto"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "Zablokować konto?"
msgid "Block accounts"
msgstr "Blokuj konta"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Zablokować te konta?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Zablokuj osobę"
@@ -1946,9 +2032,9 @@ msgstr "Zablokuj osobę"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Zablokuj osobę"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Zablokowane"
@@ -1964,13 +2050,13 @@ msgstr "Zablokowane"
msgid "Blocked accounts"
msgstr "Zablokowane konta"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Zablokowane konta"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Zablokowane konta nie mogą komentować twoich wpisów, wzmiankować cię ani w inny sposób wchodzić z tobą w interakcje."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky jest lepszy ze znajomymi!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky wybierze zestaw polecanych kont spośród osób w Twojej sieci."
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 "Bluesky nie pokaże twojego profilu i wpisów niezalogowanym użytkownikom. Inne aplikacje mogą nie respektować tej prośby. Nie spowoduje to, że twoje konto stanie się prywatne."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2137,23 +2223,30 @@ msgstr "Biznes"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Od {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Od <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Tworząc konto, akceptujesz <0>Regulamin0>."
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Aparat"
@@ -2192,8 +2285,8 @@ msgstr "Aparat"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Aparat"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Aparat"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Anuluj"
@@ -2248,9 +2341,9 @@ msgstr "Anuluj reaktywację i wyloguj się"
msgid "Cancel search"
msgstr "Anuluj wyszukiwanie"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Nie można wchodzić w interakcje z zablokowaną osobą"
@@ -2264,7 +2357,7 @@ msgstr "Napisy (.vtt)"
msgid "Captions & alt text"
msgstr "Napisy i tekst alternatywny"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr "Zmień nazwę"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Czat"
@@ -2361,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Czat został wyciszony"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Ustawienia czatu"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Ustawienia czatu"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Cofnięto wyciszenie czatu"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "Wybierz ten kolor jako swoje zdjęcie profilowe"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr "kliknij tutaj"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2567,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Kliknij, aby spróbować wysłać wiadomość ponownie"
@@ -2594,28 +2694,30 @@ msgstr "Kliknij, aby spróbować wysłać wiadomość ponownie"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Kliknij, aby spróbować wysłać wiadomość ponownie"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Zamknij aktywne okno"
msgid "Close alert"
msgstr "Zamknij ostrzeżenie"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Zamknij dolną szufladę"
@@ -2657,8 +2763,9 @@ msgstr "Zamknij dolną szufladę"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Zamknij to okno"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Zamknij zdjęcie"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Zamknij to okno"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Zamyka ostrzeżenie o aktualizacji hasła"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Komiksy"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Wytyczne dla społeczności"
@@ -2740,12 +2855,12 @@ msgstr "Ukończ wyzwanie"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Utwórz nowy wpis"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2753,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr "Skomentuj"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Kompresowanie wideo..."
@@ -2780,7 +2895,7 @@ msgstr "Skonfigurowane w <0>ustawieniach moderacji0>."
msgid "Confirm"
msgstr "Potwierdź"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Treści i multimedia"
msgid "Content and media"
msgstr "Treści i multimedia"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Treści i multimedia"
@@ -2889,7 +3004,7 @@ msgstr "Kliknij, aby zamknąć menu kontekstowe."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "Kontynuuj wątek..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Przejdź do następnego kroku"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Rozmowa została usunięta"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Rozmowa została usunięta"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Numer wersji został skopiowany do schowka"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Kopiuj DID"
msgid "Copy host"
msgstr "Kopiuj hosta"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Kopiuj tekst wiadomości"
@@ -3052,7 +3175,7 @@ msgstr "Kopiuj rekord TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Polityka praw autorskich"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Nie udało się opuścić czatu"
@@ -3094,6 +3217,10 @@ msgstr "Nie udało się opuścić czatu"
msgid "Could not load feed"
msgstr "Nie udało się wczytać kanału"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Utwórz"
@@ -3159,7 +3286,7 @@ msgstr "Utwórz kod QR dla pakietu startowego"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Utwórz pakiet startowy"
@@ -3174,13 +3301,14 @@ msgstr "Utwórz dla mnie pakiet startowy"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Utwórz konto"
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Zamiast tego utwórz zdjęcie profilowe"
@@ -3206,7 +3334,7 @@ msgstr "Zamiast tego utwórz zdjęcie profilowe"
msgid "Create another"
msgstr "Utwórz inne"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Utwórz nowe konto"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Zgłoś {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Utworzono {0}"
@@ -3341,7 +3470,7 @@ msgstr "Domyślny"
msgid "Default icons"
msgstr "Domyślne ikony"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Usuń rekord deklaracji czatu"
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Usuń rozmowę"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Usuń dla mnie"
@@ -3399,11 +3528,11 @@ msgstr "Usuń dla mnie"
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Usuń wiadomość"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Usuń wiadomość dla mnie"
@@ -3413,7 +3542,7 @@ msgstr "Usuń moje konto"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Usuń wpis"
@@ -3434,12 +3563,12 @@ msgstr "Usunąć tę listę?"
msgid "Delete this post?"
msgstr "Usunąć ten wpis?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Usunięto"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Usunięto konto"
@@ -3507,13 +3636,13 @@ msgstr "Okno dialogowe: dostosuj, kto może wchodzić w interakcje z tym wpisem"
msgid "Dim"
msgstr "Przyciemniony"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3521,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3534,8 +3663,8 @@ msgstr "Wyłącz uwierzytelnianie dwuskładnikowe przez email"
msgid "Disable haptic feedback"
msgstr "Wyłącz haptykę"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Wyłączono"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Odrzuć"
msgid "Discard changes?"
msgstr "Odrzucić zmiany?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Odrzucić szkic?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Odrzucić wpis?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Odkryj nowe kanały"
msgid "Dismiss"
msgstr "Pomiń"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Pomiń błąd"
@@ -3673,7 +3802,7 @@ msgstr "Nie zawiera nagości."
msgid "Domain verified!"
msgstr "Domena zweryfikowana!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3681,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Gotowe"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3741,15 +3873,6 @@ msgstr "Kliknij dwukrotnie, aby polubić"
msgid "Download Bluesky"
msgstr "Pobierz Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Pobierz plik CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Pobierz plik CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Edytuj"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Edytuj zdjęcie profilowe"
@@ -3847,14 +3978,14 @@ msgstr "Edytuj zdjęcie profilowe"
msgid "Edit Feeds"
msgstr "Edytuj kanały"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Edytuj obrazek"
@@ -3868,7 +3999,16 @@ msgstr "Edytuj ustawienia interakcji"
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Edytuj moje kanały"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Edytuj osoby"
@@ -3925,7 +4060,7 @@ msgstr "Edytuj profil"
msgid "Edit starter pack"
msgstr "Edytuj pakiet startowy"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "Wybierz, kto może komentować"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Edytuj swój pakiet startowy"
@@ -3971,7 +4106,7 @@ msgstr "Adres email"
msgid "Email Resent"
msgstr "Email został wysłany ponownie"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -4006,8 +4141,8 @@ msgstr "Osadź ten wpis na swojej stronie internetowej. Po prostu skopiuj poniż
msgid "Embedded video player"
msgstr "Wbudowany odtwarzacz wideo"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Włącz"
@@ -4025,7 +4160,7 @@ msgstr "Pokazuj treści dla dorosłych"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4038,13 +4173,12 @@ msgstr "Pokazuj multimedia spoza aplikacji"
msgid "Enable media players for"
msgstr "Włącz odtwarzacze dla"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr "Wprowadź hasło"
msgid "Enter a word or tag"
msgstr "Wprowadź słowo lub tag"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4143,7 +4277,7 @@ msgstr "Przechodzi do trybu pełnoekranowego"
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Błąd"
@@ -4185,23 +4319,23 @@ msgstr "Każdy może komentować"
msgid "Everybody can reply to this post."
msgstr "Każdy może komentować ten wpis."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Każdy"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Każdy"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Każdy"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "Wyklucza obserwowane osoby"
msgid "Exit fullscreen"
msgstr "Wyłącz pełny ekran"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Rozwiń tekst alternatywny"
@@ -4226,7 +4360,7 @@ msgstr "Rozwiń tekst alternatywny"
msgid "Expand list of users"
msgstr "Rozwiń listę osób"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Rozwiń lub zwiń cały wpis, który komentujesz"
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr "Rozwija lub zwija tekst wpisu"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Adres uri powinien prowadzić do rekordu"
@@ -4277,9 +4411,9 @@ msgstr "Nieodpowiednia lub niepokojąca treść."
msgid "Explicit sexual images."
msgstr "Obrazy o charakterze jednoznacznie seksualnym."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4289,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,7 @@ msgstr "Multimedia spoza aplikacji"
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 "Multimedia spoza aplikacji mogą umożliwiać witrynom gromadzenie informacji o tobie i twoim urządzeniu. Żadne informacje nie są wysyłane ani udostępniane do momentu naciśnięcia przycisku odtwarzania."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Preferencje multimediów spoza aplikacji"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "Nie udało się zmienić nazwy. Spróbuj ponownie."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "Nie udało się utworzyć hasła aplikacji. Spróbuj ponownie."
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Nie udało się usunąć wiadomości"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "Nie udało się wczytać preferencji kanałów"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "Nie udało się wczytać polecanych kanałów"
msgid "Failed to load suggested follows"
msgstr "Nie udało się wczytać polecanych osób"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Nie udało się przypiąć wpisu"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Nie udało się złożyć odwołania, spróbuj ponownie."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Nie udało się ustawić wyciszenia wątku, spróbuj ponownie"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4614,7 +4751,7 @@ msgstr "Nie udało się zaktualizować kanałów"
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Nie udało się zaktualizować ustawień"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Kanał"
@@ -4649,7 +4786,7 @@ msgstr "Kanał"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Kanał od {0}"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Menu kanału"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Kanały"
@@ -4739,7 +4876,7 @@ msgstr "Filtruj wyszukiwanie według języka (aktywny: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "Kończenie"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Znajdź konta do obserwowania"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr "Znajdź osoby do obserwowania"
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "Obserwowane przez <0>{0}0> i <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Obserwowane przez <0>{0}0>, <1>{1}1> i {2, plural, one {# inną osobę} few {# inne osoby} other {# innych osób}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Obserwujący @{0}, których znasz"
@@ -4995,19 +5136,16 @@ msgstr "Obserwujesz {handle}"
msgid "Following feed preferences"
msgstr "Preferencje kanału obserwowanych"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Preferencje kanału obserwowanych"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Obserwuje cię"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Obserwuje cię"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Czcionka"
@@ -5069,7 +5207,7 @@ msgstr "Nie pamiętasz?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr "Od <0/>"
msgid "Generate a starter pack"
msgstr "Wygeneruj pakiet startowy"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "Uzyskaj pomoc"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Zmień wygląd swojego profilu"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Wróć"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Wróć"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Wróć do poprzedniego kroku"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Wróć na stronę główną"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Wróć na stronę główną"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Wróć na stronę główną"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Przejdź do rozmowy z {0}"
@@ -5299,12 +5440,12 @@ msgstr "Przejdź dalej"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Przejdź do profilu"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Nazwa jest zbyt długa. Spróbuj wybrać krótszą."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Hashtag"
@@ -5458,8 +5615,8 @@ msgstr "Hashtag {tag}"
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Pomoc"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Daj znać innym, że nie jesteś botem, ustawiając zdjęcie profilowe."
@@ -5652,18 +5809,18 @@ msgstr "Wygląda na to, że mamy problem z wczytaniem tych danych. Więcej infor
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Nie mogliśmy wczytać tej usługi moderacji."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Poczekaj! Dostęp do materiałów wideo udostępniamy stopniowo, a ty wciąż czekasz na swoją kolej. Sprawdź ponownie za jakiś czas!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Główna"
@@ -5721,7 +5878,7 @@ msgstr "Rozumiem"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Rozwija lub zwija długi tekst alternatywny"
@@ -5757,7 +5914,7 @@ msgstr "Jeśli usuniesz tę listę, nie będziesz w stanie jej odzyskać."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Jeśli masz własną domenę, możesz jej użyć jako swojej nazwy. Pozwala to na samodzielną weryfikację tożsamości. <0>Dowiedz się więcej tutaj.0>."
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5765,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr "Jeśli usuniesz ten wpis, nie będziesz w stanie go odzyskać."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5773,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Jeśli chcesz zmienić hasło, wyślemy Ci kod, aby zweryfikować, że to Twoje konto."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr "Jeśli jesteś deweloperem, możesz hostować własny serwer."
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ą."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Zdjęcie"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Nieprawidłowy kod weryfikacyjny 2FA."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Nieprawidłowa nazwa. Spróbuj użyć innej."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Nieprawidłowy kod weryfikacyjny"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "W tej chwili jesteś tylko ty! Dodaj więcej osób do swojego pakietu startowego, wyszukując powyżej."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID: {0}"
msgid "Jobs"
msgstr "Praca"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Praca"
msgid "Join Bluesky"
msgstr "Dołącz do Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Dołącz do rozmowy"
msgid "Journalism"
msgstr "Dziennikarstwo"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "Ostrzeżenia na twoim koncie"
msgid "Labels on your content"
msgstr "Ostrzeżenia na twoich treściach"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Ustawienia języka"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Najnowsze"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Dowiedz się więcej o tym ostrzeżeniu"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Dowiedz się więcej o tym, co jest publiczne na Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "Dowiedz się więcej."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Opuść"
@@ -6276,7 +6464,7 @@ msgstr "Opuść czat"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Opuść rozmowę"
@@ -6284,13 +6472,13 @@ msgstr "Opuść rozmowę"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Opuść rozmowę"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Jasny"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Polub ({0, plural, one {# polubienie} few {# polubienia} other {# polubień}})"
@@ -6346,11 +6534,7 @@ msgstr "Polub 10 wpisów"
msgid "Like 10 posts to train the Discover feed"
msgstr "Polub 10 wpisów, aby dostosować kanał główny"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Polub ten kanał"
@@ -6358,8 +6542,8 @@ msgstr "Polub ten kanał"
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Polubione przez"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Polubione przez {0, plural, one {# osobę} few {# osoby} other {# osób}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Polubione przez {likeCount, plural, one {# osobę} few {# osoby} other {# osób}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Polubienia"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Polubienia tego wpisu"
@@ -6409,11 +6589,11 @@ msgstr "Polubienia tego wpisu"
msgid "Linear"
msgstr "W linii"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Lista"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Cofnięto wyciszenie listy"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listy"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Wczytywanie..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Dziennik"
@@ -6662,7 +6842,7 @@ msgstr "Wygląda na to, że brakuje kanału. <0>Kliknij tutaj, aby go dodać.0
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr "Zarządzaj wyciszonymi słowami i tagami"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
@@ -6698,13 +6877,12 @@ msgstr ""
msgid "Mark as read"
msgstr "Oznacz jako przeczytane"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6727,25 +6905,21 @@ 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."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "wzmianki"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Wzmianki"
@@ -6775,22 +6949,22 @@ msgstr "Napisz do {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Wiadomość usunięta"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Wiadomość usunięta"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6813,19 +6987,19 @@ msgstr "Wiadomość jest zbyt długa"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Wiadomości"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderacja"
@@ -6894,7 +7064,7 @@ msgstr "Zaktualizowano listę moderacji"
msgid "Moderation lists"
msgstr "Listy moderacji"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Listy moderacji"
@@ -6903,7 +7073,7 @@ msgstr "Listy moderacji"
msgid "moderation settings"
msgstr "ustawienia moderacji"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Status moderacji"
@@ -6949,7 +7119,7 @@ msgstr "Filmy"
msgid "Music"
msgstr "Muzyka"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Wycisz"
@@ -6994,7 +7164,7 @@ msgstr "Wycisz listę"
msgid "Mute these accounts?"
msgstr "Wyciszyć te konta?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Wycisz wątek"
msgid "Mute words & tags"
msgstr "Wycisz słowa i tagi"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Wyciszone konta"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Wyciszone konta"
@@ -7108,8 +7278,8 @@ msgstr "Przejdź do następnego ekranu"
msgid "Navigates to your profile"
msgstr "Przejdź do swojego profilu"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Nowy czat"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7174,29 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Nowy wpis"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Nowy wpis"
@@ -7262,8 +7428,8 @@ msgstr "Aktualności"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "Już nie obserwujesz {0}"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Brak wiadomości"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "Brak powiadomień!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Brak wyników"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Brak wyników"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Nieseksualna nagość"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Nie znaleziono"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Ustawienia powiadomień"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Dźwięki powiadomień"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Powiadomienia"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "teraz"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Wył."
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "na<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Rozpocznij od nowa"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "W co najmniej jednym wideo brakuje tekstu alternatywnego."
@@ -7685,6 +7835,26 @@ msgstr "W co najmniej jednym wideo brakuje tekstu alternatywnego."
msgid "Only {0} can reply."
msgstr "Tylko {0} mogą komentować."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr "Obsługiwane są tylko pliki obrazów"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Obsługiwane są tylko pliki WebVTT (.vtt)"
@@ -7712,7 +7892,7 @@ msgstr "Ups, coś poszło nie tak!"
msgid "Oops!"
msgstr "Ups!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Otwórz kreator zdjęcia profilowego"
@@ -7720,12 +7900,17 @@ msgstr "Otwórz kreator zdjęcia profilowego"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Zmień ustawienia rozmowy"
@@ -7739,16 +7924,16 @@ msgstr "Otwórz menu"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Wybierz emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Otwórz informacje o kanale"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Zmień ustawienia kanału"
@@ -7760,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Otwórz link do {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr "Zmień ustawienia wpisu"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr "Otwórz historię aktywności"
msgid "Open system log"
msgstr "Otwórz dziennik systemowy"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Otwiera dodatkowe szczegóły debugowania"
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Otwiera aplikację aparatu"
@@ -7858,22 +8051,24 @@ msgstr "Otwiera kompozytor wpisu"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Otwiera proces tworzenia nowego konta Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Otwiera proces logowania do istniejącego konta Bluesky"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Otwiera ten profil"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Nasz zespół moderatorów otrzymał twoje zgłoszenie."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Nasi moderatorzy przeanalizowali zgłoszenia i zdecydowali o zablokowaniu dostępu do czatów na Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Nasi moderatorzy przeanalizowali zgłoszenia i zdecydowali o zablokowani
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Strona nie została odnaleziona"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Strona nie została odnaleziona"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Zatrzymaj wideo"
msgid "People"
msgstr "Osoby"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Osoby obserwowane przez @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Osoby obserwujące @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Zdjęcia przeznaczone dla dorosłych."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Przypnij kanał"
@@ -8152,7 +8348,7 @@ msgstr "Przypnij kanał"
msgid "Pin to home"
msgstr "Przypnij do głównej"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Przypnij do głównej"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Przypięte"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} przypięto do głównej"
@@ -8236,7 +8432,7 @@ msgstr "Wybierz swoją nazwę."
msgid "Please choose your password."
msgstr "Wybierz swoje hasło."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "Wypełnij formularz captcha."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Wprowadź unikalną nazwę hasła aplikacji lub użyj losowo wygenerowanej."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "Wprowadź swój adres email."
msgid "Please enter your invite code."
msgstr "Wprowadź swój kod zaproszenia."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr "Wprowadź swoją nazwę użytkownika"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Wyjaśnij, dlaczego uważasz, że to ostrzeżenie zostało nieprawidłowo nadane przez {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Wyjaśnij, dlaczego uważasz, że czaty zostały wyłączone z niewłaściwych powodów."
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "Polityka"
msgid "Porn"
msgstr "Pornografia"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Opublikuj"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Opublikuj wszystko"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Wpis od @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Wpis usunięty"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Nie udało się opublikować wpisu. Sprawdź swoje połączenie internetowe i spróbuj ponownie."
@@ -8454,7 +8650,7 @@ msgstr "Wpis został ukryty przez ciebie"
msgid "Post interaction settings"
msgstr "Ustawienia interakcji wpisu"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Ustawienia interakcji wpisu"
@@ -8464,8 +8660,8 @@ msgstr "Ustawienia interakcji wpisu"
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Wpis został odpięty"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Wpisy mogą być wyciszane na podstawie zawartego w nich tekstu, tagów
msgid "Posts hidden"
msgstr "Wpisy zostały ukryte"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "Kliknij, aby ponowić próbę połączenia"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Kliknij, aby spróbować ponownie"
@@ -8536,7 +8728,7 @@ msgstr "Kliknij, aby spróbować ponownie"
msgid "Press to view followers of this account that you also follow"
msgstr "Kliknij, aby wyświetlić obserwujących to konto, których również obserwujesz"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "Prywatność"
msgid "Privacy and security"
msgstr "Prywatność i bezpieczeństwo"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Prywatność i bezpieczeństwo"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Polityka prywatności"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Przetwarzanie wideo..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Przetwarzanie..."
@@ -8602,8 +8793,8 @@ msgstr "Przetwarzanie..."
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "Kod QR został pobrany!"
msgid "QR code saved to your camera roll!"
msgstr "Kod QR został zapisany w galerii zdjęć!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Cytowanie wpisów zostało wyłączone"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Cytaty"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Dołącz cytat ponownie"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr "Powód odwołania"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr "Polecane"
msgid "Reconnect"
msgstr "Połącz ponownie"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Odśwież rozmowy"
@@ -8896,17 +9087,17 @@ msgstr "Usuń konto"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Usuń załącznik"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Usuń zdjęcie profilowe"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Usuń tło profilu"
@@ -8914,8 +9105,9 @@ msgstr "Usuń tło profilu"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Usuń osadzenie"
@@ -8933,8 +9125,8 @@ msgstr "Usunąć kanał?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Usuń zdjęcie"
@@ -9009,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Usunięte przez autora"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Usunięte przez Ciebie"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Komentarze"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Skomentuj"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Skomentuj ({0, plural, one {# komentarz} few {# komentarze} other {# komentarzy}})"
@@ -9125,10 +9316,6 @@ msgstr "Komentarz został ukryty przez autora wątku"
msgid "Reply Hidden by You"
msgstr "Komentarz został ukryty przez ciebie"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Ustawienia komentowania są wybierane przez autora wątku"
@@ -9146,9 +9333,9 @@ msgstr "Widoczność komentarzy została zaktualizowana"
msgid "Reply was successfully hidden"
msgstr "Komentarz został ukryty pomyślnie"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Zgłoś"
@@ -9164,13 +9351,13 @@ msgstr ""
msgid "Report conversation"
msgstr "Zgłoś rozmowę"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Okno zgłoszenia"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Zgłoś kanał"
@@ -9179,7 +9366,7 @@ msgstr "Zgłoś kanał"
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Zgłoś wiadomość"
@@ -9199,8 +9386,8 @@ msgstr "Zgłoś pakiet startowy"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Zgłoszenie zostało wysłane"
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Zgłoś ten kanał"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Zgłoś tę listę"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Repostuj"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Repostuj ({0, plural, one {# repost} few {# reposty} other {# repostów}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Repostowane przez ciebie"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "Reposty tego wpisu"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Wymagaj tekstu alternatywnego przed opublikowaniem"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Wymagaj kodu z wiadomości email, aby zalogować się na swoje konto."
@@ -9328,7 +9534,11 @@ msgstr "Wymagane w przypadku tego dostawcy"
msgid "Required in your region"
msgstr "Wymagane w twoim regionie"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9393,15 +9603,16 @@ msgstr "Ponawia ostatnią akcję, która zakończyła się błędem"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Ponawia ostatnią akcję, która zakończyła się błędem"
msgid "Retry"
msgstr "Spróbuj ponownie"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9426,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr "Wróć do poprzedniej strony"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Wraca do strony głównej"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Wraca do poprzedniej strony"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Zapisz zmiany"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Zapisz kod QR"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Dodaj do moich kanałów"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "Zapisane kanały"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Dodano do twoich kanałów"
@@ -9551,8 +9764,8 @@ msgstr "Dodano do twoich kanałów"
msgid "Say hello!"
msgstr "Przywitaj się!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "Przewiń na górę"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Szukaj"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Szukaj wpisów od @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Szukaj w moich wpisach"
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Szukaj profili"
msgid "Search..."
msgstr "Szukaj..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Wyszukuje profile"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "Wybierz kolor"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "Wybierz GIF"
msgid "Select GIF \"{0}\""
msgstr "Wybierz GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Wybierz język..."
msgid "Select languages"
msgstr "Wybierz języki"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9904,11 +10117,11 @@ msgstr "Wybierz swoje zainteresowania z poniższych opcji"
msgid "Select your preferred language for translations in your feed."
msgstr "Wybierz preferowany język tłumaczeń."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Wyślij email"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Wyślij opinię"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Wyślij wiadomość"
@@ -9952,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr "Wyślij wpis do..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9960,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Wyślij bezpośrednio"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Ustawia email do resetowania hasła"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Ustawienia"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "Aktywność seksualna lub nagość erotyczna."
msgid "Sexually Suggestive"
msgstr "Sugestywne seksualnie"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr "Udostępnij kod QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Udostępnij ten kanał"
@@ -10151,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Tester współdzielonych preferencji"
@@ -10167,16 +10382,16 @@ msgstr "Pokaż tekst alternatywny"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Pokaż mimo to"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Pokaż ostrzeżenie i odfiltruj z kanałów"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr "Pokazuje zawartość"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr "Zaloguj się lub utwórz konto, aby dołączyć do rozmowy!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Zaloguj się na konto, którego nie ma na liście"
@@ -10337,6 +10558,10 @@ msgstr "Zaloguj się na konto, którego nie ma na liście"
msgid "Sign in to Bluesky or create a new account"
msgstr "Zaloguj się na Bluesky lub utwórz nowe konto"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Wyloguj się"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Wyloguj się"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Wylogować się?"
@@ -10391,7 +10616,7 @@ msgstr "Pomiń"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Mniejszy"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Coś poszło nie tak"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Coś poszło nie tak!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Coś poszło nie tak? Daj nam znać."
@@ -10568,7 +10798,7 @@ msgstr "Sport"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Zacznij nowy czat"
@@ -10582,17 +10812,17 @@ msgstr "Zacznij dodawać osoby"
msgid "Start adding people!"
msgstr "Zacznij dodawać osoby!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Zacznij czat z {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Pakiet startowy"
@@ -10654,12 +10884,12 @@ msgstr "Pamięć została wyczyszczona, uruchom aplikację ponownie."
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Historia aktywności"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Prześlij"
@@ -10684,9 +10914,9 @@ msgstr "Złóż odwołanie"
msgid "Submit Appeal"
msgstr "Złóż odwołanie"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Subskrybuj"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Sukces!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Pomoc"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Przełącz konto"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Przełącz konto"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Przełącz na {0}"
@@ -10828,7 +11062,7 @@ msgstr "Tylko tagi"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Kliknij, aby odrzucić"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Regulamin"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Tekst i tagi"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Pole wprowadzania tekstu"
@@ -11049,6 +11301,11 @@ msgstr "Ustawienia te będą używane jako domyślne podczas tworzenia nowych wp
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "Wpis, który komentujesz, został oznaczony przez autora jako napisany w języku {suggestedLanguageName}. Czy chcesz skomentować w języku <0>{suggestedLanguageName}0>?"
@@ -11057,9 +11314,9 @@ msgstr "Wpis, który komentujesz, został oznaczony przez autora jako napisany w
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Polityka prywatności została przeniesiona do <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "Wystąpił problem podczas łączenia z serwerem"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Wystąpił problem podczas łączenia z serwerem, sprawdź połączenie internetowe i spróbuj ponownie."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Wystąpił problem podczas wczytywania powiadomień. Kliknij tutaj, aby spróbować ponownie."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Wystąpił problem podczas wczytywania wpisów. Kliknij tutaj, aby spróbować ponownie."
@@ -11161,7 +11420,7 @@ msgstr "Wystąpił problem podczas wczytywania informacji o usłudze"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Wystąpił problem podczas usuwania tego kanału. Sprawdź połączenie internetowe i spróbuj ponownie."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Odwołanie zostanie wysłane do <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Odwołanie zostanie wysłane do działu moderacji Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Odwołanie zostanie wysłane do działu moderacji Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Ta zawartość jest niedostępna, ponieważ jeden z jej uczestników zab
msgid "This content is not viewable without a Bluesky account."
msgstr "Ta zawartość nie jest dostępna bez konta Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Ta rozmowa dotyczy usuniętego lub dezaktywowanego konta. Kliknij, aby w
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr "Ten kanał nie jest już dostępny online. Zamiast niego wyświetlamy <0
msgid "This handle is reserved. Please try a different one."
msgstr "Ta nazwa jest zajęta. Wypróbuj inną."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr "Ta lista jest pusta."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Autor tego wpisu wyłączył możliwość cytowania."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Ten komentarz trafi do ukrytej sekcji na dole wątku. Spowoduje to wyciszenie powiadomień o kolejnych komentarzach – zarówno dla ciebie, jak i innych."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr "Ta osoba nie ma żadnych obserwujących."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Ta osoba cię zablokowała. Nie możesz wyświetlać jej treści."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Ustawienia wątków"
msgid "Threaded"
msgstr "Tryb wątkowy"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Ustawienia wątków"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Aby wyłączyć uwierzytelnianie dwuskładnikowe (2FA) sprawdź, czy masz dostęp do swojego adresu email."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11646,12 +11927,12 @@ msgstr "Najlepsze"
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Temat"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Popularne filmiki"
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11763,11 +12044,15 @@ msgstr "Nie udało się skontaktować z usługą. Sprawdź połączenie internet
msgid "Unable to delete"
msgstr "Nie udało się usunąć"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr ""
msgid "Unfollows the user"
msgstr "Nie obserwuj"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Nie lubię ({0, plural, one {# polubienie} few {# polubienia} other {# polubień}})"
@@ -11918,7 +12203,7 @@ msgstr "Nie lubię ({0, plural, one {# polubienie} few {# polubienia} other {# p
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Anuluj wyciszenie"
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Odepnij"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Odepnij kanał"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Odepnij od głównej"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Odepnij listę moderacji"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} odpięto od głównej"
@@ -12030,11 +12315,11 @@ msgstr "Nie subskrybuj tej moderacji"
msgid "Unsubscribed from list"
msgstr "Nie subskrybujesz już listy"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "Zaktualizuj <0>{displayName}0> w listach"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "Zmień na {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Nie udało się zaktualizować widoczności komentarzy"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Zamiast tego prześlij zdjęcie"
@@ -12098,39 +12395,40 @@ msgstr "Zamiast tego prześlij zdjęcie"
msgid "Upload a text file to:"
msgstr "Prześlij plik tekstowy do:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Prześlij z aparatu"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Prześlij z plików"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Prześlij z biblioteki"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Przesyłanie zdjęć..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Przesyłanie miniatury..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Przesyłanie wideo..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Lista od {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "obserwowani przez <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "obserwujący <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Zweryfikuj rekord DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12349,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr "Wideo"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Przetwarzanie wideo nie powiodło się"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Kanał wideo"
@@ -12419,7 +12717,7 @@ msgstr "Wideo nie zostało odnalezione."
msgid "Video settings"
msgstr "Ustawienia wideo"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Wideo zostało przesłane"
@@ -12432,18 +12730,18 @@ msgstr "Wideo: {0}"
msgid "Videos"
msgstr "Filmiki"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Wyświetl zdjęcie profilowe {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Wyświetl profil {0}"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Wyświetl szczegóły"
msgid "View full thread"
msgstr "Wyświetl cały wątek"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Wyświetl informacje o tych ostrzeżeniach"
@@ -12522,7 +12828,7 @@ msgstr "Pokaż więcej"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "Wyświetl profil"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Wyświetl zdjęcie profilowe"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "Wyświetl usługę moderacji dostarczoną przez @{0}"
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Wyświetl osoby, które lubią ten kanał"
@@ -12596,8 +12902,8 @@ msgstr "Wyświetl wyciszone konta"
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Wyświetla całe zdjęcie"
@@ -12640,8 +12946,8 @@ msgstr "Ostrzegaj o zawartości"
msgid "Warn content and filter from feeds"
msgstr "Ostrzegaj o zawartości i odfiltruj z kanałów"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr "Nie znaleziono żadnych wyników dla tego tematu."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Nie udało się wczytać tej rozmowy"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Nie udało nam się potwierdzić, czy możesz przesyłać wideo. Spróbuj ponownie."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "Mamy problemy z siecią, spróbuj ponownie"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Przepraszamy! Wpis, który komentujesz, został usunięty."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Przepraszamy! Nie możemy znaleźć strony, której szukasz."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Jak chcesz nazwać swój pakiet startowy?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Jak się masz?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12878,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr "Kto może wchodzić w interakcje z tym wpisem?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Kto może komentować"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Ups!"
@@ -12939,7 +13249,7 @@ msgstr "Dlaczego ten pakiet startowy powinien zostać sprawdzony?"
msgid "Why should this user be reviewed?"
msgstr "Dlaczego ta osoba powinna zostać sprawdzona?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Utwórz wpis"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Skomentuj"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Nieprawidłowy DID z serwera. Otrzymano: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr ""
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Nie możesz przesyłać filmików."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Możesz kontynuować aktywne rozmowy niezależnie od wybranych opcji."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "Możesz ponownie aktywować swoje konto, aby się zalogować. Twój prof
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr "Możesz to później zmienić w ustawieniach."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "Nie masz żadnych zapisanych kanałów."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "Aby wygenerować pakiet startowy, musisz obserwować co najmniej siedem
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Nastąpi wylogowanie ze wszystkich kont."
@@ -13390,7 +13710,7 @@ msgstr "Będziesz teraz otrzymywać powiadomienia z tego wątku"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Otrzymasz wiadomość email z \"kodem resetowania\". Wprowadź ten kod tutaj, a następnie ustaw nowe hasło."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "To już koniec! Znajdź więcej kont do obserwowania."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Dzienny limit przesyłania wideo został osiągnięty (zbyt dużo danych)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr "Twoje konto zostało zawieszone"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Twoje konto jest jeszcze zbyt krótko aktywne, aby przesyłać filmiki. Spróbuj ponownie później."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Wszystkie publiczne dane konta można pobrać jako plik \"CAR\". Plik ten nie zawiera osadzonych multimediów, takich jak zdjęcia, ani prywatnych danych, które należy pobrać osobno."
@@ -13519,7 +13847,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Twoje czaty zostały wyłączone"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "Twój adres email jest nieprawidłowy."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13582,7 +13910,7 @@ msgstr "Twój kanał obserwowanych jest pusty! Zaobserwuj więcej osób, aby zob
msgid "Your full handle will be <0>@{0}0>"
msgstr "Twoja nowa nazwa to <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "Wyciszone przez ciebie słowa"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13661,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po
index 46f345c137..4f44d5a6f9 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -74,7 +74,7 @@ msgstr "{0, plural, one {# curtida} other {# curtidas}}"
#. placeholder {0}: convo.members.length
#: src/components/dialogs/SearchablePeopleList.tsx:559
msgid "{0, plural, one {# member} other {# members}}"
-msgstr ""
+msgstr "{0, plural, one {# membro} other {# membros}}"
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:149
@@ -86,11 +86,16 @@ msgstr "{0, plural, one {# minuto} other {# minutos}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# mês} other {# meses}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
-msgstr ""
+msgstr "{0, plural, one {# pessoa reagiu} other {# pessoas reagiram}} – {1}"
#. placeholder {0}: quoteCount ?? 0
#: src/screens/Post/PostQuotes.tsx:34
@@ -109,17 +114,17 @@ msgstr "{0, plural, one {# segundo} other {# segundos}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# item não lido} other {# itens não lidos}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
-msgstr ""
+msgstr "{0, plural, one {#me} other {#me}}"
#. How many months have passed, displayed in a narrow form
#. placeholder {0}: diff.value
@@ -192,13 +197,13 @@ msgstr "{0} <0>em <1>texto e tags1>0>"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41
msgid "{0} added to chat"
-msgstr ""
+msgstr "{0} adicionado à conversa"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43
msgid "{0} and {1} added to chat"
-msgstr ""
+msgstr "{0} e {1} adicionados à conversa"
#. placeholder {0}: profile.followsCount || 0
#: src/screens/Profile/Header/Metrics.tsx:49
@@ -206,9 +211,9 @@ msgid "{0} following"
msgstr "{0} seguindo"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
-msgstr ""
+msgstr "{0} está bloqueando você"
#. placeholder {0}: sanitizeHandle(profile.handle)
#: src/features/liveNow/components/LiveStatusDialog.tsx:84
@@ -228,12 +233,12 @@ msgstr "{0} não é suportado pelo seu dispositivo."
#. placeholder {0}: action.displayName
#: src/components/dms/getSystemMessageInfo.ts:83
msgid "{0} joined"
-msgstr ""
+msgstr "{0} entrou"
#. placeholder {0}: action.displayName
#: src/components/dms/getSystemMessageInfo.ts:84
msgid "{0} joined the group"
-msgstr ""
+msgstr "{0} entrou no grupo"
#. placeholder {0}: formatCount(i18n, JOINED_THIS_WEEK)
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230
@@ -243,7 +248,7 @@ msgstr "{0} se juntou esta semana"
#. placeholder {0}: action.displayName
#: src/components/dms/getSystemMessageInfo.ts:96
msgid "{0} left"
-msgstr ""
+msgstr "{0} restantes"
#. placeholder {0}: action.displayName
#: src/components/dms/getSystemMessageInfo.ts:97
@@ -264,14 +269,14 @@ msgstr "{0} de 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} reagiu com {1}"
#. placeholder {0}: action.displayName
#: src/components/dms/getSystemMessageInfo.ts:57
msgid "{0} was added"
-msgstr ""
+msgstr "{0} foi adicionado"
#. placeholder {0}: action.displayName
#: src/components/dms/getSystemMessageInfo.ts:58
@@ -281,7 +286,7 @@ msgstr "{0} foi adicionado ao grupo"
#. placeholder {0}: action.displayName
#: src/components/dms/getSystemMessageInfo.ts:70
msgid "{0} was removed"
-msgstr ""
+msgstr "{0} foi removido"
#. placeholder {0}: action.displayName
#: src/components/dms/getSystemMessageInfo.ts:71
@@ -309,16 +314,38 @@ msgstr "{0}, uma lista por {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Foto de perfil de {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "Avatar de {0}"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,27 +370,52 @@ msgstr "{0}min"
msgid "{0}s"
msgstr "{0}s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# item não lido} other {# itens não lidos}}"
-#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
-msgid "{count}+"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:56
+msgid "{count}+"
+msgstr "{count}+"
+
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
-msgstr ""
+msgstr "{count}+ solicitações"
#: src/components/dms/DateDivider.tsx:60
msgid "{date} at {time}"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} verificou você"
msgid "{following} following"
msgstr "{following} seguindo"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "Não é possível enviar mensagens a {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "{handle} não pode receber mensagens"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# hora e {minutesString}} other {# horas e {minutes
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# hora} other {# horas}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, other {Você pode ocultar no máximo # respostas.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr "Feeds e usuários favoritos de {name} - junte-se a mim!"
msgid "{name}'s starter pack"
msgstr "O pacote inicial de {name}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# item não lido} other {# itens não lidos}}"
@@ -629,14 +691,14 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
-msgstr ""
+msgstr "{requestCount}+ solicitações"
#. trending topic time spent trending. should be as short as possible to fit in a pill
#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191
@@ -795,8 +857,11 @@ msgstr "Ocorreu um erro de rede. Verifique sua conexão com a internet"
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Ocorreu um erro de rede. Verifique sua conexão com a internet."
@@ -804,7 +869,7 @@ msgstr "Ocorreu um erro de rede. Verifique sua conexão com a internet."
msgid "A new code has been sent"
msgstr "Um novo código foi enviado"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Uma nova forma de verificação"
@@ -827,11 +892,11 @@ msgstr "Uma captura de tela de uma página de perfil com um ícone de sino ao la
msgid "A screenshot of 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 "Uma captura de tela do editor de postagens com um novo botão ao lado do botão de postagens que diz \"Rascunhos\", com um efeito de fogo de artifício de arco-íris. Abaixo, o texto no editor diz \"Ei, você soube da novidade? O Bluesky possui rascunhos agora\"."
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Comportamento abusivo ou discriminatório"
msgid "Accept"
msgstr "Aceitar"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Aceitar"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Aceitar pedido de conversa"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Aceitar solicitação"
@@ -860,17 +935,26 @@ msgstr "Aceitar solicitação"
msgid "Accept this language suggestion"
msgstr "Aceitar esta sugestão de idioma"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Acessibilidade"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Acessibilidade"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Conta dessilenciada"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Contas com um ponto de verificação azul ondulado <0><1/>0> podem verificar outras contas. Esses verificadores confiáveis são selecionados pelo Bluesky."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Atividade de terceiros"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Notificações de atividade"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Adicionar"
@@ -999,8 +1079,8 @@ msgstr "Adicionar conta"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Adicionar texto alternativo (opcional)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Adicionar outra conta"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Adicionar outra postagem"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Adicionar outra postagem ao tópico"
@@ -1035,7 +1115,7 @@ msgstr "Adicionar senha do app"
msgid "Add App Password"
msgstr "Adicionar senha do app"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "Adicionar rótulo de automação à conta"
@@ -1043,7 +1123,7 @@ msgstr "Adicionar rótulo de automação à conta"
msgid "Add emoji reaction"
msgstr "Adicionar reação de emoji"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Adicionar mídia à postagem"
@@ -1062,8 +1142,8 @@ msgstr "Adicionar mídia à postagem"
msgid "Add members"
msgstr "Adicionar membros"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Adicionar mais detalhes (opcional)"
@@ -1080,8 +1160,8 @@ msgstr "Adicionar palavra silenciada com as configurações escolhidas"
msgid "Add muted words and tags"
msgstr "Adicionar palavras/tags removidas"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1145,7 +1225,7 @@ msgstr "Adicionado por {0}"
#: src/screens/Messages/ConversationSettings/Member.tsx:102
msgid "Added by invite link"
-msgstr ""
+msgstr "Adicionado com link de convite"
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:113
#: src/view/com/modals/UserAddRemoveLists.tsx:163
@@ -1165,7 +1245,7 @@ msgstr "Adicionando membros à lista..."
msgid "Additional details (limit 1000 characters)"
msgstr "Detalhes adicionais (limite de 1000 caracteres)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Detalhes adicionais (limite de 300 caracteres)"
@@ -1228,12 +1308,12 @@ msgstr "A solicitação de verificação de idade foi submetida"
msgid "Age assurance only takes a few minutes"
msgstr "A verificação de idade leva apenas alguns minutos"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@exemplo.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Tudo"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Permitir acesso às minhas mensagens diretas"
msgid "Allow anyone to reply"
msgstr "Permitir que qualquer pessoa responda"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "Permitir mensagens diretas de"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr "Já tem uma conta?"
msgid "Already signed in as @{0}"
msgstr "Já registrado como @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Texto Alternativo"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "O texto alternativo descreve imagens para usuários cegos e com baixa visão, além de dar contexto a todos."
@@ -1387,7 +1467,7 @@ msgstr "Ocorreu um erro"
msgid "An error occurred"
msgstr "Ocorreu um erro"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Ocorreu um erro ao compactar o vídeo."
@@ -1432,11 +1512,11 @@ msgstr "Ocorreu um erro ao salvar o QR code!"
msgid "An error occurred while trying to follow all"
msgstr "Ocorreu um erro ao tentar seguir todos"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "Ocorreu um erro ao enviar o vídeo. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "Ocorreu um erro ao carregar o vídeo. Por favor, verifique sua conexão de internet e tente novamente."
@@ -1461,19 +1541,19 @@ msgstr "Uma ilustração de várias postagens do Bluesky junto dos ícones de re
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Uma ilustração mostrando que o Bluesky seleciona verificadores confiáveis e estes, por sua vez, verificam contas de usuário individuais."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Outro problema"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Ocorreu um problema ao tentar abrir a conversa"
msgid "An issue occurred, please try again."
msgstr "Ocorreu um problema, tente novamente."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Um mockup de um iPhone mostrando o aplicativo Bluesky aberto ao perfil de um usuário verificado com uma marca de seleção azul ao lado de seu nome de exibição."
@@ -1539,13 +1619,17 @@ msgstr "Todos"
msgid "Anyone can interact"
msgstr "Qualquer um pode interagir"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "Qualquer um pode se juntar instantaneamente"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "Qualquer um pode pedir para se juntar"
@@ -1555,11 +1639,11 @@ msgstr "Qualquer um pode pedir para se juntar"
msgid "Anyone who follows me"
msgstr "Qualquer um que me segue"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
-msgstr ""
+msgstr "Qualquer pessoa que o tenha não poderá mais entrar ou solicitar entrada. Você sempre pode criar um novo."
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "A senha do app deve conter no mínimo 4 caracteres"
msgid "App passwords"
msgstr "Senhas de aplicativo"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Senhas de Aplicativo"
@@ -1618,7 +1702,7 @@ msgstr "Recorrer da suspensão de transmissão"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Recurso enviado"
@@ -1632,14 +1716,14 @@ msgstr "Recorrer da suspensão"
msgid "Appeal Suspension"
msgstr "Recorrer da suspensão"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Recorrer desta decisão"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,9 +1759,9 @@ msgstr "Você está realmente certo disso?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Deseja mesmo excluir a senha do app \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
-msgstr ""
+msgstr "Deseja mesmo excluir esta mensagem? A mensagem será excluída para você, mas não para os demais participantes."
#: src/screens/StarterPack/StarterPackScreen.tsx:684
msgid "Are you sure you want to delete this starter pack?"
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
-msgstr ""
+msgstr "Tem certeza de que deseja sair de {groupName}?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr "Tem certeza de que deseja sair desta conversa?"
-#: 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ê."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Tem certeza de que deseja descartar esta postagem?"
@@ -1735,7 +1819,7 @@ msgstr "No mínimo 8 caracteres"
#: src/screens/Settings/components/DeleteAccountDialog.tsx:338
msgid "AT Protocol FAQ"
-msgstr ""
+msgstr "FAQ do Protocolo AT"
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48
msgctxt "Name of app icon variant"
@@ -1752,7 +1836,7 @@ msgstr "Conta automatizada"
msgid "Automation label"
msgstr "Rótulo de automação"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "Rótulo de Automação"
@@ -1767,12 +1851,12 @@ msgstr "Reproduzir vídeos e GIFs automaticamente"
msgid "Available"
msgstr "Disponível"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Disponível"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Disponível"
msgid "Back"
msgstr "Voltar"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Voltar às Conversas"
@@ -1810,11 +1896,11 @@ msgstr "Usuário banido retornando"
#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:259
msgid "Based on your device's location, we think you're in <0>{region}0>. This estimate may be inaccurate if you're using a VPN."
-msgstr ""
+msgstr "Com base na localização do seu dispositivo, achamos que você está em <0>{region}0>. Essa estimativa pode não ser correta caso esteja usando uma VPN."
#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:265
msgid "Based on your network, we think you're in <0>{region}0>. This estimate may be inaccurate if you're using a VPN."
-msgstr ""
+msgstr "Com base em sua rede, achamos que você está em <0>{region}0>. Essa estimativa pode não ser correta caso esteja usando uma VPN."
#: src/view/screens/Lists.tsx:35
#: src/view/screens/ModerationModlists.tsx:35
@@ -1840,12 +1926,12 @@ msgstr "Para aceitar este pedido de conversa, você deve primeiro verificar o se
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Para que possa receber notificações das postagens de {name}, você deve primeiro verificar seu email."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Para enviar mensagens a outro usuário, você deve primeiro verificar o seu email."
@@ -1877,7 +1963,7 @@ msgstr "Aniversário"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1885,7 +1971,7 @@ msgstr "Bloquear"
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211
msgid "Block {displayName}"
-msgstr ""
+msgstr "Bloquear {displayName}"
#: src/components/dms/ConvoMenu.tsx:294
#: src/components/dms/ConvoMenu.tsx:298
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Bloquear conta"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Bloquear conta?"
@@ -1912,7 +1998,7 @@ msgstr "Bloquear conta?"
msgid "Block accounts"
msgstr "Bloquear contas"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Bloquear estas contas?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Bloquear usuário"
@@ -1946,9 +2032,9 @@ msgstr "Bloquear usuário"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Bloquear usuário"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Bloquear usuário e/ou excluir esta conversa"
@@ -1956,7 +2042,7 @@ msgstr "Bloquear usuário e/ou excluir esta conversa"
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Bloqueado"
@@ -1964,13 +2050,13 @@ msgstr "Bloqueado"
msgid "Blocked accounts"
msgstr "Contas bloqueadas"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Contas bloqueadas"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Contas bloqueadas não podem te responder, mencionar ou interagir."
@@ -2029,7 +2115,7 @@ msgstr "O Bluesky é bem melhor com amigos!"
msgid "Bluesky is more fun with friends"
msgstr "O Bluesky é mais divertido com amigos"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "O Bluesky é mais divertido com os amigos! Importe seus contatos para ver quem já está aqui."
@@ -2053,7 +2139,7 @@ msgstr "O Bluesky selecionará um grupo de contas recomendadas da sua rede."
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 "O Bluesky não exibirá seu perfil e postagens a usuários desconectados. Outros apps talvez não respeitem esta solicitação. Isso não torna sua conta privada."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "O Bluesky irá proativamente verificar contas notáveis e autênticas."
@@ -2137,23 +2223,30 @@ msgstr "Corporativo"
msgid "Button to go back to the home timeline"
msgstr "Botão para voltar à linha do tempo inicial"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Por {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Por <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Ao criar uma conta você concorda com os <0>Termos de Serviço0>."
msgid "By you"
msgstr "Por você"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Câmera"
@@ -2192,8 +2285,8 @@ msgstr "Câmera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Câmera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Câmera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Cancelar"
@@ -2248,9 +2341,9 @@ msgstr "Cancelar reativação e desconectar"
msgid "Cancel search"
msgstr "Cancelar pesquisa"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Não é possível interagir com um usuário bloqueado"
@@ -2264,7 +2357,7 @@ msgstr "Legendas (.vtt)"
msgid "Captions & alt text"
msgstr "Legendas e texto alternativo"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "carrossel"
@@ -2297,7 +2390,7 @@ msgstr "Mudar idioma do aplicativo"
msgid "Change Handle"
msgstr "Alterar nome de usuário"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Alterar serviço de moderação"
@@ -2310,11 +2403,11 @@ msgstr "Alterar senha"
msgid "Change password dialog"
msgstr "Janela de troca de senha"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Alterar categoria de relatório"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Alterar motivo da denúncia"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Alterações no pacote inicial não serão aplicadas à lista após a criação. A lista será uma cópia independente."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Conversas"
@@ -2359,6 +2452,13 @@ msgstr "Conversa excluída"
#: src/components/dms/getSystemMessageInfo.ts:108
msgid "Chat ended"
+msgstr "Conversa encerrada"
+
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:104
@@ -2378,41 +2478,41 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Conversa silenciada"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Caixa de entrada de pedidos de conversa"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Pedidos de conversa"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Configurações de conversa"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Configurações de Conversa"
#: src/components/dms/getSystemMessageInfo.ts:115
msgid "Chat title changed"
-msgstr ""
+msgstr "Título da conversa alterado"
#. placeholder {0}: data.newName
#: src/components/dms/getSystemMessageInfo.ts:114
msgid "Chat title changed to {0}"
-msgstr ""
+msgstr "Título da conversa alterado para {0}"
#: src/components/dms/getSystemMessageInfo.ts:106
msgid "Chat unlocked"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Conversa dessilenciada"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Conversas"
@@ -2479,7 +2579,7 @@ msgstr "Selecionar idiomas da postagem"
msgid "Choose this color as your avatar"
msgstr "Selecionar esta cor como sua foto de perfil"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,15 +2633,15 @@ msgstr "Clique para informações"
msgid "click here"
msgstr "clique aqui"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
-msgstr ""
+msgstr "Clique aqui para adicionar pessoas nesta conversa em grupo"
#: src/ageAssurance/components/NoAccessScreen.tsx:129
msgid "Click here to contact our support team"
msgstr "Clique aqui para contatar nossa equipe de suporte"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr "Clique aqui para terminar sessão"
msgid "Click here to resend the email"
msgstr "Clique aqui para reenviar o email"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Clique aqui para reiniciar o processo de verificação."
@@ -2567,11 +2667,11 @@ msgstr "Clique aqui para reiniciar o processo de verificação."
msgid "Click here to update your birthdate"
msgstr "Clique aqui para atualizar sua data de nascimento"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Clique aqui para atualizar seu email"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr "Clique para abrir o menu de tag para {0}"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Clique para tentar enviar novamente a mensagem"
@@ -2594,28 +2694,30 @@ msgstr "Clique para tentar enviar novamente a mensagem"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Clique para tentar enviar novamente a mensagem"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Fechar janela ativa"
msgid "Close alert"
msgstr "Fechar alerta"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Fechar parte inferior"
@@ -2657,8 +2763,9 @@ msgstr "Fechar parte inferior"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Fechar janela"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Fechar imagem"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Fechar visualizador de imagens"
@@ -2683,6 +2790,14 @@ msgstr "Fechar visualizador de imagens"
msgid "Close menu"
msgstr "Fechar menu"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Fechar esta janela"
@@ -2695,7 +2810,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:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Fecha a janela de nova postagem e descarta o rascunho"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Quadrinhos"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Diretrizes da Comunidade"
@@ -2740,12 +2855,12 @@ msgstr "Complete o captcha"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Escrever nova postagem"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Escreva postagens de até {0, plural, other {# caracteres}}"
@@ -2753,11 +2868,11 @@ msgstr "Escreva postagens de até {0, plural, other {# caracteres}}"
msgid "Compose reply"
msgstr "Escrever resposta"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "Comprimindo GIF..."
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Comprimindo vídeo..."
@@ -2780,7 +2895,7 @@ msgstr "Configurável no <0>painel de moderação0>."
msgid "Confirm"
msgstr "Confirmar"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Conteúdo e mídia"
msgid "Content and media"
msgstr "Conteúdo e mídia"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Conteúdo e mídia"
@@ -2889,7 +3004,7 @@ msgstr "Fundo do menu, clique para fechá-lo."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Continuar tópico"
msgid "Continue thread..."
msgstr "Continuar tópico..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
-msgstr ""
+msgstr "Prosseguir para o nome do grupo"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Continuar com o próximo passo"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Conversa"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Conversa excluída"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversa excluída"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Número de versão do app copiada"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Copiar DID"
msgid "Copy host"
msgstr "Copiar host"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Copiar link para o perfil"
msgid "Copy link to starter pack"
msgstr "Copiar link para o pacote inicial"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Copiar texto da mensagem"
@@ -3052,7 +3175,7 @@ msgstr "Copiar valor do registro TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Política de direitos autorais"
@@ -3065,7 +3188,7 @@ msgstr "Não foi possível conectar ao feed personalizado"
msgid "Could not connect to feed service"
msgstr "Não foi possível conectar ao serviço do feed"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Não foi possível seguir todas as correspondências. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Não foi possível sair desta conversa"
@@ -3094,6 +3217,10 @@ msgstr "Não foi possível sair desta conversa"
msgid "Could not load feed"
msgstr "Não foi possível carregar o feed"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Código de país"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Criar"
@@ -3159,7 +3286,7 @@ msgstr "Criar um QR code para o pacote inicial"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Criar um pacote inicial"
@@ -3174,13 +3301,14 @@ msgstr "Crie um pacote inicial para mim"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Criar uma conta"
msgid "Create an account without using this starter pack"
msgstr "Criar uma conta sem usar este pacote inicial"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Adicionar uma foto de perfil"
@@ -3206,7 +3334,7 @@ msgstr "Adicionar uma foto de perfil"
msgid "Create another"
msgstr "Criar outro"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Criar conversa em grupo"
@@ -3228,19 +3356,20 @@ msgstr "Criar lista a partir de pacote inicial"
msgid "Create moderation list"
msgstr "Criar lista de moderação"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Criar nova conta"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Criar denúncia para {0}"
@@ -3256,8 +3385,8 @@ msgstr "Criar lista de usuários"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Criou {0}"
@@ -3327,7 +3456,7 @@ msgstr "Painel de depuração"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:469
msgid "Decline this language suggestion"
-msgstr ""
+msgstr "Recusar esta sugestão de idioma"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:84
msgid "Deepfake adult content"
@@ -3341,7 +3470,7 @@ msgstr "Padrão"
msgid "Default icons"
msgstr "Ícones padrão"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Excluir registro da conversa"
msgid "Delete contacts"
msgstr "Excluir contatos"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Excluir conversa"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Excluir para mim"
@@ -3399,11 +3528,11 @@ msgstr "Excluir para mim"
msgid "Delete list"
msgstr "Excluir lista"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Excluir mensagem"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Excluir mensagem para mim"
@@ -3413,7 +3542,7 @@ msgstr "Excluir minha conta"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Excluir postagem"
@@ -3434,12 +3563,12 @@ msgstr "Excluir esta lista?"
msgid "Delete this post?"
msgstr "Excluir esta postagem?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Excluído"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Conta excluída"
@@ -3464,7 +3593,7 @@ msgstr "Descrição"
#: src/components/SendErrorReportDialog.tsx:82
msgid "Description (1000 characters max)"
-msgstr ""
+msgstr "Descrição (máximo de 1000 caracteres)"
#: src/view/com/composer/GifAltText.tsx:156
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:124
@@ -3507,13 +3636,13 @@ msgstr "Ajuste quem pode interagir com esta postagem"
msgid "Dim"
msgstr "Menos escuro"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Desativar"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Desabilitar 2FA"
@@ -3521,7 +3650,7 @@ msgstr "Desabilitar 2FA"
msgid "Disable captions"
msgstr "Desativar legendas"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Desabilitar 2FA por e-mail"
@@ -3534,10 +3663,10 @@ msgstr "Desativar 2FA por e-mail"
msgid "Disable haptic feedback"
msgstr "Desativar feedback tátil"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
-msgstr ""
+msgstr "Desativar link"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:628
msgid "Disable quote posts of this post"
@@ -3547,7 +3676,7 @@ msgstr "Desativar citações desta postagem"
msgid "Disable replies entirely"
msgstr "Desativar respostas completamente"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "Desativar este link de convite?"
@@ -3560,9 +3689,9 @@ msgstr "Desativado"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Descartar"
msgid "Discard changes?"
msgstr "Descartar alterações?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Descartar rascunho?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Descartar postagem?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Desconectar Germ DM"
@@ -3613,11 +3742,11 @@ msgstr "Descobrir novos feeds"
msgid "Dismiss"
msgstr "Dispensar"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Dispensar banner"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Dispensar erro"
@@ -3673,7 +3802,7 @@ msgstr "Não inclui nudez."
msgid "Domain verified!"
msgstr "Domínio verificado!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Não tem um código ou precisa de um novo? <0>Clique aqui.0>"
@@ -3681,7 +3810,7 @@ msgstr "Não tem um código ou precisa de um novo? <0>Clique aqui.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Não vê um código? <0>Clique aqui para reenviar.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Não viu o email? <0>Clique aqui para reenviar.0>"
@@ -3700,16 +3829,19 @@ msgstr "Não se preocupe! Todas as mensagens e configurações existentes estão
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Concluído"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Toque duas vezes ou pressione longamente a mensagem para adicionar uma reação"
@@ -3741,15 +3873,6 @@ msgstr "Toque duas vezes para curtir"
msgid "Download Bluesky"
msgstr "Baixar o Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Baixar arquivo CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Baixar arquivo CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Baixar dados da conversa"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Baixar dados da conversa"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Baixar imagem"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Doxxing"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "ex.: Perfis que são irritantes."
msgid "Eating disorders"
msgstr "Transtornos alimentares"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Editar"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Editar foto de perfil"
@@ -3847,14 +3978,14 @@ msgstr "Editar foto de perfil"
msgid "Edit Feeds"
msgstr "Editar feeds"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Editar nome do grupo"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Editar imagem"
@@ -3868,10 +3999,19 @@ msgstr "Editar opções de interação"
msgid "Edit interests"
msgstr "Editar interesses"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
-msgid "Edit link settings"
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
+msgid "Edit link settings"
+msgstr "Editar configurações do link"
+
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:191
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:194
msgid "Edit list details"
@@ -3886,20 +4026,15 @@ msgstr "Editar status ao vivo"
msgid "Edit moderation list"
msgstr "Editar lista de moderação"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Editar meus feeds"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "Editar nome"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Editar notificações de {0}"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Editar Pessoas"
@@ -3925,7 +4060,7 @@ msgstr "Editar perfil"
msgid "Edit starter pack"
msgstr "Editar pacote inicial"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "Editar o nome deste grupo"
@@ -3937,7 +4072,7 @@ msgstr "Editar lista de usuários"
msgid "Edit who can reply"
msgstr "Editar quem pode responder"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Editar pacote inicial"
@@ -3971,7 +4106,7 @@ msgstr "Endereço de e-mail"
msgid "Email Resent"
msgstr "E-mail reenviado"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "Email enviado!"
@@ -4006,8 +4141,8 @@ msgstr "Incorpore esta postagem no seu site. É só copiar o trecho seguinte e c
msgid "Embedded video player"
msgstr "Reprodutor interno de vídeo"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Ativar"
@@ -4025,7 +4160,7 @@ msgstr "Habilitar conteúdo adulto"
msgid "Enable captions"
msgstr "Ativar legendas"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Habilitar 2FA por email"
@@ -4038,13 +4173,12 @@ msgstr "Ativar mídia externa"
msgid "Enable media players for"
msgstr "Ativar reprodutores de mídia para"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Ative as notificações de uma conta ao visitar seu perfil e pressionar no <0>ícone de sino0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Ativar notificações no dispositivo"
@@ -4091,8 +4225,8 @@ msgstr "Insira uma senha"
msgid "Enter a word or tag"
msgstr "Digite uma palavra ou tag"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Inserir código"
@@ -4143,7 +4277,7 @@ msgstr "Entra em tela cheia"
msgid "Entertainment"
msgstr "Entretenimento"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Erro"
@@ -4185,23 +4319,23 @@ msgstr "Todos podem responder"
msgid "Everybody can reply to this post."
msgstr "Todos podem responder esta postagem."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Todos"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Todos"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Todos"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Demais itens"
@@ -4217,8 +4351,8 @@ msgstr "Exclui usuários que você segue"
msgid "Exit fullscreen"
msgstr "Sair da tela cheia"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Expandir texto alternativo"
@@ -4226,7 +4360,7 @@ msgstr "Expandir texto alternativo"
msgid "Expand list of users"
msgstr "Expandir lista de usuário"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Expandir ou esconder a postagem que você está respondendo"
@@ -4238,7 +4372,7 @@ msgstr "Expandir texto da postagem"
msgid "Expands or collapses post text"
msgstr "Expande ou esconde o texto da postagem"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Era esperado que o URI fosse resolvido para um registro"
@@ -4277,9 +4411,9 @@ msgstr "Mídia explícita ou pertubadora"
msgid "Explicit sexual images."
msgstr "Imagens sexualmente explícitas."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Explorar"
@@ -4289,14 +4423,11 @@ msgstr "Explorar"
msgid "Explore the app"
msgstr "Explorar o aplicativo"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
-msgstr ""
+msgstr "Exportar meus dados de conversa"
#: src/screens/Settings/AccountSettings.tsx:170
#: src/screens/Settings/AccountSettings.tsx:174
@@ -4305,7 +4436,7 @@ msgstr "Exportar meus dados"
#: src/screens/Settings/components/ExportCarDialog.tsx:97
msgid "Export my profile data"
-msgstr ""
+msgstr "Exportar meus dados de perfil"
#: src/screens/Settings/ContentAndMediaSettings.tsx:86
#: src/screens/Settings/ContentAndMediaSettings.tsx:89
@@ -4322,7 +4453,7 @@ msgstr "Mídia externa"
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 "Mídias externas podem permitir que sites coletem informações sobre você e seu dispositivo. Nenhuma informação é enviada ou solicitada até que você pressione o botão de \"play\"."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Preferências de Mídia Externa"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Falha ao aceitar conversa"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Falha ao adicionar reação de emoji"
@@ -4354,9 +4489,9 @@ msgstr "Falha ao adicionar ao pacote inicial"
msgid "Failed to change handle. Please try again."
msgstr "Não foi possível alterar o nome de usuário. Por favor tente novamente."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
-msgstr ""
+msgstr "Falha ao copiar link"
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173
msgid "Failed to create app password. Please try again."
@@ -4367,9 +4502,9 @@ msgstr "Não foi possível criar a senha de aplicativo. Por favor tente novament
msgid "Failed to create conversation"
msgstr "Falha ao criar conversa"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
-msgstr ""
+msgstr "Falha ao criar link de convite"
#: src/screens/StarterPack/Wizard/index.tsx:250
#: src/screens/StarterPack/Wizard/index.tsx:260
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Falha ao excluir conversa"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Não foi possível excluir esta mensagem"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
-msgstr ""
+msgstr "Falha ao desativar link de convite"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Falha ao desconectar Germ DM. Erro: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "Falha ao editar o nome do grupo"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "Falha ao editar o link de convite"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "Falha ao ativar o link de convite"
@@ -4427,19 +4562,27 @@ msgstr "Não foi possível seguir todos os amigos, por favor tente novamente"
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "Não foi possível ocultar a sugestão, verifique sua conexão com a internet"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "Falha ao iniciar o aplicativo de SMS"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "Falha ao sair da conversa em grupo"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Falha ao carregar conversas"
@@ -4456,17 +4599,8 @@ msgstr "Não foi possível carregar os feeds"
msgid "Failed to load feeds preferences"
msgstr "Falha ao carregar preferências de feeds"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Falha ao carregar configurações de notificação."
@@ -4493,25 +4627,24 @@ msgstr "Falha ao carregar feeds sugeridos"
msgid "Failed to load suggested follows"
msgstr "Falha ao carregar sugestões a seguir"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Falha ao marcar todos os pedidos como lidos"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
-msgstr ""
+msgstr "Falha ao silenciar conversa em grupo"
#: src/state/queries/pinned-post.ts:75
msgid "Failed to pin post"
msgstr "Falha ao fixar postagem"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Falha ao reconectar Germ DM. Erro: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Falha ao remover dados. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Falha ao remover reação de emoji"
@@ -4536,21 +4669,25 @@ msgstr "Falha ao remover do pacote inicial"
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71
msgid "Failed to remove group chat member"
-msgstr ""
+msgstr "Falha ao remover membro da conversa em grupo"
#: src/components/verification/VerificationRemovePrompt.tsx:34
msgid "Failed to remove verification"
msgstr "Falha ao remover a verificação"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr "Falha ao determinar localização. Por favor, tente novamente."
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Não foi possível salvar o rascunho"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "Não foi possível salvar a imagem"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Falha ao salvar seus interesses."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Falha ao enviar email, por favor tente novamente."
@@ -4580,7 +4717,7 @@ msgstr "Falha ao enviar relatório"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Falha ao enviar o recurso, tente novamente."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Falha ao alterar o silenciamento do tópico, tente novamente"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr "Falha ao desafixar lista"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Falha ao atualizar configurações de 2FA por email"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Falha ao atualizar o email, por favor tente novamente."
@@ -4614,7 +4751,7 @@ msgstr "Falha ao atualizar os feeds"
msgid "Failed to update notification declaration"
msgstr "Falha ao atualizar a declaração de notificação"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Falha ao atualizar as configurações"
@@ -4641,7 +4778,7 @@ msgstr "Conta falsa ou bot"
msgid "False information about elections"
msgstr "Informações falsas sobre eleições"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Feed"
@@ -4649,7 +4786,7 @@ msgstr "Feed"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Feed por {0}"
@@ -4662,7 +4799,7 @@ msgstr "Criador do feed"
msgid "Feed identifier"
msgstr "Identificador do feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Menu do feed"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Comentários enviados para o operador do feed"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Feeds"
@@ -4739,7 +4876,7 @@ msgstr "Filtrar pesquisa por idioma (atual: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Filtre quem pode optar por receber notificações da sua atividade"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Filtre de quem você receberá notificações"
@@ -4747,11 +4884,11 @@ msgstr "Filtre de quem você receberá notificações"
msgid "Finalizing"
msgstr "Finalizando"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Finalmente!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Finanças"
msgid "Find accounts to follow"
msgstr "Encontre contas para seguir"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Encontrar Contatos"
@@ -4799,7 +4936,7 @@ msgstr "Encontre pessoas para seguir"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Encontre postagens, usuários e feeds no Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Encontrar seus amigos"
@@ -4864,7 +5001,7 @@ msgstr "Seguir {0}"
#: src/screens/Messages/ConversationSettings/Member.tsx:142
msgid "Follow {displayName}"
-msgstr ""
+msgstr "Seguir {displayName}"
#: src/screens/VideoFeed/index.tsx:845
msgid "Follow {handle}"
@@ -4944,8 +5081,12 @@ msgstr "Seguido por <0>{0}0> e <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Seguido por <0>{0}0>, <1>{1}1>, e {2, plural, one {# outro} other {outros #}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Seguidores de @{0} que você conhece"
@@ -4984,7 +5125,7 @@ msgstr "Seguindo {0}"
#: src/screens/Messages/ConversationSettings/Member.tsx:54
msgid "Following {displayName}"
-msgstr ""
+msgstr "Seguindo {displayName}"
#: src/screens/VideoFeed/index.tsx:844
msgid "Following {handle}"
@@ -4995,19 +5136,16 @@ msgstr "Seguindo {handle}"
msgid "Following feed preferences"
msgstr "Preferências do feed principal"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Preferências do feed principal"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Segue você"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Segue Você"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Fonte"
@@ -5069,7 +5207,7 @@ msgstr "Esqueceu?"
msgid "Free your feed"
msgstr "Libere o seu feed"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "De"
@@ -5086,35 +5224,35 @@ msgstr "Por <0/>"
msgid "Generate a starter pack"
msgstr "Gere um pacote inicial"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Gerar link de convite"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Gerar novo link de convite"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Gerar novo link"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germ DM desconectado"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Link do Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germ DM reconectado"
@@ -5122,46 +5260,50 @@ msgstr "Germ DM reconectado"
msgid "Get help"
msgstr "Obter ajuda"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Seja notificado quando pessoas começam a te seguir."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Seja notificado quando pessoas curtem suas repostagens."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Seja notificado quando pessoas curtem suas postagens."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Seja notificado quando pessoas te mencionarem."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Seja notificado quando pessoas citarem suas postagens."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Seja notificado quando pessoas responderem suas postagens."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Seja notificado quando pessoas repostam suas repostagens."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Seja notificado quando pessoas repostam suas postagens."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr ""
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Seja notificado sobre novas postagens"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Seja notificado sobre postagens e respostas das contas que você escolher."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Seja notificado de novas postagens de {name}"
@@ -5174,27 +5316,27 @@ msgstr "Seja notificado da atividade desta conta"
msgid "Get notified when {name} posts"
msgstr "Seja notificado quando {name} postar"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Seja notificado quando alguém postar"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Vamos começar"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIF enviado"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Dê uma cara nova pro seu perfil"
@@ -5213,20 +5355,21 @@ msgstr "Glorificação da violência"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Voltar"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Voltar"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Voltar para a etapa anterior"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Voltar para a tela inicial"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Voltar para a tela inicial"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Voltar para a tela inicial"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Ir para as configurações da conta"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Ir para a conversa com {0}"
@@ -5299,12 +5440,12 @@ msgstr "Próximo"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Ir para este perfil"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr "O modo Ao Vivo está desabilitado para a sua conta no momento"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Entendi"
@@ -5340,59 +5481,75 @@ msgstr "Conteúdo violento explícito"
msgid "Grooming or predatory behavior"
msgstr "Aliciamento (grooming) ou comportamento predatório"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
-msgstr ""
+msgstr "O grupo está bloqueado"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Nome do grupo"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Hacking ou ataques de sistema"
@@ -5421,14 +5578,14 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Nome de usuário muito longo. Por favor tente um nome de usuário mais curto."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "Acontecendo agora"
#. Accessibility label for the icon-only pill that filters the GIF picker to happy/joyful GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:65
msgid "Happy GIFs"
-msgstr ""
+msgstr "GIFs felizes"
#: src/screens/Settings/AccessibilitySettings.tsx:86
msgid "Haptics"
@@ -5446,7 +5603,7 @@ msgstr "Atividades nocivas ou de alto risco"
msgid "Harming or endangering minors"
msgstr "Prejudicar ou colocar menores em perigo"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Hashtag"
@@ -5458,8 +5615,8 @@ msgstr "Hashtag {tag}"
msgid "Hate speech"
msgstr "Discurso de ódio"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Tem um código? <0>Clique aqui.0>"
@@ -5483,7 +5640,7 @@ msgstr "Mantido pelo Bluesky por 7 dias para evitar abusos, e depois excluído"
msgid "Help"
msgstr "Ajuda"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "As pessoas não vão achar que você é um bot se você criar um avatar ou fazer upload de uma imagem."
@@ -5652,18 +5809,18 @@ msgstr "Hmmmm, parece que estamos com problemas pra carregar os dados. Veja mais
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmmm, não foi possível carregar este serviço de moderação."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Espere! Estamos gradualmente dando acesso ao vídeo, e você ainda está esperando na fila. Volte em breve!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
-msgstr ""
+msgstr "Opa, aguenta aí! Este recurso ainda não está disponível para você. Por favor volte em outro momento."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Página Inicial"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Se o texto alternativo é longo, expande a área do texto alternativo"
@@ -5757,7 +5914,7 @@ msgstr "Se você deletar esta lista, você não poderá recuperá-la."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Se você tem um domínio próprio, você pode usá-lo como seu nome de usuário. Isso permite que você auto-verifique a sua identidade. <0>Saiba mais aqui.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Se precisar atualizar seu email, <0>clique aqui0>."
@@ -5765,7 +5922,7 @@ msgstr "Se precisar atualizar seu email, <0>clique aqui0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Se você remover esta postagem, você não poderá recuperá-la."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Se você atualizar seu endereço de email, o 2FA via email será desativado."
@@ -5773,7 +5930,6 @@ msgstr "Se você atualizar seu endereço de email, o 2FA via email será desativ
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Se você quiser alterar sua senha, enviaremos um código para verificar sua identidade."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Se você deseja restringir quem pode receber notificações da atividade da sua conta, você pode alterar isto em <0>Configurações → Privacidade e Segurança0>."
@@ -5786,25 +5942,35 @@ msgstr "Se você for um desenvolvedor, você pode hospedar seu próprio servidor
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Imagem"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
-msgstr ""
+msgstr "Imagem {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Imagem {0} de {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
-msgstr ""
+msgstr "Imagem {0} de {imageCount}"
#: src/screens/Settings/AboutSettings.tsx:67
msgid "Image cache cleared"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Memória temporária de imagens removida, {0} liberados"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
-msgstr ""
+msgstr "Galeria de imagens, {0} imagens"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
-msgstr ""
+msgstr "Imagem indisponível."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Opções de imagem"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Falsa identidade/imitação"
msgid "Import contacts"
msgstr "Importar contatos"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Importar Contatos"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Importar contatos para encontrar seus amigos"
@@ -5881,40 +6047,40 @@ msgstr "Importados em {0}"
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 "Para fornecermos uma experiência apropriada para a idade, precisamos saber a sua data de nascimento. Esta é uma solicitação única, e seus dados serão mantidos privados."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "No app"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Notificações no app"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "No app, Todos"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "No app, Pessoas que você segue"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "No app, No dispositivo"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "No app, No dispositivo, Todos"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "No app, No dispositivo, Pessoas que você segue"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "Caixa de entrada vazia"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Caixa de entrada vazia!"
@@ -5963,6 +6129,10 @@ msgstr "Apresentando as postagens salvas, ou favoritos"
msgid "Invalid 2FA confirmation code."
msgstr "Código de confirmação da autenticação de dois fatores inválido."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Nome de usuário inválido. Por favor tente um diferente."
@@ -5977,10 +6147,14 @@ msgstr "Configurações de interação inválidas."
msgid "Invalid phone number"
msgstr "Número de telefone inválido"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Assunto da denúncia inválido"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Código de Verificação Inválido"
@@ -6010,12 +6184,12 @@ msgstr "Convidar Amigos"
msgid "Invite friends <0/>"
msgstr "Convidar amigos <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Link de convite"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "Link de convite criado"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "É só você por enquanto! Adicione mais pessoas ao seu pacote inicial pesquisando acima."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID da requisição: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID da requisição: {0}"
msgid "Jobs"
msgstr "Carreiras"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Carreiras"
msgid "Join Bluesky"
msgstr "Crie uma conta no Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Participar da conversa"
msgid "Journalism"
msgstr "Jornalismo"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Continuar editando"
@@ -6143,7 +6331,7 @@ msgstr "Rótulos sobre sua conta"
msgid "Labels on your content"
msgstr "Rótulos sobre seu conteúdo"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Configurações de Idiomas"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Mais recentes"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Saiba mais sobre este aviso"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Saiba mais sobre verificação no Bluesky (em inglês)"
@@ -6239,7 +6427,7 @@ msgstr "Saiba mais sobre verificação no Bluesky (em inglês)"
msgid "Learn more about what is public on Bluesky."
msgstr "Saiba mais sobre o que é público no Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Saiba mais sobre o seu link para Germ DM"
@@ -6252,8 +6440,8 @@ msgstr "Saiba mais nas suas <0>configurações da conta.0>"
msgid "Learn more."
msgstr "Saiba mais."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Sair"
@@ -6276,7 +6464,7 @@ msgstr "Sair da conversa"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Sair desta conversa"
@@ -6284,15 +6472,15 @@ msgstr "Sair desta conversa"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Sair desta conversa"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
-msgstr ""
+msgstr "Deixar conversa em grupo"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
-msgstr ""
+msgstr "Sair desta conversa em grupo"
#: src/components/dialogs/LinkWarning.tsx:83
#: src/components/dialogs/LinkWarning.tsx:91
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Claro"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Curtidas ({0, plural, one {# curtida} other {# curtidas}})"
@@ -6346,11 +6534,7 @@ msgstr "Curtir 10 postagens"
msgid "Like 10 posts to train the Discover feed"
msgstr "Curta 10 postagens para treinar o feed de Descobertas"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Notificações de curtidas"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Curtir este feed"
@@ -6358,8 +6542,8 @@ msgstr "Curtir este feed"
msgid "Like this labeler"
msgstr "Curtir este rotulador"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Curtido por"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Curtido por {0, plural, one {# usuário} other {# usuários}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Curtido por {likeCount, plural, one {# usuário} other {# usuários}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Curtidas"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Curtidas das suas repostagens"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Notificações de curtidas das suas repostagens"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Curtidas nesta postagem"
@@ -6409,11 +6589,11 @@ msgstr "Curtidas nesta postagem"
msgid "Linear"
msgstr "Linear"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Lista"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Lista dessilenciada"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listas"
@@ -6545,7 +6725,7 @@ msgstr "Ocultação de evento ao vivo removida"
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."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "O recurso Ao Vivo está em fase de testes"
@@ -6581,7 +6761,7 @@ msgstr "Carregar novas postagens"
#: src/screens/Messages/components/MessageInput.web.tsx:202
msgctxt "placeholder"
msgid "Loading chat…"
-msgstr ""
+msgstr "Carregando chat…"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:575
msgid "Loading lists..."
@@ -6595,27 +6775,27 @@ msgstr "Carregando configurações de interações..."
msgid "Loading..."
msgstr "Carregando..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
-msgstr ""
+msgstr "Bloquear"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
-msgstr ""
+msgstr "Bloquear chat em grupo"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
-msgstr ""
+msgstr "Bloquear chat em grupo?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
-msgstr ""
+msgstr "Bloquear este chat em grupo"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
-msgstr ""
+msgstr "Trancado"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Registros"
@@ -6660,9 +6840,9 @@ msgstr "Parece que está faltando um feed com as pessoas que você segue. <0>Cli
#. Accessibility label for the icon-only pill that filters the GIF picker to GIFs about love/affection.
#: src/features/gifPicker/components/GifCategoryPills.tsx:55
msgid "Love GIFs"
-msgstr ""
+msgstr "GIFs amorosos"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Faça ajustes nas configurações de email para sua conta"
@@ -6687,9 +6867,8 @@ msgstr "Gerenciar configurações de verificação"
msgid "Manage your muted words and tags"
msgstr "Gerencie suas palavras/tags silenciadas"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Marcar todas como lidas"
@@ -6698,13 +6877,12 @@ msgstr "Marcar todas como lidas"
msgid "Mark as read"
msgstr "Marcar como lida"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Todas foram marcadas como lidas"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Talvez mais tarde"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Mídia que pode ser perturbadora ou inapropriada para algumas pessoas."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Membros"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
-msgstr ""
-
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Notificações de menção"
+msgstr "Membros ainda podem ler o histórico do chat, mas não podem enviar novas mensagens."
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "usuários mencionados"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Menções"
@@ -6756,7 +6930,7 @@ msgstr "Menu"
#: src/screens/Messages/components/MessageInput.tsx:178
msgid "Message"
-msgstr ""
+msgstr "Mensagem"
#: src/screens/Messages/components/MessageComposer.tsx:218
#: src/screens/Messages/components/MessageInput.tsx:235
@@ -6764,7 +6938,7 @@ msgstr ""
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199
msgctxt "action"
msgid "Message"
-msgstr ""
+msgstr "Mensagem"
#. placeholder {0}: profile.handle
#: src/components/dms/MessageProfileButton.tsx:99
@@ -6773,24 +6947,24 @@ msgstr "Mensagem {0}"
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195
msgid "Message {displayName}"
-msgstr ""
+msgstr "Mensagem {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Mensagem excluída"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Mensagem excluída"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Falha ao enviar mensagem."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Mensagem de @{0}: {1}"
@@ -6813,21 +6987,21 @@ msgstr "Mensagem longa demais"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Opções de mensagem"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Mensagens"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
-msgstr ""
+msgstr "Mensagens dessa pessoa são ocultas enquanto ela está bloqueando você."
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
-msgstr ""
+msgstr "Mensagens dessa pessoa são ocultas enquanto ela está bloqueando você."
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101
msgctxt "Name of app icon variant"
@@ -6838,10 +7012,6 @@ msgstr "Meia-noite"
msgid "Minor harassment or bullying"
msgstr "Assédio ou bullying de menores"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Notificações diversas"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Enganoso"
@@ -6850,7 +7020,7 @@ msgstr "Enganoso"
msgid "Missing media"
msgstr "Mídia ausente"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderação"
@@ -6894,7 +7064,7 @@ msgstr "Lista de moderação atualizada"
msgid "Moderation lists"
msgstr "Listas de moderação"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Listas de Moderação"
@@ -6903,7 +7073,7 @@ msgstr "Listas de Moderação"
msgid "moderation settings"
msgstr "configurações de Moderação"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Moderação"
@@ -6949,7 +7119,7 @@ msgstr "Filmes"
msgid "Music"
msgstr "Música"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Silenciar"
@@ -6994,7 +7164,7 @@ msgstr "Silenciar lista"
msgid "Mute these accounts?"
msgstr "Silenciar estas contas?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "Silenciar esta conversa em grupo"
@@ -7032,7 +7202,7 @@ msgstr "Silenciar tópico"
msgid "Mute words & tags"
msgstr "Silenciar palavras/tags"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "Silenciado"
@@ -7040,7 +7210,7 @@ msgstr "Silenciado"
msgid "Muted accounts"
msgstr "Contas silenciadas"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Contas Silenciadas"
@@ -7108,8 +7278,8 @@ msgstr "Navega para próxima tela"
msgid "Navigates to your profile"
msgstr "Navega para seu perfil"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Precisa relatar uma violação de direitos autorais, uma solicitação legal ou um problema de conformidade regulatória?"
@@ -7136,34 +7306,34 @@ msgstr "{postsCount, plural, one {Nova postagem} other {Novas postagens}} de {fi
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{postsCount, plural, one {Nova postagem} other {Novas postagens}} de {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Nova conversa"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "Nova conversa com {0}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "Nova conversa com {0} e {1}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
-msgstr ""
+msgstr "Novo bate-papo com {0}, {1}e {memberCount, plural, one {{memberCount} mais} other {{memberCount} mais}}"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Novo endereço de e-mail"
@@ -7174,29 +7344,25 @@ msgstr "Novo endereço de e-mail"
msgid "New Feature"
msgstr "Novo Recurso"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Notificações de novo seguidor"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Novos seguidores"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "Nova conversa em grupo"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "Nova conversa em grupo"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "Nova conversa em grupo com:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Postar"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Postar"
@@ -7262,8 +7428,8 @@ msgstr "Notícias"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "Sem GIFs encontrados para \"{query}\"."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "Sem GIFs para mostrar agora. Tente novamente mais tarde."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Sem imagem"
@@ -7362,7 +7528,7 @@ msgstr "Você não está mais seguindo {0}"
msgid "No media yet"
msgstr "Ainda não há mídia"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Nenhuma mensagem ainda"
@@ -7378,12 +7544,12 @@ msgstr "Sem nome"
msgid "No notifications yet!"
msgstr "Nenhuma notificação!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Ninguém"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Ninguém"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Nenhum resultado"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Nenhum resultados"
@@ -7509,10 +7675,6 @@ msgstr "Imagens íntimas não consensuais"
msgid "Non-sexual Nudity"
msgstr "Nudez não-erótica"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Nenhuma"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "Indisponível nesta plataforma."
msgid "Not followed by anyone you’re following"
msgstr "Não é seguido por ninguém que você segue"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Não encontrado"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Não sente que é a hora certa para publicar? Guarde as suas melhores ideias nos Rascunhos para utilizar no momento certo."
@@ -7548,44 +7710,31 @@ msgstr "Nota: Esta postagem só é visível para usuários conectados."
msgid "Nothing saved yet"
msgstr "Nada foi salvo ainda"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Configurações de notificação"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Sons de notificação"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Notificações"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Notificações para outras coisas, como quando alguém se junta através de um dos seus pacotes iniciais."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "agora"
@@ -7601,7 +7750,7 @@ msgstr "O número deve ser um número de celular"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Desligado"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "no<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Resetar tutoriais"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
-msgstr ""
+msgstr "Um dos destinatários selecionados não permite chats em grupo."
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Um dos destinatários selecionados bloqueou você e não pode ser enviado."
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Uma ou mais postagens são muito longas para salvar como um rascunho. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {O número máximo de caracteres é # caractere.} other {O número máximo de caracteres é # caracteres.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Um ou mais vídeos estão sem texto alternativo."
@@ -7685,6 +7835,26 @@ msgstr "Um ou mais vídeos estão sem texto alternativo."
msgid "Only {0} can reply."
msgstr "Apenas {0} pode responder."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Apenas seguidores que eu sigo"
msgid "Only image files are supported"
msgstr "Apenas arquivos de imagem são suportados"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Somente arquivos WebVTT (.vtt) são suportados"
@@ -7712,7 +7892,7 @@ msgstr "Ops, algo deu errado!"
msgid "Oops!"
msgstr "Ops!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Abrir criador de avatar"
@@ -7720,12 +7900,17 @@ msgstr "Abrir criador de avatar"
msgid "Open camera"
msgstr "Abrir câmera"
-#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
-msgid "Open chat member options for {displayName}"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
+msgid "Open chat member options for {displayName}"
+msgstr "Abrir opções de membro do chat para {displayName}"
+
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Abrir opções de conversa"
@@ -7739,16 +7924,16 @@ msgstr "Abrir menu"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Abrir seletor de emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Abri tela de informações do feed"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Abrir opções do feed"
@@ -7760,13 +7945,17 @@ msgstr "Abrir lista completa de emojis"
msgid "Open Germ DM"
msgstr "Abrir Germ DM"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "Abrir configurações de conversa em grupo"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Abrir link para {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Abrir pacote"
msgid "Open post options menu"
msgstr "Abrir opções da postagem"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Abrir perfil"
@@ -7817,6 +8006,10 @@ msgstr "Abrir página do storybook"
msgid "Open system log"
msgstr "Abrir registros do sistema"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Abre detalhes adicionais para um registro de depuração"
msgid "Opens alt text dialog"
msgstr "Abrir janela de texto alternativo"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Abre a câmera do dispositivo"
@@ -7858,22 +8051,24 @@ msgstr "Abre o editor de postagem"
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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Abre o fluxo de criação de conta do Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Abre a tela para entrar com uma conta Bluesky existente"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Abre imagem completa"
@@ -7890,7 +8085,7 @@ msgstr "Abre seletor de imagens"
msgid "Opens link {0}"
msgstr "Abrir link {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Abrir janela de status ao vivo"
@@ -7909,7 +8104,7 @@ msgstr "Abre perfil"
#. Accessibility hint announced after the GIF picker button label, describing what activating it will do.
#: src/view/com/composer/photos/SelectGifBtn.tsx:45
msgid "Opens the GIF picker dialog"
-msgstr ""
+msgstr "Abre o seletor de GIF"
#: src/view/com/feeds/ComposerPrompt.tsx:148
msgid "Opens the post composer"
@@ -7919,9 +8114,9 @@ msgstr "Abrir o compositor de post"
msgid "Opens this draft in the composer"
msgstr "Abre este rascunho no editor"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Abre este perfil"
@@ -7997,12 +8192,12 @@ msgstr "Nossa postagem no blog"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Nossa equipe de moderação recebeu sua denúncia."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Nossos moderadores analisaram os relatórios e decidiram desabilitar seu acesso às conversas no Bluesky."
@@ -8010,20 +8205,21 @@ msgstr "Nossos moderadores analisaram os relatórios e decidiram desabilitar seu
msgid "Owner"
msgstr "Dono"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Página não encontrada"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Página Não Encontrada"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
-msgstr ""
+msgstr "GIFs festivos"
#: src/screens/Login/LoginForm.tsx:228
#: src/screens/Settings/AccountSettings.tsx:126
@@ -8068,36 +8264,36 @@ msgstr "Pausar vídeo"
msgid "People"
msgstr "Pessoas"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
-msgstr ""
+msgstr "Pessoas que {ownerName} segue podem entrar instantaneamente"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
-msgstr ""
+msgstr "Pessoas que {ownerName} segue podem pedir para entrar"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Pessoas seguidas por @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Pessoas seguindo @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Pessoas que eu sigo"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
-msgstr ""
+msgstr "Pessoas que eu sigo podem entrar instantaneamente"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
-msgstr ""
+msgstr "Pessoas que eu sigo podem solicitar entrada"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:510
msgid "People you follow"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Imagens destinadas a adultos."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Fixar feed"
@@ -8152,7 +8348,7 @@ msgstr "Fixar feed"
msgid "Pin to home"
msgstr "Fixar na tela inicial"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fixar na Tela Inicial"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Fixado"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} fixado na Tela Inicial"
@@ -8236,7 +8432,7 @@ msgstr "Por favor, escolha seu nome de usuário."
msgid "Please choose your password."
msgstr "Por favor, escolha sua senha."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Por favor, clique no link do email que acabamos de enviar para verificar seu novo endereço de email. Este é um passo importante para permitir que você continue desfrutando de todos os recursos do Bluesky."
@@ -8244,7 +8440,7 @@ msgstr "Por favor, clique no link do email que acabamos de enviar para verificar
msgid "Please complete the verification captcha."
msgstr "Por favor, complete o captcha de verificação."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Confirme o seu endereço de email para enviar vídeos."
@@ -8265,14 +8461,14 @@ msgstr "Por favor, insira uma senha. Ela deve ter no mínimo 8 caracteres."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Por favor insira um nome único para esta senha de aplicativo ou use nosso nome gerado automaticamente."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Por favor, insira um código válido."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Por favor, insira um endereço de email válido."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Por favor insira um endereço de email válido e não temporário. Você pode precisar acessar este email no futuro."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Digite abaixo o código que enviamos para <0>{0}0>."
@@ -8293,7 +8489,7 @@ msgstr "Digite abaixo o código que enviamos para <0>{0}0>."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Por favor insira o código que você recebeu e a nova senha que gostaria de usar."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Digite o código de segurança que enviamos para o seu endereço de email anterior."
@@ -8306,7 +8502,7 @@ msgstr "Por favor, digite o seu e-mail."
msgid "Please enter your invite code."
msgstr "Por favor, insira seu código de convite."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Por favor, insira seu novo endereço de email."
@@ -8323,7 +8519,7 @@ msgstr "Insira seu nome de usuário"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Por favor, explique por que você acredita que este rótulo foi aplicado incorretamente por {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Por favor, explique por que você acha que suas conversas foram desativadas incorretamente"
@@ -8366,7 +8562,7 @@ msgstr "Por favor, use o aplicativo nativo para importar seus contatos."
msgid "Please use the native app to sync your contacts."
msgstr "Por favor, use o aplicativo nativo para sincronizar seus contatos."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Por favor, verifique seu email"
@@ -8383,7 +8579,7 @@ msgstr "Política"
msgid "Porn"
msgstr "Pornografia"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Postar"
@@ -8403,12 +8599,12 @@ msgstr "Postar uma foto"
msgid "Post a video"
msgstr "Postar um vídeo"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Postar Tudo"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Postar mesmo assim"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Postagem bloqueada"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Postagem por @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Postagem excluída"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Falha ao enviar a postagem. Por favor verifique sua conexão de internet e tente novamente."
@@ -8454,7 +8650,7 @@ msgstr "Postagem Escondida por Você"
msgid "Post interaction settings"
msgstr "Configurações de interação de postagem"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Opções de interação em postagens"
@@ -8464,8 +8660,8 @@ msgstr "Opções de interação em postagens"
msgid "Post language selection"
msgstr "Selecionar idioma da postagem"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Postagem desafixada"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "As postagens podem ser silenciadas com base em seu texto, suas tags ou a
msgid "Posts hidden"
msgstr "Postagens ocultadas"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Postagens, Respostas"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Link potencialmente enganoso"
@@ -8528,6 +8719,7 @@ msgstr "Tentar reconexão"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Tentar novamente"
@@ -8536,7 +8728,7 @@ msgstr "Tentar novamente"
msgid "Press to view followers of this account that you also follow"
msgstr "Toque para ver os seguidores desta conta que você também segue"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Prévia"
@@ -8559,21 +8751,20 @@ msgstr "Privacidade"
msgid "Privacy and security"
msgstr "Privacidade e segurança"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privacidade e Segurança"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Configurações de Privacidade e Segurança"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ 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:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "Processando GIF..."
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Processando vídeo..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Processando..."
@@ -8602,8 +8793,8 @@ msgstr "Processando..."
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Publicar postagem"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Publicar postagens"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Publicar respostas"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Publicar resposta"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "No dispositivo"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Notificações no dispositivo"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
-msgstr "No dispositivo, Todos"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "No dispositivo, Pessoas que você segue"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "QR code foi baixado!"
msgid "QR code saved to your camera roll!"
msgstr "QR code salvo no rolo da sua câmera!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Notificações de citação"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Citações desabilitadas"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Citações"
@@ -8733,20 +8920,20 @@ msgstr "Limite de tentativas excedido. Por favor, tente novamente mais tarde."
msgid "Re-attach quote"
msgstr "Reanexar citação"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
-msgstr ""
+msgstr "Reativar link de convite"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
-msgstr ""
+msgstr "Reativar link"
#: src/components/dms/EmojiReactionPicker.tsx:80
msgid "React with {emoji}"
msgstr "Reagir com {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Reações"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "ler sobre como usar os filtros de busca"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Ler postagem do blog (em inglês)"
@@ -8812,11 +8999,11 @@ msgstr "Pessoas reais."
msgid "Reason for appeal"
msgstr "Motivo do recurso"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Receber notificações no app"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Receber notificações no dispositivo"
@@ -8841,6 +9028,10 @@ msgstr "Recomendado"
msgid "Reconnect"
msgstr "Reconectar"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Negar"
msgid "Reject chat request"
msgstr "Recusar pedido de conversa"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Recarregar conversas"
@@ -8872,7 +9063,7 @@ msgstr "Remover"
#: src/components/dms/ChatProfileTabs.tsx:153
msgid "Remove {displayName} from group chat"
-msgstr ""
+msgstr "Remover {displayName} do chat em grupo"
#: src/components/StarterPack/Wizard/WizardListCard.tsx:62
msgid "Remove {displayName} from starter pack"
@@ -8896,17 +9087,17 @@ msgstr "Remover conta"
msgid "Remove all contacts"
msgstr "Remover todos os contatos"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Remover anexo"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Remover avatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Remover banner"
@@ -8914,8 +9105,9 @@ msgstr "Remover banner"
msgid "Remove caption file"
msgstr "Remover arquivo de legenda"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Remover incorporação"
@@ -8931,10 +9123,10 @@ msgstr "Remover feed?"
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233
msgid "Remove from chat"
-msgstr ""
+msgstr "Remover da conversa"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Remover das postagens salvas"
msgid "Remove from your feeds?"
msgstr "Remover dos seus feeds?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Remover imagem"
@@ -9009,11 +9201,11 @@ msgstr "Remover verificação"
msgid "Remove your verification for this account?"
msgstr "Remover a sua verificação para essa conta?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Removido pelo autor"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Removido por você"
@@ -9035,7 +9227,7 @@ msgstr "Removido das postagens salvas"
msgid "Removed from starter pack"
msgstr "Removido do pacote inicial"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Respondeu a você"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Respostas"
@@ -9104,14 +9295,14 @@ msgstr "Respostas desabilitadas"
msgid "Replies to this post are disabled."
msgstr "Respostas para esta postagem estão desativadas."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Responder"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Responder ({0, plural, one {# resposta} other {# respostas}})"
@@ -9125,10 +9316,6 @@ msgstr "Resposta Ocultada pelo Autor do Tópico"
msgid "Reply Hidden by You"
msgstr "Resposta ocultada por você"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Notificações de resposta"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Configurações de resposta são escolhidas pelo autor do tópico"
@@ -9146,9 +9333,9 @@ msgstr "Visibilidade da resposta atualizada"
msgid "Reply was successfully hidden"
msgstr "Resposta foi ocultada com sucesso"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Denunciar"
@@ -9164,13 +9351,13 @@ msgstr "Denunciar conta"
msgid "Report conversation"
msgstr "Denunciar conversa"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Janela de denúncia"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Denunciar feed"
@@ -9179,7 +9366,7 @@ msgstr "Denunciar feed"
msgid "Report list"
msgstr "Denunciar lista"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Denunciar mensagem"
@@ -9199,8 +9386,8 @@ msgstr "Denunciar pacote inicial"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Denúncia enviada"
@@ -9213,16 +9400,16 @@ msgstr "Denunciar conversa"
msgid "Report this feed"
msgstr "Denunciar este feed"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
-msgstr ""
+msgstr "Denunciar esta conversa em grupo"
#: src/components/moderation/ReportDialog/copy.ts:31
msgid "Report this list"
msgstr "Denunciar esta lista"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Denunciar essa transmissão"
@@ -9256,10 +9443,6 @@ msgstr "Repostar"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Repostar ({0, plural, one {# repostagem} other {# repostagens}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Notificações de repostagem"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Repostado por você"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Repostagens"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Repostagens"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Repostagens das suas repostagens"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Notificações de repostagens das suas repostagens"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Solicitar código"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "Solicitações"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Exigir texto alternativo antes de postar"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Requer um código de e-mail para entrar em sua conta."
@@ -9328,7 +9534,11 @@ msgstr "Obrigatório para este provedor"
msgid "Required in your region"
msgstr "Obrigatório na sua região"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Reenviar"
@@ -9393,15 +9603,16 @@ msgstr "Tenta a última ação, que deu erro"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Tenta a última ação, que deu erro"
msgid "Retry"
msgstr "Tente novamente"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Recarregar opções de denúncia"
@@ -9426,14 +9637,14 @@ msgstr "Recarregar opções de denúncia"
msgid "Return to previous page"
msgstr "Voltar para página anterior"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Voltar para a tela inicial"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Voltar para página anterior"
@@ -9444,7 +9655,7 @@ msgstr "Retorna à etapa anterior"
#. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:75
msgid "Sad GIFs"
-msgstr ""
+msgstr "GIFs tristes"
#: src/components/dialogs/BirthDateSettings.tsx:200
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:309
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Salvar data de nascimento"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Salvar alterações"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Salvar alterações?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Salvar rascunho"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Salvar rascunho?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Salvar QR code"
msgid "Save these options for next time"
msgstr "Salvar estas opções para a próxima vez"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Salvar nos meus feeds"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Salvos"
msgid "Saved Feeds"
msgstr "Feeds Salvos"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Postagens Salvas"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Adicionado aos seus feeds"
@@ -9551,8 +9764,8 @@ msgstr "Adicionado aos seus feeds"
msgid "Say hello!"
msgstr "Diga olá!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "Diga olá para alguém"
@@ -9576,18 +9789,18 @@ msgstr "Rolar à direita"
msgid "Scroll to top"
msgstr "Ir para o topo"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Pesquisar"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Pesquisar postagens de @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Pesquisar minhas postagens"
msgid "Search posts"
msgstr "Pesquisar postagens"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Pesquisar por usuários"
msgid "Search..."
msgstr "Pesquisar..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Pesquisa por perfis"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Etapa de segurança necessária"
@@ -9759,7 +9972,7 @@ msgstr "Selecionar {langName}"
msgid "Select a color"
msgstr "Selecione uma cor"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Selecione um motivo"
@@ -9794,7 +10007,7 @@ msgstr "Selecione o arquivo de legenda (.vtt)"
#: src/components/dialogs/SearchablePeopleList.tsx:501
msgid "Select chat \"{name}\""
-msgstr ""
+msgstr "Selecione o chat \"{name}\""
#: src/screens/Settings/LanguageSettings.tsx:195
#: src/screens/Settings/LanguageSettings.tsx:233
@@ -9828,9 +10041,9 @@ msgstr "Selecionar GIF"
msgid "Select GIF \"{0}\""
msgstr "Selecionar GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
-msgstr ""
+msgstr "Selecionar membros do grupo"
#: src/components/dialogs/MutedWords.tsx:151
msgid "Select how long to mute this word for."
@@ -9850,7 +10063,7 @@ msgstr "Selecione o idioma..."
msgid "Select languages"
msgstr "Selecionar idiomas"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Escolher serviço de moderação"
@@ -9904,11 +10117,11 @@ msgstr "Selecione seus interesses"
msgid "Select your preferred language for translations in your feed."
msgstr "Selecione seu idioma preferido para as traduções no seu feed."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Selecione seus canais preferidos de notificação"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "Não é possível selecionar múltiplos tipos de mídia."
@@ -9921,9 +10134,9 @@ msgstr "Auto-mutilação ou comportamentos perigosos"
msgid "Send code"
msgstr "Enviar código"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Enviar e-mail"
@@ -9933,13 +10146,13 @@ msgstr "Enviar e-mail"
#: src/screens/Settings/AboutSettings.tsx:118
#: src/screens/Settings/AboutSettings.tsx:121
msgid "Send error report"
-msgstr ""
+msgstr "Enviar relatório de erro"
#: src/view/shell/Drawer.tsx:364
msgid "Send feedback"
msgstr "Enviar comentários"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Enviar mensagem"
@@ -9952,7 +10165,7 @@ msgstr "Enviar postagem para {name}"
msgid "Send post to..."
msgstr "Enviar postagem para..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Enviar denúncia para {title}"
@@ -9960,7 +10173,7 @@ msgstr "Enviar denúncia para {title}"
msgid "Send the message from your phone"
msgstr "Envie a mensagem do seu telefone"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Enviar por mensagem direta"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "Enviado em {0}"
@@ -10015,14 +10228,14 @@ msgstr "Defina sua data de nascimento abaixo e rapidinho você poderá voltar a
msgid "Sets email for password reset"
msgstr "Configura o e-mail para recuperação de senha"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Configurações"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Configurações para atividade de terceiros"
@@ -10030,39 +10243,39 @@ msgstr "Configurações para atividade de terceiros"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Configurações para permitir que outros sejam notificados das suas postagens"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Configurações para notificações de curtidas"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Configurações para notificações de menções"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Configurações para notificações de novo seguidor"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Configurações para as demais notificações"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Configurações para notificações de curtidas das suas repostagens"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Configurações para notificações de repostagens das suas repostagens"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Configurações para notificações de citação"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Configurações para notificações de resposta"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Configurações para notificações de repostagem"
@@ -10079,10 +10292,12 @@ msgstr "Atividade sexual ou nudez erótica."
msgid "Sexually Suggestive"
msgstr "Sexualmente Sugestivo"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Compartilhar DID do autor"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Compartilhar imagem"
@@ -10124,7 +10339,7 @@ msgstr "Compartilhar URI at:// da postagem"
msgid "Share QR code"
msgstr "Compartilhar QR code"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Compartilhar este feed"
@@ -10151,7 +10366,7 @@ msgstr "Compartilhar via..."
msgid "Share your contacts to find friends"
msgstr "Compartilhe os seus contatos para encontrar amigos"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Testador de Preferências Compartilhadas"
@@ -10167,16 +10382,16 @@ msgstr "Mostrar texto alternativo"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Mostrar mesmo assim"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "Mostrar rótulo de automação"
@@ -10195,7 +10410,7 @@ msgstr "Mostrar opções de personalização"
#: src/components/dms/SystemMessageGroup.tsx:57
msgid "Show group chat updates"
-msgstr ""
+msgstr "Mostrar atualizações do chat em grupo"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Mostrar aviso e filtrar dos feeds"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Mostrar quando você estiver ao vivo"
@@ -10297,15 +10512,17 @@ msgstr "Exibe o conteúdo"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Entrar ou criar uma conta"
msgid "Sign in or create your account to join the conversation!"
msgstr "Entre ou crie a sua conta para participar da conversa!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Entrar em uma conta não listada"
@@ -10337,6 +10558,10 @@ msgstr "Entrar em uma conta não listada"
msgid "Sign in to Bluesky or create a new account"
msgstr "Registre-se no Bluesky ou crie uma conta"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Faça login para ver a postagem"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Sair"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Sair"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Sair?"
@@ -10391,9 +10616,9 @@ msgstr "Pular"
msgid "Skip contact sharing and continue to the app"
msgstr "Pular compartilhamento de contatos e continuar para o app"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
-msgstr ""
+msgstr "Pular publicações vazias?"
#: src/screens/Onboarding/StepFinished/index.tsx:288
#: src/screens/Onboarding/StepFinished/index.tsx:314
@@ -10405,15 +10630,15 @@ msgstr "Pular introdução e começar a usar a sua conta"
msgid "Skip to next step"
msgstr "Pular para a próxima etapa"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
-msgstr ""
+msgstr "slide"
#: src/screens/Settings/AppearanceSettings.tsx:152
msgid "Smaller"
msgstr "Menor"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Adiar o lembrete"
@@ -10447,7 +10672,7 @@ msgstr "Algumas pessoas podem responder"
#: src/components/dms/getSystemMessageInfo.ts:86
msgid "Someone joined"
-msgstr ""
+msgstr "Alguém entrou"
#: src/components/dms/getSystemMessageInfo.ts:87
msgid "Someone joined the group"
@@ -10455,14 +10680,14 @@ msgstr "Alguém entrou no grupo"
#: src/components/dms/getSystemMessageInfo.ts:99
msgid "Someone left"
-msgstr ""
+msgstr "Alguém saiu"
#: src/components/dms/getSystemMessageInfo.ts:100
msgid "Someone left the group"
msgstr "Alguém saiu do grupo"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Alguém reagiu com {0}"
@@ -10473,7 +10698,7 @@ msgstr "Alguém reagiu com {0} a {target}"
#: src/components/dms/getSystemMessageInfo.ts:60
msgid "Someone was added"
-msgstr ""
+msgstr "Alguém foi adicionado"
#: src/components/dms/getSystemMessageInfo.ts:61
msgid "Someone was added to the group"
@@ -10481,23 +10706,28 @@ msgstr "Alguém foi adicionado ao grupo"
#: src/components/dms/getSystemMessageInfo.ts:73
msgid "Someone was removed"
-msgstr ""
+msgstr "Alguém foi removido"
#: src/components/dms/getSystemMessageInfo.ts:74
msgid "Someone was removed from the group"
msgstr "Alguém foi removido do grupo"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Algo não estava certo com os dados que você está tentando relatar. Entre em contato com o suporte."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Algo deu errado"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Algo deu errado!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Algo deu errado. Por favor, tente novamente mais tarde."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Algo deu errado. Por favor, tente novamente."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Algo de errado? Nos avise."
@@ -10568,7 +10798,7 @@ msgstr "Esportes"
msgid "Start a conversation, and it will appear here."
msgstr "Inicie uma conversa e ela aparecerá aqui."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Começar uma nova conversa"
@@ -10582,17 +10812,17 @@ msgstr "Comece a adicionar pessoas"
msgid "Start adding people!"
msgstr "Comece a adicionar pessoas!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Iniciar conversa"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Comece a conversar com {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Pacote Inicial"
@@ -10654,12 +10884,12 @@ msgstr "Armazenamento limpo, você precisa reiniciar o aplicativo agora."
msgid "Stored as part of a secure code for matching with others"
msgstr "Armazenado como parte de um código seguro para correspondência com outros"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Storybook"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 "Transmitindo na Twitch? Defina seu status ao vivo no Bluesky para adicionar um emblema ao seu avatar. Tocar nele leva as pessoas direto para a sua transmissão."
@@ -10671,8 +10901,8 @@ msgstr "Transmitindo na Twitch? Defina seu status ao vivo no Bluesky para adicio
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Enviar"
@@ -10684,9 +10914,9 @@ msgstr "Enviar recurso"
msgid "Submit Appeal"
msgstr "Enviar Recurso"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Enviar denúncia"
@@ -10695,15 +10925,15 @@ msgid "Subscribe"
msgstr "Inscrever-se"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
-msgstr ""
+msgstr "Inscreva-se em {0}"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
-msgstr ""
+msgstr "Inscrever-se para {publicationTitle} em {0}"
#. placeholder {0}: labelerInfo.creator.handle
#: src/screens/Profile/Sections/Labels.tsx:231
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Sucesso"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Sucesso!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Verificado com sucesso"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Sugestões"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Entardecer"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,20 +11014,20 @@ msgstr "Suporte"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "O suporte para este recurso no seu país ainda não foi habilitado! Por favor, volte mais tarde."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
-msgstr ""
+msgstr "Contas suspensas não podem participar de um chat em grupo."
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
-msgstr ""
+msgstr "Contas suspensas não podem participar de um chat em grupo."
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Alterar conta"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Trocar de conta "
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Alterar para {0}"
@@ -10828,9 +11062,9 @@ msgstr "Apenas Tags"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Toque abaixo para permitir o acesso à sua localização GPS. Usaremos esses dados para determinar com mais precisão o conteúdo e os recursos disponíveis em sua região."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
-msgstr ""
+msgstr "Toque para mais detalhes"
#: src/view/com/feeds/MissingFeed.tsx:90
msgid "Tap for information"
@@ -10842,7 +11076,7 @@ msgstr "Toque para mais informações"
#: src/screens/Signup/StepInfo/index.tsx:323
msgid "Tap here to update your location with GPS."
-msgstr ""
+msgstr "Toque aqui para atualizar sua localização com GPS."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165
msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky"
@@ -10854,35 +11088,53 @@ msgstr "Toque para confirmar que você entende e concorda com essas atualizaçõ
msgid "Tap to close context menu"
msgstr "Toque para fechar o menu de contexto"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Toque para dispensar"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Toque para remover"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
+msgstr "Toque para remover sua reação {0}"
+
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Toque para tentar novamente"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
-msgstr ""
+msgstr "Toque para mostrar reações {0}"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Toque para mostrar todas as reações"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
-msgstr ""
+msgstr "Toque para ver as reações"
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107
msgid "Targeted harassment"
@@ -10924,7 +11176,7 @@ msgstr "Termos"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Texto e tags"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Campo de entrada de texto"
@@ -11049,6 +11301,11 @@ msgstr "As opções a seguir serão utilizadas como padrão ao criar postagens n
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "As leis em sua localização exigem que você verifique que é adulto para acessar certos recursos. Toque para saber mais."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "A postagem que você está respondendo foi marcada como sido escrita em {suggestedLanguageName} por seu autor. Gostaria de responder em <0>{suggestedLanguageName}0>?"
@@ -11057,9 +11314,9 @@ msgstr "A postagem que você está respondendo foi marcada como sido escrita em
msgid "The Privacy Policy has been moved to <0/>"
msgstr "A Política de Privacidade foi movida para <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,9 +11358,9 @@ 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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
-msgstr ""
+msgstr "Não há nenhum link de convite para esse chat em grupo."
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86
msgid "There is no time limit for account deactivation, come back any time."
@@ -11112,13 +11369,15 @@ msgstr "Não há limite de tempo para desativação da conta, volte quando quise
#. Body message of the error screen shown when the GIF provider request fails. Encourages the user to retry.
#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:56
msgid "There was a problem loading GIFs. Check your connection and try again."
-msgstr ""
+msgstr "Houve um problema ao carregar GIFs. Verifique sua conexão e tente novamente."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "Houve um problema com a sua conexão de internet, por favor tente novamente"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "Houve um problema com a sua conexão de internet, por favor tente novame
msgid "There was an issue contacting the server"
msgstr "Tivemos um problema ao contatar o servidor deste feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Houve um problema ao comunicar com o servidor, por favor verifique sua conexão de internet e tente novamente."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Tivemos um problema ao carregar notificações. Toque aqui para tentar de novo."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Tivemos um problema ao carregar as postagens. Toque aqui para tentar de novo."
@@ -11161,7 +11420,7 @@ msgstr "Houve um problema ao recuperar suas informações de serviço"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Houve um problema ao remover este feed. Por favor verifique sua conexão de internet e tente novamente."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Este recurso será enviado para <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Este recurso será enviado ao serviço de moderação do Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Este recurso será enviado ao serviço de moderação do Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "Este autor escolheu tornar suas postagens visíveis apenas para as pessoas que estão conectadas."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "Este botão permite que outros abram o aplicativo Germ DM para lhe enviar uma mensagem. Você pode gerenciar a visibilidade dele através do aplicativo Germ DM, ou você pode desconectar completamente o Germ DM da sua conta Bluesky ao clicar no botão abaixo."
@@ -11271,7 +11530,12 @@ msgstr "Este botão permite que outros abram o aplicativo Germ DM para lhe envia
msgid "This chat has ended"
msgstr "Esta conversa terminou"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Este conteúdo não está disponível porque um dos usuários envolvidos
msgid "This content is not viewable without a Bluesky account."
msgstr "Este conteúdo não é visível sem uma conta do Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Esta conversa é com uma conta desativada ou excluída. Pressione para v
msgid "This draft will be permanently deleted."
msgstr "Este rascunho será excluído permanentemente."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Este email já está associado à sua conta."
@@ -11360,7 +11628,7 @@ msgstr "Este feed não funciona mais. Estamos te mostrando o conteúdo do <0>Dis
msgid "This handle is reserved. Please try a different one."
msgstr "Este nome de usuário está reservado. Por favor tente um nome de usuário diferente."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "Não foi possível usar essa imagem. Tente um formato diferente como .jpg ou .png."
@@ -11368,6 +11636,18 @@ msgstr "Não foi possível usar essa imagem. Tente um formato diferente como .jp
msgid "This information is private and not shared with other users."
msgstr "Esta informação é privada e não é compartilhada com outros usuários."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "Este é um estado vazio"
@@ -11377,7 +11657,7 @@ msgstr "Este é um estado vazio"
msgid "This is not a valid link"
msgstr "Este não é um link válido"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "Este rótulo deixa o mundo saber que esta conta é automatizada. Se ativado, este rótulo aparece ao lado do nome da conta em seu perfil e postagens. Pode ser ativado ou desativado a qualquer momento."
@@ -11410,15 +11690,15 @@ msgstr "Esta lista – criada por você – contém possíveis violações das d
msgid "This list is empty."
msgstr "Esta lista está vazia."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
-msgstr ""
+msgstr "Esta mensagem está oculta porque este usuário está bloqueando você."
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
-msgstr ""
+msgstr "Esta mensagem está oculta porque você está bloqueando este usuário."
#: src/screens/Profile/ErrorState.tsx:41
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
@@ -11426,11 +11706,11 @@ msgstr "Este serviço de moderação está indisponível. Veja mais detalhes aba
#: src/components/moderation/ModerationDetailsDialog.tsx:161
msgid "This moderation was applied to the entire user account and will appear on all posts."
-msgstr ""
+msgstr "Esta moderação foi aplicada a toda a conta de usuário e aparecerá em todas as publicações."
#: src/components/dms/MessagesListBlockedFooter.tsx:84
msgid "This person is blocking you"
-msgstr ""
+msgstr "Esta pessoa está bloqueando você"
#. placeholder {0}: niceDate(i18n, createdAt)
#. placeholder {1}: niceDate(i18n, indexedAt)
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "O autor desta postagem desabilitou as postagens de citação."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Esta resposta será classificada em uma seção oculta na parte inferior do seu tópico e silenciará as notificações para respostas subsequentes, tanto para você quanto para outras pessoas."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr "Este usuário não possui um nome de exibição e por isso não pode ser
msgid "This user doesn't have any followers."
msgstr "Este usuário não é seguido por ninguém ainda."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Este usuário te bloqueou. Você não pode ver este conteúdo."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Preferências dos Tópicos"
msgid "Threaded"
msgstr "Aninhado"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Preferências dos Tópicos"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Para desabilitar o 2FA via e-mail, por favor verifique seu acesso a este endereço de e-mail."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Para desabilitar o 2FA via email, por favor verifique que você tem acesso a <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Principais"
msgid "Top replies first"
msgstr "Respostas populares primeiro"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Assunto"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Vídeos em alta"
msgid "Trolling"
msgstr "Trollagem"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "A confiança emerge de relacionamentos, comunidades e contexto compartilhado, por isso também estamos permitindo <0>verificadores confiáveis0>: organizações que podem conceder verificação diretamente."
@@ -11763,11 +12044,15 @@ msgstr "Não foi possível entrar em contato com seu serviço. Por favor, verifi
msgid "Unable to delete"
msgstr "Não foi possível excluir"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr "Indisponível"
msgid "Unavailable feed information"
msgstr "Informação do feed indisponível"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Desbloquear lista"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Desfazer"
@@ -11872,7 +12157,7 @@ msgstr "Parar de seguir conta"
msgid "Unfollows the user"
msgstr "Para de seguir o usuário"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Infelizmente, nenhum dos rotuladores em que você se inscreveu suporta esse tipo de denúncia."
@@ -11904,13 +12189,13 @@ msgstr "Conteúdo adulto não sinalizado"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Conteúdo adulto não sinalizado, abusivo ou não consensual"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr "Descurtir"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Descurtir ({0, plural, one {# curtida} other {# curtidas}})"
@@ -11918,7 +12203,7 @@ msgstr "Descurtir ({0, plural, one {# curtida} other {# curtidas}})"
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Dessilenciar conversa"
msgid "Unmute list"
msgstr "Dessilenciar lista"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Desafixar"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Desafixar feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Desafixar da tela inicial"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Desafixar lista de moderação"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} desafixado da Tela Inicial"
@@ -12030,11 +12315,11 @@ msgstr "Cancelar inscrição deste rotulador"
msgid "Unsubscribed from list"
msgstr "Cancelada inscrição na lista"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Formato de vídeo não suportado: {mimeType}"
@@ -12047,29 +12332,41 @@ msgstr "Atualizar"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Atualizar <0>{displayName}0> nas Listas"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Atualizar email"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
-msgstr ""
+msgstr "Atualizar link de convite"
#: src/screens/Settings/components/ChangeHandleDialog.tsx:544
#: src/screens/Settings/components/ChangeHandleDialog.tsx:565
msgid "Update to {domain}"
msgstr "Alterar para {domain}"
-#: src/screens/Messages/Conversation.tsx:335
-msgid "Update your app to the latest version to join in!"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
+msgid "Update your app to the latest version to join in!"
+msgstr "Atualize seu aplicativo para a versão mais recente para participar!"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Atualizar seu email"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Falha na atualização da visibilidade da resposta"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Enviar uma foto"
@@ -12098,39 +12395,40 @@ msgstr "Enviar uma foto"
msgid "Upload a text file to:"
msgstr "Carregar um arquivo de texto para:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Tirar uma foto"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Carregar um arquivo"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Carregar da galeria"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "Enviando GIF..."
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Enviando imagens..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Enviando prévia de link..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Enviando vídeo..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "usuário"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Usuário bloqueado"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Lista de usuários por {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "Lista de Usuários por {0}"
@@ -12255,12 +12553,12 @@ msgstr "usuários seguidos por <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "usuários seguindo <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "Usuários que eu sigo"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Usuários que eu sigo"
@@ -12277,7 +12575,7 @@ msgstr "Falha na verificação, por favor tente novamente."
msgid "Verification settings"
msgstr "Configurações de verificação"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Configurações de Verificação"
@@ -12304,8 +12602,8 @@ msgstr "Verificar novamente"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Verificar código"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Verificar registro DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Código para verificar o email"
@@ -12349,7 +12647,7 @@ msgstr "Verificar esta conta?"
msgid "Verify your age"
msgstr "Verificar sua idade"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Versão {0}"
msgid "Video"
msgstr "Vídeo"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Falha no processamento do vídeo"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Feed de vídeos"
@@ -12419,7 +12717,7 @@ msgstr "Vídeo não encontrado."
msgid "Video settings"
msgstr "Configurações de vídeo"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Vídeo enviado"
@@ -12432,18 +12730,18 @@ msgstr "Vídeo: {0}"
msgid "Videos"
msgstr "Vídeos"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
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:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Visualizar"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Ver o avatar de {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Ver perfil de {0}"
msgid "View {0}’s profile"
msgstr "Ver o perfil de {0}"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
-msgstr ""
+msgstr "Ver perfil de {displayName}"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Ver detalhes"
msgid "View full thread"
msgstr "Ver tópico completo"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Ver informações sobre estes rótulos"
@@ -12522,7 +12828,7 @@ msgstr "Ver mais"
msgid "View more trending videos"
msgstr "Ver mais vídeos em alta"
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Visualizar postagem"
@@ -12539,10 +12845,10 @@ msgstr "Ver perfil"
msgid "View profile banner"
msgstr "Ver imagem de capa do perfil"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Ver o avatar"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "Ver este rotulador fornecido por @{0}"
msgid "View this user's verifications"
msgstr "Ver as verificações deste usuário"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Ver usuários que curtiram este feed"
@@ -12596,8 +12902,8 @@ msgstr "Veja suas contas silenciadas"
msgid "View your verifications"
msgstr "Ver suas verificações"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Ver imagem completa"
@@ -12640,8 +12946,8 @@ msgstr "Avisar"
msgid "Warn content and filter from feeds"
msgstr "Avisar e filtrar dos feeds"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Assistir agora"
@@ -12665,13 +12971,17 @@ msgstr "Não encontramos nenhum resultado para esta tag."
msgid "We couldn't find any results for that topic."
msgstr "Nós não encontramos nenhum resultado para este assunto."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Não foi possível carregar esta conversa"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
-msgstr ""
+msgstr "Não foi possível carregar as configurações desta conversa"
#: src/components/contacts/screens/GetContacts.tsx:244
msgid "We delete hashes after matches are made"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Recomendamos a escolha de pelo menos dois interesses."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Enviamos um email para <0>{0}0> contendo um link. Clique nele para concluir o processo de verificação de email."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Não conseguimos determinar se você tem permissão para enviar vídeos. Tente novamente."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "Nós lhe notificaremos quando encontrarmos seus amigos."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Enviaremos um email para <0>{0}0> contendo um link. Clique nele para concluir o processo de verificação de email."
@@ -12779,18 +13089,18 @@ msgstr "Estamos com problemas para iniciar o processo de verificação de idade
msgid "We're having network issues, try again"
msgstr "Estamos com problemas de rede, tente novamente"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Estamos introduzindo uma nova camada de verificação no Bluesky — uma marca de verificação fácil de ver."
#: src/screens/Signup/index.tsx:136
msgid "We’re so excited to have you join us!"
-msgstr ""
+msgstr "Estamos muito contentes em receber você!"
#: src/ageAssurance/components/NoAccessScreen.tsx:416
#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241
@@ -12814,12 +13124,12 @@ msgstr "Lamentamos, mas sua pesquisa não pôde ser concluída. Por favor, tente
msgid "We're sorry, you cannot access this screen at this time."
msgstr "Desculpe, você não pode acessar esta tela no momento."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Como você quer chamar seu pacote inicial?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "E aí, qual é a boa?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Quando você tocar em uma verificação, verá quais organizações concederam verificação."
@@ -12878,22 +13188,22 @@ msgstr "Quando você tocar em uma verificação, verá quais organizações conc
msgid "Who can interact with this post?"
msgstr "Quem pode interagir com esta postagem?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
-msgstr ""
+msgstr "Quem pode entrar nesta conversa e como"
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427
#: src/components/WhoCanReply.tsx:116
msgid "Who can reply"
msgstr "Quem pode responder"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Quem pode verificar?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Ops!"
@@ -12939,7 +13249,7 @@ msgstr "Por que este pacote inicial deve ser analisado?"
msgid "Why should this user be reviewed?"
msgstr "Por que este usuário deve ser analisado?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
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?"
@@ -12951,7 +13261,7 @@ msgstr ""
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:1320
+#: src/view/com/composer/Composer.tsx:1373
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?"
@@ -12960,12 +13270,12 @@ msgstr "Gostaria de salvar isto como um rascunho para editar mais tarde?"
msgid "Write a post"
msgstr "Escrever uma postagem"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Escrever postagem"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Escreva sua resposta"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "DID incorreto recebido do servidor. Recebido: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "Você está acessando o Bluesky de uma região que exige legalmente a verificação da sua idade antes de permitir o acesso ao app."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr "Você está ao vivo"
msgid "You are no longer live"
msgstr "Você não está mais ao vivo"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Você não tem permissão para enviar vídeos."
@@ -13117,12 +13428,12 @@ msgstr "Você sempre pode escolher não usar e excluir seus dados"
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Você pode escolher se as notificações de conversa terão som nas configurações de conversa dentro do app"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Você pode continuar conversando, independentemente da configuração que escolher."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Agora você pode escolher ser notificado quando pessoas específicas postarem. Se houver alguém de quem você queira atualizações regulares, vá até o perfil de interesse e encontre o novo ícone de sino próximo ao botão de seguir."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "Você só pode salvar rascunhos com até 1000 caracteres."
@@ -13139,11 +13455,11 @@ msgstr "Você só pode salvar rascunhos com até 1000 caracteres."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "Você só pode salvar rascunhos de até 1000 caracteres. Gostaria de descartar esta postagem antes de visualizar seus rascunhos?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
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:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Você só pode selecionar um vídeo por vez."
@@ -13155,10 +13471,10 @@ msgstr "Você pode reativar sua conta para continuar fazendo login. Seu perfil e
msgid "You can read chat history but can’t send new messages."
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: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."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr ""
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,7 +13482,7 @@ msgstr "Você pode selecionar até {MAX_IMAGES, plural, other {# imagens}} no to
msgid "You can update this later from your settings."
msgstr "Você pode alterar esta opção depois nas suas configurações."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "Você não tem feeds salvos."
msgid "You got here first"
msgstr "Você chegou aqui primeiro"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
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?"
@@ -13336,7 +13656,7 @@ msgstr "Você deve estar seguindo pelo menos sete outras pessoas para gerar um p
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "Você precisa permitir acesso à sua biblioteca de mídia."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Talvez você queira reiniciar o app agora."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Você reagiu com {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "Você alterou sua data de nascimento recentemente"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Você será desconectado de todas as suas contas."
@@ -13390,9 +13710,9 @@ msgstr "Você vai receber notificações deste tópico"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Você receberá um e-mail com um \"código de redefinição\". Digite este código aqui, e então digite sua nova senha."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
-msgstr ""
+msgstr "Você não poderá voltar a entrar a menos que seja convidado."
#. When the last message in a chat was made by you.
#: src/components/dms/getMessageInfo.ts:43
@@ -13463,7 +13783,7 @@ msgstr "Você chegou ao fim do conteúdo ativo."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Você chegou ao fim do seu feed! Encontre novas contas para seguir."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "Você atingiu o número máximo de rascunhos"
@@ -13475,11 +13795,11 @@ msgstr "Você atingiu o número máximo de solicitações permitidas. Tente nova
msgid "You've reached the start of the active content."
msgstr "Você chegou ao início do conteúdo ativo."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Você atingiu seu limite diário de uploads de vídeo (muitos bytes)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr "Sua conta foi excluída. Até mais✌️"
msgid "Your account has been suspended"
msgstr "Sua conta foi suspensa"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Sua conta ainda não tem idade suficiente para enviar vídeos. Por favor, tente novamente mais tarde."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "O repositório da sua conta, contendo todos os seus dados públicos, pode ser baixado como um arquivo \"CAR\". Este arquivo não inclui imagens ou dados privados, estes devem ser exportados separadamente."
@@ -13519,7 +13847,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Suas conversas foram desativadas"
@@ -13561,7 +13889,7 @@ msgstr "Seu email"
msgid "Your email appears to be invalid."
msgstr "Seu e-mail parece ser inválido."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Seu email ainda não foi verificado. Por favor, verifique seu email para aproveitar todos os recursos do Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "Seu feed principal está vazio! Siga mais usuários para acompanhar o qu
msgid "Your full handle will be <0>@{0}0>"
msgstr "Seu nome de usuário completo será <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr "Sua localização foi atualizada."
msgid "Your muted words"
msgstr "Suas palavras silenciadas"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "Sua postagem foi enviada"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "Suas postagens foram enviadas"
@@ -13635,7 +13963,7 @@ msgstr "Suas postagens foram enviadas"
msgid "Your preferred language"
msgstr "Seu idioma de preferência"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "Sua foto de perfil"
@@ -13648,12 +13976,12 @@ msgstr "Sua foto de perfil cercada por círculos concêntricos das fotos de perf
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Sua resposta foi enviada"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Sua denúncia será enviada para <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "Sua denúncia será enviada para <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Seus interesses escolhidos nos ajudam a entregar o conteúdo que interessa a você."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/pt-PT/messages.po b/src/locale/locales/pt-PT/messages.po
index 4ea2f77f56..3f2e6cc250 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minuto} other {# minutos}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# mês} other {# meses}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr "{0, plural, one {# novo pedido de adesão} other {# novos pedidos de adesão}}"
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, one {# pessoa} other {# pessoas}} reagiu – {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# segundo} other {# segundos}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# item não lido} other {# itens não lidos}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr "{0, plural, one {#m} other {#m}}"
@@ -206,9 +211,9 @@ msgid "{0} following"
msgstr "{0} a seguir"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
-msgstr ""
+msgstr "Está bloqueado por {0}"
#. placeholder {0}: sanitizeHandle(profile.handle)
#: src/features/liveNow/components/LiveStatusDialog.tsx:84
@@ -264,7 +269,7 @@ msgstr "{0} de 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} reagiu com {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, uma lista de {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Foto de perfil de {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "Foto de perfil de {0}"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr "{0}/{1}"
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr "{0}/{1} {2, plural, one {membro} other {membros}}"
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr "{0}/{1} membros"
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}min"
msgid "{0}s"
msgstr "{0}seg"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr "{count, plural, =0 {Nenhum pedido de adesão} one {# pedido de adesão} other {# pedidos de adesão}}"
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr "{count, plural, one {# atualização da conversa} other {# atualizações da conversa}}"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr "{count, plural, one {# novo pedido de adesão} other {# novos pedidos de adesão}}"
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, one {# pedido} other {# pedidos}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# item não lido} other {# itens não lidos}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr "{count, plural, one {Recarregue a página para vê-la.} other {Recarregue a página para vê-las.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr "{count, plural, one {Esta publicação tem # imagem.} other {Esta publicação tem # imagens.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr "{count, plural, one {Atualize a sua aplicação para vê-la.} other {Atualize a sua aplicação para vê-las.}}"
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr "{count, plural, one {}other {+ # pedidos de adesão}}"
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "{count}+"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "+ de {count} pedidos"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} verificou-te"
msgid "{following} following"
msgstr "{following} a seguir"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "{handle} não pode ser adicionado/a"
@@ -547,7 +599,7 @@ msgstr "{handle} não pode ser adicionado/a"
msgid "{handle} can't be messaged"
msgstr "Não pode enviar mensagens a {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "Não é possível enviar mensagens a {handle}"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# hora {minutesString}} other {# horas {minutesStri
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# hora} other {# horas}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "{JOIN_REQUESTS_THRESHOLD}+ novos pedidos de adesão"
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "{JOIN_REQUESTS_THRESHOLD}+ novos pedidos de adesão"
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,9 +643,9 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, one {}other {Você pode esconder um máximo de # respostas.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
-msgstr ""
+msgstr "{memberCount}/{memberLimit}"
#: src/features/liveNow/utils.ts:10
msgid "{minutes, plural, one {# minute} other {# minutes}}"
@@ -607,7 +669,7 @@ msgstr "Feeds e utilizadores favoritos de {name} - junte-se a mim!"
msgid "{name}'s starter pack"
msgstr "Pacote de iniciante de {name}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# item não lido} other {# itens não lidos}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, one {# pedido} other {# pedidos}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "{requestCount}+ pedidos"
@@ -747,7 +809,7 @@ msgstr "<0>Inicie sessão0><1> ou 1><2>crie uma conta2><3> 3><4>para pro
#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:276
msgid "<0>Tap here to update your location with GPS.0>"
-msgstr ""
+msgstr "<0>Toque aqui para atualizar a sua localização com o GPS.0>"
#. placeholder {0}: getName(items[1] /* [0] is self, skip it */)
#: src/screens/StarterPack/Wizard/index.tsx:494
@@ -795,8 +857,11 @@ msgstr "Ocorreu um erro de rede. Por favor, verifique a sua conexão à internet
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Ocorreu um erro de rede. Por favor, verifique a sua conexão à internet."
@@ -804,7 +869,7 @@ msgstr "Ocorreu um erro de rede. Por favor, verifique a sua conexão à internet
msgid "A new code has been sent"
msgstr "Um novo código foi enviado"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Uma nova forma de verificação"
@@ -827,11 +892,11 @@ msgstr "Uma captura de ecrã de uma página de perfil com um ícone de sino ao l
msgid "A screenshot of 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 "Uma captura de ecrã do compositor de publicações com um novo botão ao lado do botão post que diz \"Rascunhos\", com um efeito de fogo de artifício de arco-íris. Abaixo, o texto no compositor diz \"Oi, ouviu a notícia? O Bluesky agora tem rascunhos!!!\"."
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
-msgstr ""
+msgstr "Um destinatário selecionado não é seguido pelo remetente."
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Comportamento abusivo ou discriminatório"
msgid "Accept"
msgstr "Aceitar"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Aceitar"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Aceitar pedido de conversa"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr "Aceitar pedido de adesão"
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Aceitar Pedido"
@@ -860,17 +935,26 @@ msgstr "Aceitar Pedido"
msgid "Accept this language suggestion"
msgstr "Aceitar esta sugestão de idioma"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr "Conversas aceites"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr "Acesso solicitado! O proprietário do grupo irá rever o seu pedido."
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Acessibilidade"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Definições de acessibilidade"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Removeu silenciamento da conta"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Contas com um selo de verificação azul recortado <0><1/>0> podem verificar outras. Estes verificadores confiáveis são selecionados pelo Bluesky."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Atividade de outros"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Notificações de atividade"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Adicionar"
@@ -999,8 +1079,8 @@ msgstr "Adicionar conta"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Adicionar texto alternativo (opcional)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Adicionar outra conta"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Adicionar outra publicação"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Adicionar outra publicação ao fio"
@@ -1035,7 +1115,7 @@ msgstr "Adicionar palavra-passe da aplicação"
msgid "Add App Password"
msgstr "Adicionar Palavra-passe da Aplicação"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "Adicionar rótulo de automação à conta"
@@ -1043,7 +1123,7 @@ msgstr "Adicionar rótulo de automação à conta"
msgid "Add emoji reaction"
msgstr "Adicionar reação de emoji"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Adicionar membros à conversa de grupo"
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Adicionar conteúdo multimédia à publicação"
@@ -1062,8 +1142,8 @@ msgstr "Adicionar conteúdo multimédia à publicação"
msgid "Add members"
msgstr "Adicionar membros"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Adicionar mais detalhes (opcional)"
@@ -1080,8 +1160,8 @@ msgstr "Adicionar palavra silenciada com as definições escolhidas"
msgid "Add muted words and tags"
msgstr "Adicionar palavras/etiquetas bloqueadas"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "A adicionar membros à lista..."
msgid "Additional details (limit 1000 characters)"
msgstr "Detalhes adicionais (máximo de 1000 caracteres)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Detalhes adicionais (limite de 300 caracteres)"
@@ -1228,12 +1308,12 @@ msgstr "O inquérito de verificação de idade foi enviado"
msgid "Age assurance only takes a few minutes"
msgstr "A verificação de idade demora apenas alguns minutos"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@exemplo.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Tudo"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "Todas {0}"
@@ -1278,13 +1358,13 @@ msgstr "Permitir acesso às suas mensagens diretas"
msgid "Allow anyone to reply"
msgstr "Permitir que qualquer pessoa responda"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "Permitir mensagens de"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr "Permitir convites para conversas de grupo de"
@@ -1338,12 +1418,12 @@ msgstr "Já possui uma conta?"
msgid "Already signed in as @{0}"
msgstr "Já iniciou sessão como @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Texto Alternativo"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "O texto alternativo descreve conteúdo multimédia para utilizadores de visão reduzida ou cegos, e ajuda a dar contexto para todos."
@@ -1387,7 +1467,7 @@ msgstr "Ocorreu um erro"
msgid "An error occurred"
msgstr "Ocorreu um erro"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Ocorreu um erro ao comprimir o vídeo."
@@ -1432,11 +1512,11 @@ msgstr "Ocorreu um erro enquanto guardava o Código QR!"
msgid "An error occurred while trying to follow all"
msgstr "Ocorreu um erro enquanto tentava seguir todos"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "Ocorreu um erro ao carregar o vídeo. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "Ocorreu um erro ao carregar o vídeo. Por favor, verifique a sua conexão à internet e tente novamente."
@@ -1461,21 +1541,21 @@ msgstr "Uma ilustração de várias publicações do Bluesky ao lado dos ícones
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Uma imagem a mostrar que o Bluesky seleciona verificadores confiáveis e, por sua vez, verificadores confiáveis verificam contas de utilizadores individuais."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "Um link de convite permite que pessoas entrem nesta conversa de grupo sem serem adicionadas diretamente. Quem pode usar o link e se eles precisam da sua aprovação é controlado por si. Pode desativar o link a qualquer momento."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr "Um link de convite permite que pessoas entrem nesta conversa de grupo sem serem adicionadas diretamente. O controlo de quem pode entrar na conversa é seu. Pode desativar o link a qualquer momento."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Um problema não incluído nestas opções"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
-msgstr ""
+msgstr "Ocorreu um problema ao criar a conversa de grupo. Por favor, tente novamente."
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
-msgstr ""
+msgstr "Ocorreu um problema ao iniciar a conversa. Por favor, tente novamente."
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
msgid "An issue occurred while trying to open the chat"
@@ -1490,7 +1570,7 @@ msgstr "Ocorreu um problema ao tentar abrir a conversa"
msgid "An issue occurred, please try again."
msgstr "Ocorreu um problema, tente novamente."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Uma réplica de um iPhone a mostrar a aplicação Bluesky aberta no perfil de um utilizador verificado com um selo de verificação azul ao lado do seu nome de exibição."
@@ -1539,13 +1619,17 @@ msgstr "Todos"
msgid "Anyone can interact"
msgstr "Qualquer um pode interagir"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr "Qualquer pessoa pode aderir"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "Qualquer pessoa pode entrar instantaneamente"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "Qualquer pessoa pode pedir para se juntar"
@@ -1555,11 +1639,11 @@ msgstr "Qualquer pessoa pode pedir para se juntar"
msgid "Anyone who follows me"
msgstr "Qualquer um que me segue"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr "Qualquer pessoa que o tenha deixará de poder entrar ou pedir para entrar. Pode sempre criar um novo."
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "A palavra-passe da aplicação deve conter pelo menos 4 caracteres"
msgid "App passwords"
msgstr "Palavras-passe da Aplicação"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Palavras-passe da Aplicação"
@@ -1618,7 +1702,7 @@ msgstr "Recorrer da suspensão da transmissão ao vivo"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Recurso submetido"
@@ -1632,14 +1716,14 @@ msgstr "Recorrer da suspensão"
msgid "Appeal Suspension"
msgstr "Recorrer da Suspensão"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Recorrer desta decisão"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "Tem mesmo a certeza?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Tem a certeza que deseja eliminar a palavra-passe da aplicação \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Tem a certeza de que deseja eliminar esta mensagem? A mensagem será eliminada para si, mas não para os outros participantes."
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "Tem a certeza de que deseja sair de {groupName}?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr "Tem a certeza que deseja sair desta conversa?"
-#: 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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr "Tem a certeza de que quer sair desta conversa? As suas mensagens serão eliminadas para si, mas não para os outros participantes."
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Tem a certeza que deseja descartar esta publicação?"
@@ -1752,7 +1836,7 @@ msgstr "Conta automatizada"
msgid "Automation label"
msgstr "Rótulo de automação"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "Rótulo de Automação"
@@ -1767,12 +1851,12 @@ msgstr "Reproduzir vídeos e GIFs automaticamente"
msgid "Available"
msgstr "Disponível"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Disponível"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Disponível"
msgid "Back"
msgstr "Voltar"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Voltar às Conversas"
@@ -1840,12 +1926,12 @@ msgstr "Antes de poder aceitar este pedido de conversa, precisa de verificar o s
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Antes de poder receber notificações de publicações de {name}, primeiro tem de confirmar o seu e-mail."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Antes de poder enviar mensagens a outro utilizador, precisa de verificar o seu e-mail."
@@ -1877,7 +1963,7 @@ msgstr "Aniversário"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "Bloquear {displayName}"
msgid "Block account"
msgstr "Bloquear conta"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Bloquear conta?"
@@ -1912,15 +1998,15 @@ msgstr "Bloquear conta?"
msgid "Block accounts"
msgstr "Bloquear contas"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
-msgstr ""
+msgstr "Bloquear e apagar"
#. After-report action for a conversation
#: src/components/dms/AfterReportConversationDialog.tsx:167
msgctxt "button"
msgid "Block and leave"
-msgstr ""
+msgstr "Bloquear e sair"
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
msgid "Block list"
@@ -1936,9 +2022,9 @@ msgstr "Bloquear estas contas?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Bloquear utilizador"
@@ -1946,17 +2032,17 @@ msgstr "Bloquear utilizador"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Bloquear utilizador"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Bloquear utilizador e/ou eliminar esta conversa"
#: src/components/dms/AfterReportConversationDialog.tsx:217
msgid "Block user and/or leave this conversation"
-msgstr ""
+msgstr "Bloquear utilizador e/ou sair desta conversa"
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Bloqueado"
@@ -1964,13 +2050,13 @@ msgstr "Bloqueado"
msgid "Blocked accounts"
msgstr "Contas bloqueadas"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Contas Bloqueadas"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Contas bloqueadas não conseguem responder aos seus fios, mencionar ou interagir de qualquer outra forma consigo."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky é melhor com amigos!"
msgid "Bluesky is more fun with friends"
msgstr "O Bluesky é mais divertido com amigos"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "O Bluesky é mais divertido com os amigos! Importe os seus contactos para ver quem já cá está."
@@ -2053,7 +2139,7 @@ msgstr "O Bluesky escolherá um conjunto de contas recomendadas de pessoas na su
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 "O Bluesky não exibirá o seu perfil e publicações para utilizadores que não tenham sessão iniciada. Outras aplicações talvez não respeitem esta solicitação. Isto não torna a sua conta privada."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "O Bluesky irá verificar proativamente contas notáveis e autênticas."
@@ -2137,23 +2223,30 @@ msgstr "Emprego"
msgid "Button to go back to the home timeline"
msgstr "Botão para voltar à cronologia do início"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Por {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Por <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr "Por <0>{ownerDisplayName}0>"
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr "por <0>@{0}0>"
@@ -2181,7 +2274,7 @@ msgstr "Ao criar uma conta, concorda com os <0>Termos de Aplicação0>."
msgid "By you"
msgstr "Por si"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Câmara"
@@ -2192,8 +2285,8 @@ msgstr "Câmara"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Câmara"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Câmara"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Cancelar"
@@ -2248,9 +2341,9 @@ msgstr "Cancelar reativação e terminar sessão"
msgid "Cancel search"
msgstr "Cancelar pesquisa"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Não pode interagir com um utilizador bloqueado"
@@ -2264,7 +2357,7 @@ msgstr "Legendas (.vtt)"
msgid "Captions & alt text"
msgstr "Legendas e texto alternativo"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "carrossel"
@@ -2297,7 +2390,7 @@ msgstr "Alterar idioma da aplicação"
msgid "Change Handle"
msgstr "Alterar Nome de Utilizador"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Alterar serviço de moderação"
@@ -2310,11 +2403,11 @@ msgstr "Alterar palavra-passe"
msgid "Change password dialog"
msgstr "Janela de diálogo de alteração da palavra-passe"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Alterar categoria da denúncia"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Alterar motivo da denúncia"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Alterações ao pacote de iniciante não se irão refletir na lista após a sua criação. A lista será uma cópia independente."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Conversas"
@@ -2361,6 +2454,13 @@ msgstr "Conversa eliminada"
msgid "Chat ended"
msgstr "Conversa encerrada"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr "O link de convite para a conversa já não está disponível"
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "Conversa trancada"
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Conversa silenciada"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
-msgstr ""
+msgstr "O destinatário da conversa não é seguido pelo remetente."
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Caixa de pedidos de conversa"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Pedidos de conversa"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Definições da conversa"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Definições da Conversa"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Removeu o silenciamento da conversa"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Conversas"
@@ -2479,7 +2579,7 @@ msgstr "Escolher idiomas da publicação"
msgid "Choose this color as your avatar"
msgstr "Escolher esta cor como a sua foto de perfil"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "Escolha quem pode entrar nesta conversa de grupo e como."
@@ -2533,7 +2633,7 @@ msgstr "Clique para mais informação"
msgid "click here"
msgstr "clique aqui"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "Clique aqui para adicionar pessoas a esta conversa de grupo"
@@ -2541,7 +2641,7 @@ msgstr "Clique aqui para adicionar pessoas a esta conversa de grupo"
msgid "Click here to contact our support team"
msgstr "Clique aqui para contactar a nossa equipa de suporte"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "Clique aqui para criar ou gerir um link de convite para esta conversa de grupo"
@@ -2558,7 +2658,7 @@ msgstr "Clique aqui para terminar sessão"
msgid "Click here to resend the email"
msgstr "Clique aqui para reenviar o e-mail"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Clique aqui para reiniciar o processo de verificação."
@@ -2567,11 +2667,11 @@ msgstr "Clique aqui para reiniciar o processo de verificação."
msgid "Click here to update your birthdate"
msgstr "Clique aqui para atualizar a sua data de nascimento"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Clique aqui para atualizar o seu e-mail"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "Clique aqui para ver o link de convite para esta conversa de grupo"
@@ -2580,7 +2680,7 @@ msgstr "Clique aqui para ver o link de convite para esta conversa de grupo"
msgid "Click to open tag menu for {0}"
msgstr "Clique para abrir o menu de tags para {0}"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Clique para reenviar a mensagem falha"
@@ -2594,28 +2694,30 @@ msgstr "Clique para reenviar a mensagem falha"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Clique para reenviar a mensagem falha"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Fechar janela de diálogo em execução"
msgid "Close alert"
msgstr "Fechar aviso"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr "Fechar banner"
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Fechar parte inferior"
@@ -2657,8 +2763,9 @@ msgstr "Fechar parte inferior"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Fechar janela de diálogo"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Fechar imagem"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Fechar visualizador de imagens"
@@ -2683,6 +2790,14 @@ msgstr "Fechar visualizador de imagens"
msgid "Close menu"
msgstr "Fechar menu"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr "Fechar o banner de pedidos de adesão"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Fechar esta janela de diálogo"
@@ -2695,7 +2810,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:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Fecha o compositor de publicação e descarta o rascunho de publicação"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Banda Desenhada"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Diretrizes da Comunidade"
@@ -2740,12 +2855,12 @@ msgstr "Conclua o desafio"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Escrever nova publicação"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Compor publicações com até {0, plural, other {# caracteres}} de comprimento"
@@ -2753,11 +2868,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:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "A comprimir GIF..."
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "A comprimir vídeo..."
@@ -2780,7 +2895,7 @@ msgstr "Configurado nas <0>definições de moderação0>."
msgid "Confirm"
msgstr "Confirmar"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Conteúdo e Multimédia"
msgid "Content and media"
msgstr "Conteúdo e multimédia"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Conteúdo e Multimédia"
@@ -2889,7 +3004,7 @@ msgstr "Backdrop do menu de contexto, toque para fechar o ecrã."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Continuar fio"
msgid "Continue thread..."
msgstr "Continuar fio..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Continuar para o nome do grupo"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Continuar para o próximo passo"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Conversa"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Conversa eliminada"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversa eliminada"
@@ -2939,13 +3054,20 @@ msgstr "Conversa eliminada"
#: src/components/dms/AfterReportConversationDialog.tsx:179
msgctxt "toast"
msgid "Conversation left"
-msgstr ""
+msgstr "Saiu da conversa"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr "Conversa não encontrada."
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Versão de compilação copiada para a área de transferência"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Copiar DID"
msgid "Copy host"
msgstr "Copiar host"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Copiar link para o perfil"
msgid "Copy link to starter pack"
msgstr "Copiar link para pacote de iniciante"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Copiar texto da mensagem"
@@ -3052,7 +3175,7 @@ msgstr "Copiar valor de registo TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Política de Direitos de Autor"
@@ -3065,7 +3188,7 @@ msgstr "Não foi possível conectar com o feed personalizado"
msgid "Could not connect to feed service"
msgstr "Não foi possível conectar com o serviço do feed"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr "Não foi possível recuperar a publicação"
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Não foi possível seguir todas as correspondências. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Não foi possível sair da conversa"
@@ -3094,6 +3217,10 @@ msgstr "Não foi possível sair da conversa"
msgid "Could not load feed"
msgstr "Não foi possível carregar o feed"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr "Não foi possível carregar o convite"
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Código do país"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Criar"
@@ -3159,7 +3286,7 @@ msgstr "Criar um código QR para um pacote de iniciante"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Criar um pacote de iniciante"
@@ -3174,13 +3301,14 @@ msgstr "Criar um pacote de iniciante para mim"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Criar uma conta"
msgid "Create an account without using this starter pack"
msgstr "Criar uma conta sem usar este pacote de iniciante"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Criar uma foto de perfil"
@@ -3206,7 +3334,7 @@ msgstr "Criar uma foto de perfil"
msgid "Create another"
msgstr "Criar outra"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Criar conversa de grupo"
@@ -3228,19 +3356,20 @@ msgstr "Criar lista a partir de pacote de iniciante"
msgid "Create moderation list"
msgstr "Criar lista de moderação"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Criar conta nova"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr "Criar ou modificar um link de convite para esta conversa de grupo"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Criar um relatório para {0}"
@@ -3256,8 +3385,8 @@ msgstr "Criar lista de utilizadores"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Criado {0}"
@@ -3341,7 +3470,7 @@ msgstr "Padrão"
msgid "Default icons"
msgstr "Ícones padrões"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Eliminar registo da conversa"
msgid "Delete contacts"
msgstr "Apagar contactos"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Eliminar conversa"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Eliminar para mim"
@@ -3399,11 +3528,11 @@ msgstr "Eliminar para mim"
msgid "Delete list"
msgstr "Eliminar lista"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Eliminar mensagem"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Eliminar mensagem para mim"
@@ -3413,7 +3542,7 @@ msgstr "Eliminar a minha conta"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Eliminar publicação"
@@ -3434,12 +3563,12 @@ msgstr "Eliminar esta lista?"
msgid "Delete this post?"
msgstr "Eliminar esta publicação?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Eliminado"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Conta Eliminada"
@@ -3507,13 +3636,13 @@ msgstr "Janela de diálogo: ajustar quem pode interagir com esta publicação"
msgid "Dim"
msgstr "Escuro"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Desativar"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Desativar 2FA"
@@ -3521,7 +3650,7 @@ msgstr "Desativar 2FA"
msgid "Disable captions"
msgstr "Desativar legendas"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Desativar 2FA por e-mail"
@@ -3534,8 +3663,8 @@ msgstr "Desativar 2FA por e-mail"
msgid "Disable haptic feedback"
msgstr "Desativar feedback tátil"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr "Desativar link"
@@ -3547,7 +3676,7 @@ msgstr "Desativar citações desta publicação"
msgid "Disable replies entirely"
msgstr "Desativar respostas completamente"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "Desativar este link de convite?"
@@ -3560,9 +3689,9 @@ msgstr "Desativado"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Descartar"
msgid "Discard changes?"
msgstr "Descartar alterações?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Descartar rascunho?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Descartar publicação?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Desconectar Germ DM"
@@ -3613,11 +3742,11 @@ msgstr "Descobrir Feeds Novos"
msgid "Dismiss"
msgstr "Ignorar"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Ignorar banner"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Ignorar falha"
@@ -3673,7 +3802,7 @@ msgstr "Não inclui nudez."
msgid "Domain verified!"
msgstr "Domínio verificado!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Não tem um código ou precisa de um novo? <0>Clique aqui.0>"
@@ -3681,7 +3810,7 @@ msgstr "Não tem um código ou precisa de um novo? <0>Clique aqui.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Não vê um código? <0>Clique aqui para reenviar.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Não vê um e-mail? <0>Clique aqui para reenviar.0>"
@@ -3700,16 +3829,19 @@ msgstr "Não se preocupe! Todas as mensagens e configurações existentes serão
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Concluído"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Toque duplo ou toque prolongadamente a mensagem para adicionar uma reação"
@@ -3741,15 +3873,6 @@ msgstr "Toque duplo para dar um gosto"
msgid "Download Bluesky"
msgstr "Transferir Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Transferir ficheiro CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Transferir ficheiro CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Descarregar dados de conversas"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Descarregar dados de conversas"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Descarregar imagem"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr "Descarregar dados do perfil"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr "Descarregar dados do perfil"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Doxxing"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "p. ex. Utilizadores que repetidamente respondem com anúncios."
msgid "Eating disorders"
msgstr "Desordens alimentares"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Editar"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Editar foto de perfil"
@@ -3847,14 +3978,14 @@ msgstr "Editar foto de perfil"
msgid "Edit Feeds"
msgstr "Editar feeds"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Editar nome do grupo"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Editar imagem"
@@ -3868,7 +3999,16 @@ msgstr "Editar definições de interação"
msgid "Edit interests"
msgstr "Editar interesses"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr "Editar link de convite"
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr "Editar link de convite"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "Editar definições do link"
@@ -3886,20 +4026,15 @@ msgstr "Editar estado \"em direto\""
msgid "Edit moderation list"
msgstr "Editar lista de moderação"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Editar os Meus Feeds"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "Editar nome"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Editar notificações de {0}"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Editar Pessoas"
@@ -3925,7 +4060,7 @@ msgstr "Editar Perfil"
msgid "Edit starter pack"
msgstr "Editar pacote de iniciante"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "Editar nome da conversa de grupo"
@@ -3937,7 +4072,7 @@ msgstr "Editar lista de utilizadores"
msgid "Edit who can reply"
msgstr "Editar quem pode responder"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Editar o seu pacote de iniciante"
@@ -3971,7 +4106,7 @@ msgstr "Endereço de e-mail"
msgid "Email Resent"
msgstr "E-mail reenviado"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "E-mail enviado!"
@@ -4006,8 +4141,8 @@ msgstr "Incorpore esta publicação no seu site. Simplesmente copie o seguinte e
msgid "Embedded video player"
msgstr "Reprodutor de vídeos incorporado"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Ativar"
@@ -4025,7 +4160,7 @@ msgstr "Permitir conteúdo adulto"
msgid "Enable captions"
msgstr "Ativar legendas"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Ativar 2FA por e-mail"
@@ -4038,13 +4173,12 @@ msgstr "Permitir conteúdo multimédia externo"
msgid "Enable media players for"
msgstr "Permitir reprodutores de multimédia para"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Ative as notificações de uma conta visitando o perfil desta e pressionando o <0>ícone de sino0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Ativar notificações push"
@@ -4091,8 +4225,8 @@ msgstr "Insira uma palavra-passe"
msgid "Enter a word or tag"
msgstr "Insira uma palavra ou tag"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Insira o código"
@@ -4143,7 +4277,7 @@ msgstr "Entra em ecrã cheio"
msgid "Entertainment"
msgstr "Entretenimento"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Erro"
@@ -4185,23 +4319,23 @@ msgstr "Todos podem responder"
msgid "Everybody can reply to this post."
msgstr "Todos podem responder a esta publicação."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Todos"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Todos"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Todos"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Tudo o resto"
@@ -4217,8 +4351,8 @@ msgstr "Exclui utilizadores que sigo"
msgid "Exit fullscreen"
msgstr "Sair do ecrã cheio"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Expandir texto alternativo"
@@ -4226,7 +4360,7 @@ msgstr "Expandir texto alternativo"
msgid "Expand list of users"
msgstr "Expandir lista de utilizadores"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Expandir ou colapsar a publicação completa a que está a responder"
@@ -4238,7 +4372,7 @@ msgstr "Expandir texto da publicação"
msgid "Expands or collapses post text"
msgstr "Expande ou colapsa o texto da publicação"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Era esperado que o URI fosse resolvido para um registo"
@@ -4277,9 +4411,9 @@ msgstr "Conteúdo multimédia explícito ou perturbador."
msgid "Explicit sexual images."
msgstr "Imagens sexuais explícitas."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Explorar"
@@ -4289,11 +4423,8 @@ msgstr "Explorar"
msgid "Explore the app"
msgstr "Explorar a aplicação"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr "Descarregar dados de conversas"
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "Descarregar dados das minhas conversas"
@@ -4322,7 +4453,7 @@ msgstr "Conteúdo Multimédia Externo"
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 "O conteúdo multimédia externo pode permitir que sites recolham informações sobre si ou o seu dispositivo. Nenhuma informação é enviada ou solicitada até pressionar o botão \"Reproduzir\"."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Preferências de Conteúdo Multimédia Externo"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Falha ao aceitar solicitação de conversa"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr "Falha ao aceitar pedido de adesão"
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Falha ao adicionar reação de emoji"
@@ -4354,7 +4489,7 @@ msgstr "Falha ao adicionar ao pacote de iniciante"
msgid "Failed to change handle. Please try again."
msgstr "Falha ao tentar alterar nome de utilizador. Tente novamente."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "Falha ao copiar o link"
@@ -4367,7 +4502,7 @@ msgstr "Falha ao criar uma palavra-passe da aplicação. Tente novamente."
msgid "Failed to create conversation"
msgstr "Falha ao criar conversa"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "Falha ao criar link de convite"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Falha ao eliminar conversa"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Falha ao eliminar mensagem"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "Falha ao desativar link de convite"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Falha ao desconectar Germ DM. Erro: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "Falha ao editar o nome da conversa de grupo"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "Falha ao editar link de convite"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "Falha ao ativar o link de convite"
@@ -4427,19 +4562,27 @@ msgstr "Falha ao seguir todos os seus amigos. Por favor, tente novamente"
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "Falha ao ocultar sugestão. Por favor, verifique a sua conexão à internet"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr "Falha ao ignorar pedido de adesão"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr "Falha ao entrar na conversa de grupo. Por favor, tente novamente."
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "Falha ao iniciar a aplicação de SMS"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "Falha ao sair da conversa de grupo"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Falha ao carregar as conversas"
@@ -4456,17 +4599,8 @@ msgstr "Falha ao carregar feeds"
msgid "Failed to load feeds preferences"
msgstr "Falha ao carregar preferências de feeds"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Falha ao carregar definições de notificações."
@@ -4493,16 +4627,15 @@ msgstr "Falha ao carregar feeds sugeridos"
msgid "Failed to load suggested follows"
msgstr "Falha ao carregar contas sugeridas"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "Falha ao trancar a conversa de grupo"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Falha ao marcar todas as solicitações como lidas"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "Falha ao silenciar conversa de grupo"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Falha ao afixar a publicação"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Falha ao reconectar Germ DM. Erro: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Falha ao remover dados. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Falha ao remover reação emoji"
@@ -4542,15 +4675,19 @@ msgstr "Falha ao remover membro da conversa de grupo"
msgid "Failed to remove verification"
msgstr "Falha ao remover verificação"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr "Falha ao rescindir o seu pedido. Por favor, tente novamente."
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr "Falha ao determinar localização. Por favor, tente novamente."
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Falha ao guardar rascunho"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "Falha ao guardar a imagem"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Falha ao guardar os seus interesses."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Falha ao enviar o e-mail. Por favor, tente novamente."
@@ -4580,7 +4717,7 @@ msgstr "Falha ao enviar o relatório"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Falha ao submeter recurso. Por favor, tente novamente."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Falha ao alterar o estado de silenciamento do fio de discussão, por favor tente novamente"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr "Falha ao destrancar a conversa de grupo"
@@ -4597,12 +4734,12 @@ msgstr "Falha ao destrancar a conversa de grupo"
msgid "Failed to unpin list"
msgstr "Falha ao desafixar lista"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Falha ao atualizar as definições de 2FA por e-mail"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Falha ao atualizar o e-mail. Por favor, tente novamente."
@@ -4614,7 +4751,7 @@ msgstr "Falha ao atualizar feeds"
msgid "Failed to update notification declaration"
msgstr "Falha ao atualizar declaração de notificação"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Falha ao atualizar definições"
@@ -4641,7 +4778,7 @@ msgstr "Conta falsa ou bot"
msgid "False information about elections"
msgstr "Informação falsa sobre eleições"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Feed"
@@ -4649,7 +4786,7 @@ msgstr "Feed"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Feed por {0}"
@@ -4662,7 +4799,7 @@ msgstr "Criador do feed"
msgid "Feed identifier"
msgstr "Identificador do feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Menu de feed"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Feedback enviado ao operador do feed"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Feeds"
@@ -4739,7 +4876,7 @@ msgstr "Filtrar pesquisa por idioma (atualmente: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Filtrar quem pode optar por receber notificações da sua atividade"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Filtrar de quem você recebe notificações"
@@ -4747,11 +4884,11 @@ msgstr "Filtrar de quem você recebe notificações"
msgid "Finalizing"
msgstr "A finalizar"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Finalmente!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Finanças"
msgid "Find accounts to follow"
msgstr "Encontrar contas para seguir"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Encontrar Contactos"
@@ -4799,7 +4936,7 @@ msgstr "Encontrar pessoas para seguir"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Procure publicações, utilizadores, e feeds no Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Encontre os seus amigos"
@@ -4944,8 +5081,12 @@ msgstr "Seguido por <0>{0}0> e <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Seguido por <0>{0}0>, <1>{1}1> e {2, plural, one {# outro} other {# outros}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr "Seguidores podem aderir"
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Seguidores de @{0} que conhece"
@@ -4995,19 +5136,16 @@ msgstr "A seguir {handle}"
msgid "Following feed preferences"
msgstr "Preferências do feed A seguir"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Preferências do feed A seguir"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Segue-te"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Segue-te"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Tipo de letra"
@@ -5069,7 +5207,7 @@ msgstr "Esqueceu?"
msgid "Free your feed"
msgstr "Liberte o seu feed"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "De"
@@ -5086,35 +5224,35 @@ msgstr "De <0/>"
msgid "Generate a starter pack"
msgstr "Gerar um pacote de iniciante"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Gerar link de convite"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Gerar novo link de convite"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Gerar novo link"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germ DM desconectada"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Link Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germ DM reconectada"
@@ -5122,46 +5260,50 @@ msgstr "Germ DM reconectada"
msgid "Get help"
msgstr "Obter ajuda"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr "Receber notificações de adesões através de pacotes de iniciante, verificação e outra atividade."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Receber notificações quando pessoas te seguirem."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Receber notificações quando pessoas gostarem de publicações que tenha republicado."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Receber notificações quando pessoas gostarem das suas publicações."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr "Receber notificações quando as pessoas gostarem das suas republicações."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Receber notificações quando pessoas te mencionarem."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Receber notificações quando pessoas citarem suas publicações."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Receber notificações quando pessoas responderem às suas publicações."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Receber notificações quando pessoas republicarem publicações que tenha republicado."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Receber notificações quando pessoas republicarem as suas publicações."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr "Receber notificações quando as pessoas republicarem as suas republicações."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr "Receber notificações quando houver atividade em publicações subscrevidas por si."
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Receber notificações de novas publicações"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Receber notificações de publicações e respostas de contas que escolher."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Receber notificações de novas publicações de {name}"
@@ -5174,27 +5316,27 @@ msgstr "Receber notificações da atividade desta conta"
msgid "Get notified when {name} posts"
msgstr "Receber notificações quando {name} fizer uma publicação"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Receber notificações quando alguém fizer uma publicação"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Vamos começar"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIF carregado"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Dê um rosto ao seu perfil"
@@ -5213,20 +5355,21 @@ msgstr "Glorificação de violência"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Voltar"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Voltar"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Voltar ao passo anterior"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Ir para o início"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Ir para o início"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Ir para o Início"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Ir para as definições da conta"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Ir para a conversa com {0}"
@@ -5299,12 +5440,12 @@ msgstr "Ir para o próximo"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Ir para o perfil"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "Ir para a conversa de grupo chamada \"{chatName}\""
@@ -5320,8 +5461,8 @@ msgstr "Ir para o perfil do utilizador"
msgid "Going live is currently disabled for your account"
msgstr "A funcionalidade \"Entrar em direto\" está desativada para a sua conta"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Entendido"
@@ -5340,59 +5481,75 @@ msgstr "Conteúdo violento gráfico"
msgid "Grooming or predatory behavior"
msgstr "Grooming ou comportamento predatório"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr "Conversa de grupo"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "Janela de diálogo do link de convite para a conversa de grupo"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "Conversa de grupo trancada"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "Conversa de grupo silenciada"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr "Nome da conversa de grupo atualizado"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "Definições de conversa de grupo"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "Conversa de grupo destrancada"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "Removeu o silenciamento da conversa de grupo"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr "Conversas de grupo ainda não estão disponíveis"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr "Conversas de grupo já estão disponíveis"
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr "As conversas de grupo podem ter no máximo {0, plural, one {}other {# pessoas}}."
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "O grupo está trancado"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Nome do grupo"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr "O nome do grupo é demasiado longo. O número máximo de caracteres é {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Hacking ou ataques de sistema"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Nome de utilizador demasiado longo. Por favor, tente um mais curto."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "A acontecer agora"
@@ -5446,7 +5603,7 @@ msgstr "Atividades perigosas ou de alto risco"
msgid "Harming or endangering minors"
msgstr "Prejudicar ou colocar menores em perigo"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Hashtag"
@@ -5458,14 +5615,14 @@ msgstr "Hashtag {tag}"
msgid "Hate speech"
msgstr "Discurso de ódio"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Tem um código? <0>Clique aqui.0>"
#: src/screens/Signup/StepInfo/index.tsx:320
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
-msgstr ""
+msgstr "A sua localização está errada? <0>Toque aqui para atualizar a sua localização com o GPS.0>"
#: src/screens/Signup/index.tsx:231
msgid "Having trouble?"
@@ -5483,7 +5640,7 @@ msgstr "Retido pelo Bluesky por 7 dias para evitar abusos, e depois eliminado"
msgid "Help"
msgstr "Ajuda"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Carregue uma foto de perfil para ajudar as pessoas a saber que não é um bot."
@@ -5652,18 +5809,18 @@ msgstr "Hmmmm, parece que estamos com dificuldade em carregar estes dados. Veja
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmmm, não foi possível carregar esse serviço de moderação."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Aguarde! Estamos a dar acesso a vídeo gradualmente e ainda está em fila de espera. Volte mais tarde!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Esta funcionalidade ainda não está disponível para si. Por favor, volte mais tarde."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Início"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
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"
@@ -5757,7 +5914,7 @@ msgstr "Se eliminar esta lista, não será capaz de a recuperar."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Se tiver o seu próprio domínio, pode usá-lo como nome de utilizador. Isso permite-lhe auto-verificar a sua identidade. <0>Saiba mais aqui.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Se precisa de atualizar o seu e-mail, <0>clique aqui0>."
@@ -5765,7 +5922,7 @@ msgstr "Se precisa de atualizar o seu e-mail, <0>clique aqui0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Se remover esta publicação, não será capaz de a recuperar."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Se atualizar o seu endereço de e-mail, a 2FA por e-mail será desativada."
@@ -5773,7 +5930,6 @@ msgstr "Se atualizar o seu endereço de e-mail, a 2FA por e-mail será desativad
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Se pretende alterar a sua palavra-passe, vamos enviar-lhe um código para verificar que esta é a sua conta."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Se quer restringir quem pode receber notificações da atividade da sua conta, pode alterar isso em <0>Definições → Privacidade e Segurança0>."
@@ -5786,23 +5942,33 @@ msgstr "Se é programador, pode hospedar o seu próprio servidor."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr "Ignorar"
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr "Ignorar pedido de adesão"
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Imagem"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "Imagem {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Imagem {0} de {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "Imagem {0} de {imageCount}"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Cache de imagem limpa, {0} libertado"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "Galeria de imagens, {0} imagens"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "A imagem está oculta devido às suas definições de moderação."
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "Imagem indisponível."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Opções de imagem"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Impersonação"
msgid "Import contacts"
msgstr "Importar contactos"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Importar Contactos"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Importe contactos para encontrar os seus amigos"
@@ -5881,40 +6047,40 @@ msgstr "Importado em {0}"
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 "De modo a fornecer uma experiência apropriada à sua idade, precisamos de saber a sua data de nascimento. Isto só lhe será pedido uma vez, e os seus dados serão mantidos privados."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "Na aplicação"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Notificações na aplicação"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "Na aplicação, Todos"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr "Na aplicação, de todos"
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "Na aplicação, Pessoas que segue"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr "Na aplicação, de pessoas que sigo"
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "Na aplicação, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr "Na aplicação, push"
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "Na aplicação, Push, Todos"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr "Na aplicação, push, de todos"
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "Na aplicação, Push, Pessoas que segue"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr "Na aplicação, push, de pessoas que sigo"
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "Caixa de entrada vazia"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Caixa de entrada vazia!"
@@ -5963,6 +6129,10 @@ msgstr "Introduzindo publicações guardadas"
msgid "Invalid 2FA confirmation code."
msgstr "Código de confirmação de 2FA inválido."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr "Código de conversa de grupo inválido."
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Nome de utilizador inválido. Por favor, tente um diferente."
@@ -5977,10 +6147,14 @@ msgstr "Definições de interação inválidas."
msgid "Invalid phone number"
msgstr "Número de telefone inválido"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Motivo de denúncia inválido"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr "Pedido de rescisão inválido."
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Código de Verificação Inválido"
@@ -6010,12 +6184,12 @@ msgstr "Convide Amigos"
msgid "Invite friends <0/>"
msgstr "Convide amigos <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Link de convite"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "Link de convite criado"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "Link de convite desativado"
@@ -6054,7 +6228,7 @@ msgstr "Convites, mas pessoais"
#: src/ageAssurance/components/NoAccessScreen.tsx:394
msgid "Is your location not accurate? <0>Tap here to update your location with GPS.0> "
-msgstr ""
+msgstr "A sua localização não está suficientemente precisa? <0>Toque aqui para atualizar a sua localização com o GPS.0> "
#: src/components/contacts/components/InviteInfo.tsx:47
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."
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "De momento é só você! Adicione mais pessoas ao seu pacote de iniciante pesquisando acima."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID do trabalho: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID do trabalho: {0}"
msgid "Jobs"
msgstr "Empregos"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr "Aderir"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Empregos"
msgid "Join Bluesky"
msgstr "Junte-se ao Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr "Aderir à conversa de grupo"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr "Pedido de adesão rescindido."
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Junte-se à conversa"
msgid "Journalism"
msgstr "Jornalismo"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Continuar a editar"
@@ -6143,7 +6331,7 @@ msgstr "Rótulos na sua conta"
msgid "Labels on your content"
msgstr "Rótulos no seu conteúdo"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Definições de Idioma"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Mais recentes"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Saiba mais sobre este aviso"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Saiba mais sobre a verificação no Bluesky (em inglês)"
@@ -6239,7 +6427,7 @@ msgstr "Saiba mais sobre a verificação no Bluesky (em inglês)"
msgid "Learn more about what is public on Bluesky."
msgstr "Saiba mais sobre o que é público no Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Saiba mais sobre o seu link Germ DM"
@@ -6252,8 +6440,8 @@ msgstr "Saiba mais nas suas <0>definições de conta.0>"
msgid "Learn more."
msgstr "Saber mais."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Sair"
@@ -6276,7 +6464,7 @@ msgstr "Sair da conversa"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Sair da conversa"
@@ -6284,13 +6472,13 @@ msgstr "Sair da conversa"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Sair da conversa"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "Sair da conversa de grupo"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr "Sair desta conversa de grupo"
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Claro"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Gosto ({0, plural, one {# gosto} other {# gostos}})"
@@ -6346,11 +6534,7 @@ msgstr "Deixe um \"gosto\" em 10 publicações"
msgid "Like 10 posts to train the Discover feed"
msgstr "Deixe um \"gosto\" em 10 publicações para ajudar a treinar o seu feed \"Descobrir\""
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Notificações de gostos"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Gostar deste feed"
@@ -6358,8 +6542,8 @@ msgstr "Gostar deste feed"
msgid "Like this labeler"
msgstr "Gostar deste rotulador"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Gostado por"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Gostado por {0, plural, one {# utilizador} other {# utilizadores}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Gostado por {likeCount, plural, one {# utilizador} other {# utilizadores}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Gostos"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Gostos das suas republicações"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Notificações de gostos nas suas republicações"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Gostos nesta publicação"
@@ -6409,11 +6589,11 @@ msgstr "Gostos nesta publicação"
msgid "Linear"
msgstr "Linear"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "Link copiado para área de transferência"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Lista"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Silenciamento da lista removido "
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listas"
@@ -6545,7 +6725,7 @@ msgstr "Evento ao vivo a ser exibido"
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."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "A funcionalidade \"Entrar em direto\" está em beta"
@@ -6595,27 +6775,27 @@ msgstr "A carregar definições de interação da publicação..."
msgid "Loading..."
msgstr "A carregar..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "Trancar"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "Trancar conversa de grupo"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "Trancar conversa de grupo?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "Trancar esta conversa de grupo"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "Trancada"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Registo"
@@ -6662,7 +6842,7 @@ msgstr "Parece que está sem um feed \"A seguir\". <0>Clique aqui para adicionar
msgid "Love GIFs"
msgstr "GIFs de amor"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Ajustar as definições de e-mail para a sua conta"
@@ -6687,9 +6867,8 @@ msgstr "Gerir definições de verificação"
msgid "Manage your muted words and tags"
msgstr "Gerir as suas palavras silenciadas e tags"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Marcar tudo como lido"
@@ -6698,13 +6877,12 @@ msgstr "Marcar tudo como lido"
msgid "Mark as read"
msgstr "Marcar como lido"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Tudo marcado como lido"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Talvez mais tarde"
@@ -6727,25 +6905,21 @@ 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."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Membros"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "Membros ainda podem ler o histórico da conversa, mas não podem enviar novas mensagens."
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Notificações de menções"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "utilizadores mencionados"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Menções"
@@ -6775,22 +6949,22 @@ msgstr "Mensagem {0}"
msgid "Message {displayName}"
msgstr "Enviar mensagem a {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Mensagem eliminada"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Mensagem eliminada"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Falha ao enviar mensagem."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Mensagem de @{0}: {1}"
@@ -6813,21 +6987,21 @@ msgstr "A mensagem é demasiado longa"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "A mensagem é demasiado longa ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Opções de mensagem"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Mensagens"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
-msgstr ""
+msgstr "As mensagens desta pessoa estão ocultas enquanto estiver bloqueado por ela."
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
-msgstr ""
+msgstr "As mensagens desta pessoa estão ocultas enquanto a estiver a bloquear."
#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101
msgctxt "Name of app icon variant"
@@ -6838,10 +7012,6 @@ msgstr "Meia-noite"
msgid "Minor harassment or bullying"
msgstr "Assédio ou bullying de menores"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Notificações diversas"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Enganador"
@@ -6850,7 +7020,7 @@ msgstr "Enganador"
msgid "Missing media"
msgstr "Conteúdo multimédia em falta"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderação"
@@ -6894,7 +7064,7 @@ msgstr "Lista de moderação atualizada"
msgid "Moderation lists"
msgstr "Listas de moderação"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Listas de Moderação"
@@ -6903,7 +7073,7 @@ msgstr "Listas de Moderação"
msgid "moderation settings"
msgstr "definições de moderação"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Estados de moderação"
@@ -6949,7 +7119,7 @@ msgstr "Filmes"
msgid "Music"
msgstr "Música"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Silenciar"
@@ -6994,7 +7164,7 @@ msgstr "Silenciar lista"
msgid "Mute these accounts?"
msgstr "Silenciar estas contas?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "Silenciar esta conversa de grupo"
@@ -7032,7 +7202,7 @@ msgstr "Silenciar fio"
msgid "Mute words & tags"
msgstr "Silenciar palavras e tags"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "Silenciado"
@@ -7040,7 +7210,7 @@ msgstr "Silenciado"
msgid "Muted accounts"
msgstr "Contas silenciadas"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Contas Silenciadas"
@@ -7108,8 +7278,8 @@ msgstr "Navega para o próximo ecrã"
msgid "Navigates to your profile"
msgstr "Navega para o seu perfil"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Precisa de denunciar uma violação de direitos de autor, uma solicitação legal ou um problema de conformidade regulatória?"
@@ -7136,34 +7306,34 @@ msgstr "{postsCount, plural, one {Nova publicação} other {Novas publicações}
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{postsCount, plural, one {Nova publicação} other {Novas publicações}} de {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Nova conversa"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "Nova conversa com {0}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "Nova conversa com {0} e {1}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "Nova conversa com {0}, {1} e {memberCount, plural, one {mais {memberCount}} other {mais {memberCount}}}."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Novo endereço de e-mail"
@@ -7174,29 +7344,25 @@ msgstr "Novo endereço de e-mail"
msgid "New Feature"
msgstr "Nova Funcionalidade"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Notificações de novo seguidor"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Novos seguidores"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "Nova conversa de grupo"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "Nova conversa de grupo"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "Nova conversa de grupo com:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Nova publicação"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Nova publicação"
@@ -7262,8 +7428,8 @@ msgstr "Notícias"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "Nenhum GIF encontrado para \"{query}\"."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "Sem GIFs para mostrar de momento. Tente novamente daqui a pouco."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Sem imagem"
@@ -7362,7 +7528,7 @@ msgstr "Já não segue {0}"
msgid "No media yet"
msgstr "Sem conteúdo multimédia ainda"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Sem mensagens ainda"
@@ -7378,12 +7544,12 @@ msgstr "Sem nome"
msgid "No notifications yet!"
msgstr "Sem notificações ainda!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Ninguém"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Ninguém"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Nenhum resultado"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Sem resultados"
@@ -7509,10 +7675,6 @@ msgstr "Imagens íntimas não consensuais"
msgid "Non-sexual Nudity"
msgstr "Nudez não sexual"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Nenhuma"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "Indisponível nesta plataforma."
msgid "Not followed by anyone you’re following"
msgstr "Não é seguido por ninguém seguido por si"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Não Encontrado"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Não está pronto para publicar? Mantenha as suas melhores ideias nos Rascunhos até o timing ser perfeito."
@@ -7548,44 +7710,31 @@ msgstr "Nota: Esta publicação é apenas visível para utilizadores com sessão
msgid "Nothing saved yet"
msgstr "Nada foi guardado ainda"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Definições de notificações"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Sons de notificações"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Notificações"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Notificações de tudo o resto, como quando alguém adere através de um dos seus pacotes de iniciante."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "agora"
@@ -7601,7 +7750,7 @@ msgstr "O número deve ser um número de telemóvel/telefone"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Desligado"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "em<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Reiniciar a introdução"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
-msgstr ""
+msgstr "Um dos destinatários selecionados não permite conversas de grupo."
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Foi bloqueado por um dos destinatários selecionados e não o pode contactar."
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "Um ou mais GIFs sem texto alternativo."
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "Uma ou mais imagens sem texto alternativo."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr "Um ou mais dos ficheiros selecionados são demasiado grandes. O tamanho máximo é {VIDEO_MAX_SIZE_MB} MB."
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Uma ou mais publicações são demasiado longas para guardar como um rascunho {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {O número máximo de caracteres é # caracter.} other {O número máximo de caracteres é # caracteres.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Um ou mais vídeos sem texto alternativo."
@@ -7685,6 +7835,26 @@ msgstr "Um ou mais vídeos sem texto alternativo."
msgid "Only {0} can reply."
msgstr "Apenas {0} pode responder."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr "Somente {0} de {1} {2, plural, one {imagem} other {imagens}} foram adicionadas; o limite é {MAX_GALLERY_IMAGES}"
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr "Apenas administradores podem aceitar pedidos de adesão."
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr "Apenas administradores podem ignorar pedidos de adesão."
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr "Apenas seguidores podem aderir a esta conversa de grupo."
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Apenas seguidores que eu sigo"
msgid "Only image files are supported"
msgstr "Apenas ficheiros de imagem são suportados"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr "Apenas pessoas seguidas por {0} podem aderir."
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr "Apenas pessoas seguidas pelo proprietário da conversa podem aderir"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Apenas ficheiros WebVTT (.vtt) são suportados"
@@ -7712,7 +7892,7 @@ msgstr "Ups! Algo de errado aconteceu!"
msgid "Oops!"
msgstr "Ups!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Abrir criador de foto de perfil"
@@ -7720,12 +7900,17 @@ msgstr "Abrir criador de foto de perfil"
msgid "Open camera"
msgstr "Abrir câmara"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr "Abrir conversa"
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "Abrir opções de membro da conversa para {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Abrir opções de conversa"
@@ -7739,16 +7924,16 @@ msgstr "Abrir menu lateral"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Abrir selecionador de emojis"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Abrir ecrã de informação do feed"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Abrir menu de opções de feed"
@@ -7760,13 +7945,17 @@ msgstr "Abrir lista completa de emojis"
msgid "Open Germ DM"
msgstr "Abrir Germ DM"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr "Abrir conversa de grupo"
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "Abrir definições da conversa de grupo"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Abrir link para {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Abrir pacote"
msgid "Open post options menu"
msgstr "Abrir menu de opções de publicação"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Abrir perfil"
@@ -7817,6 +8006,10 @@ msgstr "Abrir página do storybook"
msgid "Open system log"
msgstr "Abrir registo do sistema"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr "Abrir esta conversa de grupo"
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Abre detalhes adicionais para uma entrada de debug"
msgid "Opens alt text dialog"
msgstr "Abre janela de diálogo de texto alternativo"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Abre câmara no dispositivo"
@@ -7858,22 +8051,24 @@ msgstr "Abre o compositor"
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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr "Abre a galeria do dispositivo para selecionar até {MAX_GALLERY_IMAGES, plural, one{# imagem}other {# imagens}} ou um único vídeo ou GIF."
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Abre processo para criar uma nova conta no Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
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"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Abre a imagem completa"
@@ -7890,7 +8085,7 @@ msgstr "Abre o selecionador de imagens"
msgid "Opens link {0}"
msgstr "Abre link {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Abre janela de diálogo do estado \"em direto\""
@@ -7919,9 +8114,9 @@ msgstr "Abre o compositor de publicação"
msgid "Opens this draft in the composer"
msgstr "Abre este rascunho no compositor"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Abre este perfil"
@@ -7997,12 +8192,12 @@ msgstr "A nossa publicação no blog"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "A nossa equipa de moderação recebeu a sua denúncia."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Os nossos moderadores analisaram as denúncias e decidiram desativar o seu acesso a conversas no Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Os nossos moderadores analisaram as denúncias e decidiram desativar o s
msgid "Owner"
msgstr "Proprietário"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr "O proprietário tem de trancar o grupo antes de sair."
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Página não encontrada"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Página Não Encontrada"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Pausar vídeo"
msgid "People"
msgstr "Pessoas"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "Pessoas seguidas por {ownerName} podem se juntar instantaneamente"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "Pessoas seguidas por {ownerName} podem pedir para se juntar"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Pessoas seguidas por @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Pessoas a seguir @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Pessoas que eu sigo"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "Pessoas que eu sigo podem se juntar instantaneamente"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "Pessoas que eu sigo podem pedir para se juntar"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Imagens destinadas a adultos."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Afixar feed"
@@ -8152,7 +8348,7 @@ msgstr "Afixar feed"
msgid "Pin to home"
msgstr "Afixar a início"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Afixar a Início"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Afixado"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} afixado a Início"
@@ -8236,7 +8432,7 @@ msgstr "Por favor, escolha o seu nome de utilizador."
msgid "Please choose your password."
msgstr "Por favor, escolha a sua palavra-passe."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Por favor, clique no link contido no e-mail que lhe acabamos de enviar para verificar o seu novo endereço de e-mail. Este é um passo importante para permitir que possa continuar a desfrutar de todas as funcionalidades do Bluesky."
@@ -8244,7 +8440,7 @@ msgstr "Por favor, clique no link contido no e-mail que lhe acabamos de enviar p
msgid "Please complete the verification captcha."
msgstr "Por favor complete o captcha de verificação."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Por favor, confirme o seu endereço de e-mail para carregar vídeos."
@@ -8265,14 +8461,14 @@ msgstr "Por favor, introduza uma palavra-passe. Esta deve ter pelo menos 8 carac
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Por favor, insira um nome único para esta palavra-passe de aplicação ou use um gerado aleatoriamente por nós."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Por favor, introduza um código válido."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Por favor, introduza um endereço de e-mail válido."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Por favor, insira um endereço de e-mail válido e não temporário. Pode precisar de aceder a este e-mail no futuro."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Por favor, introduza o código que enviámos para <0>{0}0> abaixo."
@@ -8293,7 +8489,7 @@ msgstr "Por favor, introduza o código que enviámos para <0>{0}0> abaixo."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Por favor, introduza o código que recebeu e a nova palavra-passe que gostaria de usar."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Por favor, introduza o código de segurança que enviámos para o seu endereço de e-mail anterior."
@@ -8306,7 +8502,7 @@ msgstr "Por favor, introduza o seu e-mail."
msgid "Please enter your invite code."
msgstr "Por favor, introduza o seu código de convite."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Por favor, introduza o seu novo endereço de e-mail."
@@ -8323,7 +8519,7 @@ msgstr "Por favor, introduza o seu nome de utilizador"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Por favor, explique por que pensa que este rótulo foi aplicado incorretamente por {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Por favor, explique por que pensa que as suas conversas foram incorretamente desativadas"
@@ -8366,7 +8562,7 @@ msgstr "Por favor, use a aplicação nativa para importar os seus contactos."
msgid "Please use the native app to sync your contacts."
msgstr "Por favor, use a aplicação nativa para sincronizar os seus contactos."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Por favor, verifique o seu e-mail"
@@ -8383,7 +8579,7 @@ msgstr "Política"
msgid "Porn"
msgstr "Pornografia"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Publicação"
@@ -8403,12 +8599,12 @@ msgstr "Publicar uma foto"
msgid "Post a video"
msgstr "Publicar um vídeo"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Publicar tudo"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Publicar mesmo assim"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Publicação bloqueada"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Publicação por @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Publicação eliminada"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Falha no carregamento da publicação. Por favor, verifique a sua conexão à internet e tente novamente."
@@ -8454,7 +8650,7 @@ msgstr "Publicação ocultada por si"
msgid "Post interaction settings"
msgstr "Definições de interação com publicação"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Definições de Interação com Publicação"
@@ -8464,8 +8660,8 @@ msgstr "Definições de Interação com Publicação"
msgid "Post language selection"
msgstr "Seleção de idioma da publicação"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Publicar link"
@@ -8491,7 +8687,6 @@ msgstr "Publicação desafixada"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "As publicações podem ser silenciadas com base no seu texto, nas suas t
msgid "Posts hidden"
msgstr "Publicações ocultas"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Publicações, Respostas"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Link potencialmente enganador"
@@ -8528,6 +8719,7 @@ msgstr "Pressione para tentar reconectar-se"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Pressione para tentar novamente"
@@ -8536,7 +8728,7 @@ msgstr "Pressione para tentar novamente"
msgid "Press to view followers of this account that you also follow"
msgstr "Pressione para ver os seguidores desta conta que também segue"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Pré-visualizar"
@@ -8559,21 +8751,20 @@ msgstr "Privacidade"
msgid "Privacy and security"
msgstr "Privacidade e segurança"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Privacidade e Segurança"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Definições de privacidade e segurança"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ 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:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "A processar GIF..."
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "A processar o vídeo..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "A processar..."
@@ -8602,8 +8793,8 @@ msgstr "A processar..."
msgid "profile"
msgstr "perfil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Publicar publicação"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Publicar publicações"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Publicar respostas"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Publicar resposta"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Push"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Notificações Push"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
-msgstr "Push, Todos"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr "Push, de todos"
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "Push, Pessoas que segue"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr "Push, de pessoas que sigo"
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "O código QR foi transferido!"
msgid "QR code saved to your camera roll!"
msgstr "O código QR foi guardado no rolo da sua câmara!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Notificações de citação"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Citações desativadas"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Citações"
@@ -8733,11 +8920,11 @@ msgstr "Limite de pedidos excedido. Por favor, tente novamente mais tarde."
msgid "Re-attach quote"
msgstr "Vincular citação de novo"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Reativar link de convite"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Reativar link"
@@ -8745,8 +8932,8 @@ msgstr "Reativar link"
msgid "React with {emoji}"
msgstr "Reagir com {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Reações"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "leia sobre como usar os filtros de pesquisa"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Ler a publicação do blog (em inglês)"
@@ -8812,11 +8999,11 @@ msgstr "Pessoas reais."
msgid "Reason for appeal"
msgstr "Motivo do recurso"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Receber notificações na aplicação"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Receber notificações push"
@@ -8841,6 +9028,10 @@ msgstr "Recomendados"
msgid "Reconnect"
msgstr "Reconectar"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr "Atualize a página para vê-la."
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Rejeitar"
msgid "Reject chat request"
msgstr "Rejeitar solicitação de conversa"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Recarregar conversas"
@@ -8896,17 +9087,17 @@ msgstr "Remover conta"
msgid "Remove all contacts"
msgstr "Remover todos os contactos"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Remover anexo"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Remover foto de perfil"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Remover Banner"
@@ -8914,8 +9105,9 @@ msgstr "Remover Banner"
msgid "Remove caption file"
msgstr "Remover ficheiro de legendas"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Remover incorporação"
@@ -8933,8 +9125,8 @@ msgstr "Remover feed?"
msgid "Remove from chat"
msgstr "Remover da conversa"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Remover das publicações salvas"
msgid "Remove from your feeds?"
msgstr "Remover dos seus feeds?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Remover imagem"
@@ -9009,11 +9201,11 @@ msgstr "Remover verificação"
msgid "Remove your verification for this account?"
msgstr "Remover a sua verificação para esta conta?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Removido pelo autor"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Removido por si"
@@ -9035,7 +9227,7 @@ msgstr "Removida das publicações salvas"
msgid "Removed from starter pack"
msgstr "Removido do pacote de iniciante"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Respondeu-te"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Respostas"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Responder"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Responder ({0, plural, one {# resposta} other {# respostas}})"
@@ -9125,10 +9316,6 @@ msgstr "Resposta ocultada pelo autor do fio"
msgid "Reply Hidden by You"
msgstr "Resposta ocultada por você"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Notificações de respostas"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "As definições de resposta são escolhidas pelo autor do fio"
@@ -9146,9 +9333,9 @@ msgstr "Visibilidade da resposta atualizada"
msgid "Reply was successfully hidden"
msgstr "A resposta foi ocultada com sucesso"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Denunciar"
@@ -9164,13 +9351,13 @@ msgstr "Denunciar conta"
msgid "Report conversation"
msgstr "Denunciar conversa"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Janela de denúncia"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Denunciar feed"
@@ -9179,7 +9366,7 @@ msgstr "Denunciar feed"
msgid "Report list"
msgstr "Denunciar lista"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Denunciar mensagem"
@@ -9199,8 +9386,8 @@ msgstr "Denunciar pacote de iniciante"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Denúncia enviada"
@@ -9213,7 +9400,7 @@ msgstr "Denunciar esta conversa"
msgid "Report this feed"
msgstr "Denunciar este feed"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "Denunciar esta conversa de grupo"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Denunciar esta lista"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Denunciar esta transmissão ao vivo"
@@ -9256,10 +9443,6 @@ msgstr "Republicar"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Republicar ({0, plural, one {# republicação} other {# republicações}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Notificações de republicações"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Republicado por si"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Republicações"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Republicações desta publicação"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Republicações das suas republicações"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Notificações de republicações das suas republicações"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr "Pedir para aceder à conversa de grupo"
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr "Pedido aprovado."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Solicitar código"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr "Pedido ignorado."
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr "Pedir para aderir"
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr "Solicitado"
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "Pedidos"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr "Pedidos de adesão"
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Exigir texto alternativo antes de publicar"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Requerer um código de e-mail para iniciar sessão com a sua conta."
@@ -9328,7 +9534,11 @@ msgstr "Obrigatório para este fornecedor"
msgid "Required in your region"
msgstr "Obrigatório na sua região"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr "Rescindir pedido"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Reenviar"
@@ -9393,15 +9603,16 @@ msgstr "Repete a última ação, que resultou em erro"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Repete a última ação, que resultou em erro"
msgid "Retry"
msgstr "Tentar novamente"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Recarregar opções de denúncia"
@@ -9426,14 +9637,14 @@ msgstr "Recarregar opções de denúncia"
msgid "Return to previous page"
msgstr "Voltar à página anterior"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Voltar à página de início"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Volta à página anterior"
@@ -9454,7 +9665,7 @@ msgstr "GIFs tristes"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Guardar data de nascimento"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Guardar alterações"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Guardar alterações?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Guardar rascunho"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Guardar rascunho?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Guardar código QR"
msgid "Save these options for next time"
msgstr "Guardar estas opções para a próxima vez"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Guardar nos meus feeds"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Guardados"
msgid "Saved Feeds"
msgstr "Feeds Guardados"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Publicações Guardadas"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Guardado nos seus feeds"
@@ -9551,8 +9764,8 @@ msgstr "Guardado nos seus feeds"
msgid "Say hello!"
msgstr "Diga olá!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "Diga olá a alguém"
@@ -9576,18 +9789,18 @@ msgstr "Scroll para a direita"
msgid "Scroll to top"
msgstr "Voltar ao topo"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Procurar"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Pesquisar nas publicações de @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Procurar nas minhas publicações"
msgid "Search posts"
msgstr "Procurar publicações"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Procurar perfis"
msgid "Search..."
msgstr "Procurar..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Procura por perfis"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Passo de segurança necessário"
@@ -9759,7 +9972,7 @@ msgstr "Selecionar {langName}"
msgid "Select a color"
msgstr "Selecionar uma cor"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Selecione um motivo"
@@ -9828,7 +10041,7 @@ msgstr "Selecionar GIF"
msgid "Select GIF \"{0}\""
msgstr "Selecionar GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "Selecionar membros da conversa de grupo"
@@ -9850,7 +10063,7 @@ msgstr "Selecionar idioma..."
msgid "Select languages"
msgstr "Selecionar idiomas"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Selecionar um serviço de moderação"
@@ -9904,11 +10117,11 @@ msgstr "Selecione os seus interesses entre as opções abaixo"
msgid "Select your preferred language for translations in your feed."
msgstr "Selecione o seu idioma preferido para traduções no seu feed."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Selecione os seus canais de notificação preferidos"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "A seleção de vários tipos de conteúdo multimédia não é suportada."
@@ -9921,9 +10134,9 @@ msgstr "Automutilação ou comportamentos perigosos"
msgid "Send code"
msgstr "Enviar código"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Enviar e-mail"
@@ -9939,7 +10152,7 @@ msgstr "Enviar relatório de erro"
msgid "Send feedback"
msgstr "Enviar feedback"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Enviar mensagem"
@@ -9952,7 +10165,7 @@ msgstr "Enviar publicação para {name}"
msgid "Send post to..."
msgstr "Enviar publicação para..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Enviar denúncia para {title}"
@@ -9960,7 +10173,7 @@ msgstr "Enviar denúncia para {title}"
msgid "Send the message from your phone"
msgstr "Enviar mensagem a partir do seu telefone"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Enviar através de mensagem direta"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "Enviada às {0}"
@@ -10015,14 +10228,14 @@ msgstr "Defina a sua data de nascimento abaixo e poderá voltar a publicar e a e
msgid "Sets email for password reset"
msgstr "Define o e-mail para recuperação de senha"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Definições"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Definições de atividade de outros"
@@ -10030,39 +10243,39 @@ msgstr "Definições de atividade de outros"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Definições para permitir que outros sejam notificados sobre as suas publicações"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Definições para notificações de gostos"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Definições para notificações de menções"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Definições para notificações de novo seguidor"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Definições para notificações de tudo o resto"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Definições para notificações de gostos nas suas republicações"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Definições para notificações de republicações das suas republicações"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Definições para notificações de citações"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Definições para notificações de respostas"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Definições para notificações de republicações"
@@ -10079,10 +10292,12 @@ msgstr "Atividade sexual ou nudez erótica."
msgid "Sexually Suggestive"
msgstr "Sexualmente Sugestivo"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Partilhar DID do autor"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Partilhar imagem"
@@ -10124,7 +10339,7 @@ msgstr "Partilhar publicação em:// URI"
msgid "Share QR code"
msgstr "Partilhar código QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Partilhar este feed"
@@ -10151,7 +10366,7 @@ msgstr "Partilhar via..."
msgid "Share your contacts to find friends"
msgstr "Partilhe os seus contactos para encontrar amigos"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Testador de Preferências Partilhadas"
@@ -10167,16 +10382,16 @@ msgstr "Mostrar texto alternativo"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Mostrar mesmo assim"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "Mostrar rótulo de automação"
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Mostrar aviso e filtrar de feeds"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Mostre quando você estiver ao vivo"
@@ -10297,15 +10512,17 @@ msgstr "Mostra o conteúdo"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Iniciar sessão ou criar uma conta"
msgid "Sign in or create your account to join the conversation!"
msgstr "Inicie sessão ou crie a sua conta para aderir à conversa!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr "Inicie sessão para aceitar o convite."
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Iniciar sessão com uma conta que não está na lista"
@@ -10337,6 +10558,10 @@ msgstr "Iniciar sessão com uma conta que não está na lista"
msgid "Sign in to Bluesky or create a new account"
msgstr "Inicie sessão no Bluesky ou crie uma conta nova"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr "Inicie sessão para pedir para aderir a esta conversa de grupo."
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Inicie sessão para ver esta publicação"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Terminar sessão"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Terminar Sessão"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Terminar sessão?"
@@ -10391,7 +10616,7 @@ msgstr "Saltar"
msgid "Skip contact sharing and continue to the app"
msgstr "Ignorar partilha de contactos e continuar para a aplicação"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Ignorar publicações vazias?"
@@ -10405,7 +10630,7 @@ msgstr "Saltar introdução e começar a usar a sua conta"
msgid "Skip to next step"
msgstr "Saltar para o próximo passo"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "slide"
@@ -10413,7 +10638,7 @@ msgstr "slide"
msgid "Smaller"
msgstr "Menor"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Adia o lembrete"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "Alguém saiu do grupo"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Alguém reagiu {0}"
@@ -10487,17 +10712,22 @@ msgstr "Alguém foi removido"
msgid "Someone was removed from the group"
msgstr "Alguém foi removido do grupo"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr "Há algo de novo aqui"
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Houve um problema com os dados que tentou denunciar. Por favor, contacte o suporte."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Aconteceu algo de errado"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Aconteceu algo de errado!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Aconteceu algo de errado. Por favor, tente novamente dentro de um momento."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Aconteceu algo de errado. Por favor, tente novamente."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Aconteceu algo de errado? Informe-nos."
@@ -10568,7 +10798,7 @@ msgstr "Desportos"
msgid "Start a conversation, and it will appear here."
msgstr "Inicie uma conversa, e ela aparecerá aqui."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Iniciar uma nova conversa"
@@ -10582,17 +10812,17 @@ msgstr "Comece a adicionar pessoas"
msgid "Start adding people!"
msgstr "Comece a adicionar pessoas!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Iniciar conversa"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Iniciar conversa com {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Pacote de Iniciante"
@@ -10654,12 +10884,12 @@ msgstr "Armazenamento limpo, precisa de reiniciar a aplicação agora."
msgid "Stored as part of a secure code for matching with others"
msgstr "Armazenado como parte de um código seguro para correspondência com outros"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Storybook"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 "Ao vivo na Twitch? Defina o seu estado \"em direto\" no Bluesky para adicionar um emblema à sua foto de perfil. Tocar nele leva as pessoas diretamente para a sua transmissão."
@@ -10671,8 +10901,8 @@ msgstr "Ao vivo na Twitch? Defina o seu estado \"em direto\" no Bluesky para adi
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Submeter"
@@ -10684,9 +10914,9 @@ msgstr "Submeter recurso"
msgid "Submit Appeal"
msgstr "Submeter Recurso"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Submeter denúncia"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Subscrever"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr "Subscrever no {0}"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr "Subscrever a {publicationTitle} no {0}"
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Sucesso"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Sucesso!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr "Aderiu à conversa de grupo com sucesso!"
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Verificado com sucesso"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Sugeridos"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Pôr do sol"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,20 +11014,20 @@ msgstr "Suporte"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Esta funcionalidade ainda não está disponível no seu país! Por favor, volte mais tarde."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
-msgstr ""
+msgstr "Contas suspensas não podem participar na conversa de grupo."
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
-msgstr ""
+msgstr "Contas suspensas não podem participar na conversa."
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Mudar de conta"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Trocar de conta"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Trocar para {0}"
@@ -10828,9 +11062,9 @@ msgstr "Apenas tags"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Toque abaixo para permitir que o Bluesky aceda à sua localização GPS. Em seguida, usaremos esses dados para determinar com maior precisão o conteúdo e as funcionalidades disponíveis na sua região."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
-msgstr ""
+msgstr "Toque para mais detalhes"
#: src/view/com/feeds/MissingFeed.tsx:90
msgid "Tap for information"
@@ -10842,7 +11076,7 @@ msgstr "Toque para mais informação"
#: src/screens/Signup/StepInfo/index.tsx:323
msgid "Tap here to update your location with GPS."
-msgstr ""
+msgstr "Toque aqui para atualizar a sua localização com o GPS."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165
msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky"
@@ -10854,33 +11088,51 @@ msgstr "Toque para confirmar que entende e concorda com estas atualizações e c
msgid "Tap to close context menu"
msgstr "Toque para fechar menu de contexto"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr "Toque para copiar este link de convite"
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Toque para ignorar"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr "Toque para entrar na conversa de grupo imediatamente"
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr "Toque para abrir esta conversa de grupo"
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Toque para remover"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "Toque para remover a sua reação {0}"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr "Toque para pedir para aderir a esta conversa de grupo"
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Toque para tentar novamente"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "Toque para mostrar reações {0}"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Toque para mostrar todas as reações"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Toque para ver as reações"
@@ -10924,7 +11176,7 @@ msgstr "Termos"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Texto e tags"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Campo de introdução de texto"
@@ -11049,6 +11301,11 @@ msgstr "As seguintes definições serão usadas como definições padrão ao cri
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "As leis na sua região exigem que verifique se é adulto para aceder a certas funcionalidades. Toque para saber mais."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr "O limite de membros foi atingido."
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "A publicação a que está a responder foi marcado como estando escrita em {suggestedLanguageName} pelo seu autor. Gostaria de responder em <0>{suggestedLanguageName}0>?"
@@ -11057,10 +11314,10 @@ msgstr "A publicação a que está a responder foi marcado como estando escrita
msgid "The Privacy Policy has been moved to <0/>"
msgstr "A Política de Privacidade foi movida para <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
-msgstr ""
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
+msgstr "O vídeo selecionado é maior que {VIDEO_MAX_SIZE_MB} MB. Por favor, tente novamente com um ficheiro menor."
#: src/lib/hooks/useCleanError.ts:41
#: src/lib/strings/errors.ts:19
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "Não há nenhum link de convite para esta conversa de grupo."
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "Houve um problema ao carregar os GIFs. Verifique a sua conexão à internet e tente novamente."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "Houve um problema com a sua conexão à internet. Por favor, tente novamente"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "Houve um problema com a sua conexão à internet. Por favor, tente novam
msgid "There was an issue contacting the server"
msgstr "Ocorreu um problema ao contactar o servidor"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Ocorreu um problema ao contactar o servidor. Por favor, verifique a sua conexão de internet e tente novamente."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Houve um problema ao obter as notificações. Toque aqui para tentar novamente."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Houve um problema ao obter as publicações. Toque aqui para tentar novamente."
@@ -11161,7 +11420,7 @@ msgstr "Houve um problema ao obter a sua informação de serviço"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Ocorreu um problema ao remover este feed. Por favor, verifique a sua conexão de internet e tente novamente."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Este recurso será enviado para <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Este recurso será enviado para o serviço de moderação do Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Este recurso será enviado para o serviço de moderação do Bluesky."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "Este autor optou por tornar as suas publicações visíveis apenas para as pessoas com sessão iniciada."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "Este botão permite que outros abram a aplicação Germ DM para lhe enviar uma mensagem. Pode gerir a visibilidade da aplicação Germ DM, ou pode desconectar a sua conta do Bluesky da Germ DM por completo ao clicar no botão abaixo."
@@ -11271,7 +11530,12 @@ msgstr "Este botão permite que outros abram a aplicação Germ DM para lhe envi
msgid "This chat has ended"
msgstr "Esta conversa terminou"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr "Esta conversa está cheia"
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "Esta conversa está trancada"
@@ -11310,7 +11574,11 @@ msgstr "Este conteúdo não está disponível porque um dos utilizadores envolvi
msgid "This content is not viewable without a Bluesky account."
msgstr "Este conteúdo não pode ser visualizado sem uma conta Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr "Esta conversa está trancada."
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Esta conversa é com uma conta eliminada ou desativada. Pressione para o
msgid "This draft will be permanently deleted."
msgstr "Este rascunho será permanentemente eliminado."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Este e-mail já está associado à sua conta."
@@ -11360,7 +11628,7 @@ msgstr "Este feed já não se encontra online. Em vez disso, estamos a mostrar <
msgid "This handle is reserved. Please try a different one."
msgstr "Este nome de utilizador é reservado. Por favor, tente um diferente."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "Esta imagem não pôde ser usada. Tente um formato diferente como .jpg ou .png."
@@ -11368,6 +11636,18 @@ msgstr "Esta imagem não pôde ser usada. Tente um formato diferente como .jpg o
msgid "This information is private and not shared with other users."
msgstr "Esta informação é privada e não é partilhada com outros utilizadores."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr "Este link de convite foi desativado."
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr "Este link de convite expirou"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr "Este link de convite é inválido"
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "Este é um estado vazio"
@@ -11377,7 +11657,7 @@ msgstr "Este é um estado vazio"
msgid "This is not a valid link"
msgstr "Este não é um link válido"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "Este rótulo deixa as pessoas saberem que esta conta é automatizada. Se estiver ativo, este rótulo aparece ao lado do nome da conta no perfil e publicações da mesma. O rótulo pode ser ativado ou desativado a qualquer momento."
@@ -11410,15 +11690,15 @@ msgstr "Esta lista - criada por si - contém possíveis violações das diretriz
msgid "This list is empty."
msgstr "Esta lista está vazia."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
-msgstr ""
+msgstr "Esta mensagem está oculta porque está bloqueado por este utilizador."
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
-msgstr ""
+msgstr "Esta mensagem está oculta porque tem este utilizador bloqueado."
#: src/screens/Profile/ErrorState.tsx:41
msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us."
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "O autor desta publicação desativou as citações."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Esta resposta será colocada numa secção oculta no final do seu fio de discussão e silenciará notificações de futuras respostas - tanto para si como para outros."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "Este ecrã só está disponível para conversas de grupo."
@@ -11494,18 +11775,18 @@ msgstr "Este utilizador não possui um nome de exibição, e como tal não pode
msgid "This user doesn't have any followers."
msgstr "Este utilizador não tem seguidores."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Foi bloqueado por este utilizador e não o pode contactar."
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr "Foi bloqueado por este utilizador. Não pode ver o conteúdo dele."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
-msgstr ""
+msgstr "Este utilizador desativou as conversas e não o pode contactar."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
@@ -11574,7 +11855,7 @@ msgstr "Preferências de Resposta"
msgid "Threaded"
msgstr "Em fio"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Preferências de Fios"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Para desativar o método de 2FA por e-mail, verifique o seu acesso ao endereço de e-mail."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Para desativar o método de 2FA por e-mail, verifique o seu acesso a <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Melhor"
msgid "Top replies first"
msgstr "Respostas principais primeiro"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Tópico"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Vídeos do Momento"
msgid "Trolling"
msgstr "Trolling"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "A confiança surge de relações, comunidades e contexto compartilhado, por isso também estamos a permitir <0>verificadores de confiança0>: organizações que podem fornecer verificações diretamente."
@@ -11763,13 +12044,17 @@ msgstr "Não foi possível contactar o seu serviço. Verifique a sua conexão à
msgid "Unable to delete"
msgstr "Não é possível eliminar"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
-msgid "Unable to find a selected recipient."
-msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr "Não foi possível obter pedidos de adesão."
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr "Não foi possível encontrar um destinatário selecionado."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
-msgstr ""
+msgstr "Não foi possível encontrar o destinatário selecionado."
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
@@ -11791,7 +12076,7 @@ msgstr "Indisponível"
msgid "Unavailable feed information"
msgstr "Informação do feed indisponível"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Desbloquear lista"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Desfazer"
@@ -11872,7 +12157,7 @@ msgstr "Deixar de seguir conta"
msgid "Unfollows the user"
msgstr "Deixa de seguir o utilizador"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Infelizmente, nenhum dos rotuladores que subscreve suportam este tipo de denúncia."
@@ -11904,13 +12189,13 @@ msgstr "Conteúdo adulto não rotulado"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Conteúdo adulto não rotulado, abusivo ou não consensual"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Remover gosto ({0, plural, one {# gosto} other {# gostos}})"
@@ -11918,7 +12203,7 @@ msgstr "Remover gosto ({0, plural, one {# gosto} other {# gostos}})"
msgid "Unlock chat"
msgstr "Destrancar conversa"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr "Destrancar esta conversa de grupo"
@@ -11955,7 +12240,7 @@ msgstr "Remover silenciamento da conversa"
msgid "Unmute list"
msgstr "Remover silenciamento da lista"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "Remover silenciamento desta conversa de grupo"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Desafixar"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Desafixar feed"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Desafixar de início"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Desafixar lista de moderação"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} desafixado de início"
@@ -12030,11 +12315,11 @@ msgstr "Deixar de subscrever este rotulador"
msgid "Unsubscribed from list"
msgstr "Removeu subscrição da lista"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "Conteúdo da área de transferência não suportado"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Tipo de vídeo não suportado: {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "Atualizar"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Atualizar <0>{displayName}0> nas Listas"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr "Atualizar a aplicação"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Atualizar e-mail"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Atualizar link de convite"
@@ -12065,11 +12354,19 @@ msgstr "Atualizar link de convite"
msgid "Update to {domain}"
msgstr "Atualizar para {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr "Atualize a sua aplicação"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr "Atualize a sua aplicação para vê-la."
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "Atualize a sua aplicação para a versão mais recente para entrar!"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Atualize o seu e-mail"
@@ -12078,7 +12375,7 @@ msgstr "Atualize o seu e-mail"
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:41
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:106
msgid "Update your location"
-msgstr ""
+msgstr "Atualize a sua localização"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355
msgctxt "toast"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Falha ao atualizar a visibilidade da resposta"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Carregar uma foto em vez disso"
@@ -12098,39 +12395,40 @@ msgstr "Carregar uma foto em vez disso"
msgid "Upload a text file to:"
msgstr "Carregue um ficheiro de texto para:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Carregar da Câmara"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Carregar de Ficheiros"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Carregar da Biblioteca"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "A carregar GIF..."
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "A carregar imagens..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "A carregar miniatura do link..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "A carregar vídeo..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "utilizador"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Utilizador bloqueado"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Lista de utilizadores por {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "Lista de utilizadores por {0}"
@@ -12255,12 +12553,12 @@ msgstr "utilizadores seguidos por <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "utilizadores que seguem <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "Utilizadores que eu sigo"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Utilizadores que eu sigo"
@@ -12277,7 +12575,7 @@ msgstr "Falha na verificação. Por favor, tente novamente."
msgid "Verification settings"
msgstr "Definições de verificação"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Definições de Verificação"
@@ -12304,8 +12602,8 @@ msgstr "Verificar novamente"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Verificar código"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Verificar Registo DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Verificar o código de e-mail"
@@ -12349,7 +12647,7 @@ msgstr "Verificar esta conta?"
msgid "Verify your age"
msgstr "Verifique a sua idade"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Versão {0}"
msgid "Video"
msgstr "Vídeo"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Falha ao processar o vídeo"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Feed de Vídeo"
@@ -12419,7 +12717,7 @@ msgstr "Vídeo não encontrado."
msgid "Video settings"
msgstr "Definições de vídeo"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Vídeo carregado"
@@ -12432,18 +12730,18 @@ msgstr "Vídeo: {0}"
msgid "Videos"
msgstr "Vídeos"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
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:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Visualizar"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr "Ver {0}"
@@ -12455,7 +12753,7 @@ msgstr "Ver foto de perfil de {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Ver perfil de {0}"
msgid "View {0}’s profile"
msgstr "Ver perfil de {0}"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "Ver perfil de {displayName}"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr "Ver {publicationTitle}"
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr "Ver perfil de {0}"
@@ -12503,10 +12801,18 @@ msgstr "Ver detalhes"
msgid "View full thread"
msgstr "Ver fio completo"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr "Ver solicitações de conversa de grupo"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr "Ver pedidos de adesão"
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr "Ver pedidos de adesão para participar nesta conversa de grupo"
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Ver informação acerca destes rótulos"
@@ -12522,7 +12828,7 @@ msgstr "Ver mais"
msgid "View more trending videos"
msgstr "Ver mais vídeos do momento"
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Visualizar publicação"
@@ -12539,10 +12845,10 @@ msgstr "Ver perfil"
msgid "View profile banner"
msgstr "Ver banner do perfil"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr "Ver publicação"
@@ -12550,7 +12856,7 @@ msgstr "Ver publicação"
msgid "View the avatar"
msgstr "Ver a foto de perfil"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "Ver o link de convite para esta conversa de grupo"
@@ -12563,7 +12869,7 @@ msgstr "Ver o serviço de rotulação fornecido por @{0}"
msgid "View this user's verifications"
msgstr "Ver as verificações deste utilizador"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Ver utilizadores que gostaram deste feed"
@@ -12596,8 +12902,8 @@ msgstr "Ver as contas que silenciou"
msgid "View your verifications"
msgstr "Ver as suas verificações"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Mostra a imagem em tamanho completo"
@@ -12640,8 +12946,8 @@ msgstr "Avisar em conteúdo"
msgid "Warn content and filter from feeds"
msgstr "Avisar em conteúdo e filtrar dos feeds"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Ver agora"
@@ -12665,10 +12971,14 @@ msgstr "Não conseguimos encontrar nenhum resultado para esta tag."
msgid "We couldn't find any results for that topic."
msgstr "Não conseguimos encontrar nenhum resultado para esse tópico."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Não conseguimos carregar esta conversa"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr "Não foi possível carregar os pedidos de adesão desta conversa"
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "Não foi possível carregar as definições desta conversa"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Recomendamos a seleção de pelo menos dois interesses."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Enviámos um e-mail com um link para <0>{0}0>. Clique nele para concluir o processo de verificação de e-mail."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Não conseguimos determinar se tem permissão para carregar vídeos. Por favor, tente novamente."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "Será notificado quando encontrarmos os seus amigos."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Iremos enviar um e-mail com um link para <0>{0}0>. Clique nele para concluir o processo de verificação de e-mail."
@@ -12779,12 +13089,12 @@ msgstr "Estamos a ter problemas ao iniciar o processo de verificação de idade
msgid "We're having network issues, try again"
msgstr "Estamos com problemas de rede, tente novamente"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "Estamos a ter problemas de rede, tente novamente"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Estamos a introduzir uma nova camada de verificação no Bluesky — um selo de verificação fácil de ver."
@@ -12814,12 +13124,12 @@ msgstr "Lamentamos, mas não foi possível concluir a sua pesquisa. Por favor, t
msgid "We're sorry, you cannot access this screen at this time."
msgstr "Pedimos desculpa, não pode aceder de momento a esta janela."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ 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.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Como está?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Quando tocar num selo, verá quais organizações concederam a verificação."
@@ -12878,7 +13188,7 @@ msgstr "Quando tocar num selo, verá quais organizações concederam a verifica
msgid "Who can interact with this post?"
msgstr "Quem pode interagir com esta publicação?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "Quem pode se juntar a esta conversa de grupo e como"
@@ -12887,13 +13197,13 @@ msgstr "Quem pode se juntar a esta conversa de grupo e como"
msgid "Who can reply"
msgstr "Quem pode responder"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Quem pode verificar?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Ups!"
@@ -12939,19 +13249,19 @@ msgstr "Por que motivo deve este pacote de iniciante ser revisto?"
msgid "Why should this user be reviewed?"
msgstr "Por que motivo deve este utilizador ser revisto?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr "Deseja bloquear este utilizador e/ou eliminar esta conversa?"
#: src/components/dms/AfterReportConversationDialog.tsx:47
msgid "Would you like to block this user and/or leave this conversation?"
-msgstr ""
+msgstr "Gostaria de bloquear este utilizador e/ou deixar esta conversa?"
#: src/view/com/composer/drafts/DraftsButton.tsx:110
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:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr "Gostaria de guardar isto como rascunho para editar mais tarde?"
@@ -12960,12 +13270,12 @@ msgstr "Gostaria de guardar isto como rascunho para editar mais tarde?"
msgid "Write a post"
msgstr "Escrever uma publicação"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Escrever publicação"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Escreva a sua resposta"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "O servidor devolveu um DID errado. Recebido: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "Tipo de conversa errado"
@@ -13030,13 +13341,13 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "Está a aceder ao Bluesky a partir de uma região cuja lei nos obriga a verificar a sua idade antes de permitir que aceda à aplicação."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
-msgstr ""
+msgstr "{0} está bloqueado por si"
#: src/components/dms/MessagesListBlockedFooter.tsx:81
msgid "You are blocking the chat owner"
-msgstr ""
+msgstr "O proprietário da conversa está bloqueado por si"
#: src/components/dms/MessagesListBlockedFooter.tsx:83
msgid "You are blocking this person"
@@ -13068,7 +13379,7 @@ msgstr "Está em direto"
msgid "You are no longer live"
msgstr "Já não está em direto"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Não tem permissão para carregar vídeos."
@@ -13117,12 +13428,12 @@ msgstr "Pode sempre optar por não participar e eliminar os seus dados"
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Pode escolher se as notificações de conversas têm som ou não nas definições de conversas na aplicação"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Pode continuar com as conversas que tem em curso, independentemente da definição que escolher."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Agora pode optar por ser notificado quando pessoas específicas fizerem uma publicação. Se houver alguém de quem queira atualizações oportunas, vá até o perfil desta e encontre o novo ícone de sino junto ao botão seguir."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr "Só pode adicionar até {MAX_GALLERY_IMAGES, plural, one {}other {# imagens}} por publicação"
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "Só pode guardar rascunhos com um máximo de 1000 caracteres."
@@ -13139,11 +13455,11 @@ msgstr "Só pode guardar rascunhos com um máximo de 1000 caracteres."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "Só pode guardar rascunhos com um máximo de 1000 caracteres. Gostaria de descartar esta publicação antes de ver os seus rascunhos?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
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:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Só pode selecionar um vídeo de cada vez."
@@ -13155,10 +13471,10 @@ msgstr "Pode reativar a sua conta para continuar o início de sessão. As suas p
msgid "You can read chat history but can’t send new messages."
msgstr "Pode ler o histórico da conversa, mas não pode enviar novas mensagens."
-#. 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: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."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr "Pode selecionar {MAX_GALLERY_IMAGES, plural, one {# imagem}other {# imagens}} no total."
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,9 +13482,9 @@ msgstr "Pode selecionar {MAX_IMAGES, plural, one {# imagem}other {# imagens}} no
msgid "You can update this later from your settings."
msgstr "Pode atualizar isto mais tarde a partir das suas definições."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
-msgstr ""
+msgstr "Ainda não pode criar uma conversa de grupo."
#: src/lib/hooks/useCleanError.ts:54
#: src/lib/strings/errors.ts:28
@@ -13197,6 +13513,10 @@ msgstr "Não tem nenhum feed salvo."
msgid "You got here first"
msgstr "Chegou aqui primeiro"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr "Foi removido deste grupo anteriormente. Não se pode juntar a ele usando este link."
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
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?"
@@ -13336,7 +13656,7 @@ msgstr "Deve seguir pelo menos sete outras pessoas para gerar um pacote de inici
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "Precisa de conceder acesso à sua biblioteca de conteúdo multimédia."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Provavelmente quer reiniciar a aplicação agora."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Reagiu {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "Alterou recentemente a sua data de nascimento"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "A sua sessão será terminada em todas as suas contas."
@@ -13390,7 +13710,7 @@ msgstr "Passará a receber notificações deste fio"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Irá receber um e-mail com um \"código de redefinição\". Introduza esse código aqui e, depois, introduza a sua nova palavra-passe."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "Não poderá voltar a entrar sem ser convidado."
@@ -13463,7 +13783,7 @@ msgstr "Chegou ao fim do conteúdo ativo."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Chegou ao fim do seu feed! Encontre mais algumas contas para seguir."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "Alcançou o número máximo de rascunhos"
@@ -13475,11 +13795,11 @@ msgstr "Atingiu o número máximo de solicitações permitidas. Tente novamente
msgid "You've reached the start of the active content."
msgstr "Chegou ao início do conteúdo ativo."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Atingiu o seu limite diário de carregamento de vídeos (demasiados bytes)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr "A sua conta foi eliminada! ✌️"
msgid "Your account has been suspended"
msgstr "A sua conta foi suspensa"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "A sua conta não tem antiguidade suficiente para carregar vídeos. Por favor, tente novamente mais tarde."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr "A sua conta é demasiado recente"
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr "A sua conta precisa de ter pelo menos 7 dias antes de poder criar uma nova conversa de grupo."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "O repositório da sua conta, que contém todos os registos de dados públicos, pode ser descarregado como um ficheiro \"CAR\". Este ficheiro não inclui conteúdo multimédia incorporado, como imagens, ou os seus dados privados, que devem ser obtidos separadamente."
@@ -13519,7 +13847,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "As suas conversas foram desativadas"
@@ -13561,7 +13889,7 @@ msgstr "O seu e-mail"
msgid "Your email appears to be invalid."
msgstr "O seu e-mail parece ser inválido."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "O seu email ainda não foi verificado. Por favor, verifique o seu email para poder usufruir de todas as funcionalidades do Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "O seu feed \"A seguir\" está vazio! Siga mais utilizadores para ver o q
msgid "Your full handle will be <0>@{0}0>"
msgstr "O seu nome de utilizador completo será <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "A sua localização foi atualizada."
msgid "Your muted words"
msgstr "As suas palavras silenciadas"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "O seu nome, foto de perfil e o nome da conversa de grupo serão visíveis para todos."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr "O seu nome, foto de perfil, o nome da conversa de grupo e o número de membros serão visíveis para todos."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "A sua publicação foi enviada"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "As suas publicações foram enviadas"
@@ -13635,7 +13963,7 @@ msgstr "As suas publicações foram enviadas"
msgid "Your preferred language"
msgstr "O seu idioma preferido"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "A sua foto de perfil"
@@ -13648,12 +13976,12 @@ msgstr "A sua foto de perfil cercada por círculos concêntricos com as fotos de
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "A sua resposta foi enviada"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "A sua denúncia será enviada para <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "A sua denúncia será enviada para <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Os seus interesses selecionados ajudam-nos a servir-lhe conteúdo com o qual se importa."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "O seu fio tem publicações vazias que serão ignoradas. As restantes publicações serão publicadas como um fio."
diff --git a/src/locale/locales/ro/messages.po b/src/locale/locales/ro/messages.po
index d27c06b4f9..3fd5dc2757 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\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"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {un minut} few {# minute} other {# de minute}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {o lună} few {# luni} other {# de luni}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr "{0, plural, one {o cerere nouă de alăturare} few {# cereri noi de alăturare} other {# de cereri noi de alăturare}}"
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, one {o persoană a} few {# persoane au} other {# de persoane au}} reacționat – {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {o secundă} few {# secunde} other {# de secunde}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {Un element necitit} few {# elemente necitite} other {# de elemente necitite}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr "{0, plural, one {# min} few {# min} other {# de min}}"
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} urmăriți"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr "{0} vă blochează"
@@ -264,7 +269,7 @@ msgstr "{0} din 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} a reacționat {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, o listă de {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Avatarul folosit de {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "Avatarul lui {0}"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr "{0}/{1}"
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr "{0}/{1} {2, plural, one {membru} few {membrii} other {de membrii}}"
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr "{0}/{1} membrii"
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}m"
msgid "{0}s"
msgstr "{0}s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr "{count, plural, =0 {Nicio cerere de alăturare} one {o cerere de alăturare} few {# cereri de alăturare} other {# de cereri de alăturare}}"
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr "{count, plural, one {o actualizare de grup} few {# actualizări de grup} other {# de actualizări de grup}}"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr "{count, plural, one {o cerere nouă de alăturare} few {# cereri noi de alăturare} other {# de cereri noi de alăturare}}"
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, one {o cerere} few {# cereri} other {# de cereri}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {Un element necitit} few {# elemente necitite} other {# de elemente necitite}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr "{count, plural, one {Reîmprospătați pagina pentru a o vedea.} few {Reîmprospătați pagina pentru a le vedea pe toate.} other {Reîmprospătați pagina pentru a le vedea pe toate.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr "{count, plural, one {Această postare are o fotografie.} few {Această postare are # fotografii.} other {Această postare are # de fotografii.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr "{count, plural, one {Actualizați-vă aplicația pentru a o vedea.} few {Actualizați-vă aplicația pentru a le vedea pe toate.} other {Actualizați-vă aplicația pentru a le vedea pe toate.}}"
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr "{count, plural, one {} few {Peste # cereri de alăturare}other {Peste # de cereri de alăturare}}"
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "Peste {count}"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "peste {count} de cereri"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} v-a verificat"
msgid "{following} following"
msgstr "{following} urmăriți"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "{handle} nu poate fi adăugat(ă)"
@@ -547,7 +599,7 @@ msgstr "{handle} nu poate fi adăugat(ă)"
msgid "{handle} can't be messaged"
msgstr "Nu se pot trimite mesaje către {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "Nu se pot trimite mesaje către {handle}"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# oră {minutesString}} few {# ore {minutesString}}
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# oră } few {# ore} other {# de ore}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "Peste {JOIN_REQUESTS_THRESHOLD} de cereri noi de alăturare"
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "Peste {JOIN_REQUESTS_THRESHOLD} de cereri noi de alăturare"
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,9 +643,9 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, one {} few {Puteți ascunde maxim # răspunsuri.}other {Puteți ascunde maxim # de răspunsuri.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
-msgstr ""
+msgstr "{memberCount}/{memberLimit}"
#: src/features/liveNow/utils.ts:10
msgid "{minutes, plural, one {# minute} other {# minutes}}"
@@ -607,7 +669,7 @@ msgstr "Fluxurile și persoanele preferate ale lui {name} - alăturați-vă!"
msgid "{name}'s starter pack"
msgstr "Pachetul de pornire al lui {name}"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {Un element necitit} few {# elemente necitite} other {# de elemente necitite}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, one {o cerere} few {# cereri} other {# de cereri}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "Încă {requestCount} de cereri"
@@ -795,8 +857,11 @@ msgstr "A apărut o eroare de rețea. Vă rugăm să verificați conexiunea la i
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "A apărut o eroare de rețea. Vă rugăm să verificați conexiunea la internet."
@@ -804,7 +869,7 @@ msgstr "A apărut o eroare de rețea. Vă rugăm să verificați conexiunea la i
msgid "A new code has been sent"
msgstr "A fost trimis un nou cod"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "O nouă formă de verificare"
@@ -827,11 +892,11 @@ msgstr "O captură de ecran a unei pagini de profil cu o pictogramă clopoțel,
msgid "A screenshot of 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 "O captură de ecran a unui compozitor de postări cu un buton nou lângă cel de postare care spune „Schițe”, cu un efect de artificii în formă de curcubeu. Mai jos, textul din editor spune „Hei, ai auzit știrile? Bluesky are schițe acum!!!”."
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
-msgstr ""
+msgstr "Un destinatar selectat nu este urmărit de expeditor."
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "Comportament abuziv sau discriminatoriu"
msgid "Accept"
msgstr "Acceptare"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Acceptare"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Acceptare cerere de conversație"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr "Acceptare cererea de alăturare"
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Acceptare cerere"
@@ -860,17 +935,26 @@ msgstr "Acceptare cerere"
msgid "Accept this language suggestion"
msgstr "Acceptați această sugestie de limbă"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr "Conversații acceptate"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr "Acces solicitat! Proprietarul grupului va analiza cererea dvs."
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Accesibilitate"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Setări de accesibilitate"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Cont dezamuțit"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Conturile cu bifa albastră în formă de feston <0><1/>0> pot verifica alte persoane. Acești verificatori de încredere sunt selectați de Bluesky."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Activitate de la alții"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Notificări de activitate"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Adăugare"
@@ -999,8 +1079,8 @@ msgstr "Adăugați un cont"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Adăugați text alternativ (opțional)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Adăugați un alt cont"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Adăugați o altă postare"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Adăugați o altă postare firului"
@@ -1035,7 +1115,7 @@ msgstr "Adăugare parolă de aplicație"
msgid "Add App Password"
msgstr "Adăugare parolă de aplicație"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "Adăugați o etichetă de automatizare contului"
@@ -1043,7 +1123,7 @@ msgstr "Adăugați o etichetă de automatizare contului"
msgid "Add emoji reaction"
msgstr "Adăugați reacție emoji"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Adăugați membrii la conversația de grup"
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Adăugare conținut media la postare"
@@ -1062,8 +1142,8 @@ msgstr "Adăugare conținut media la postare"
msgid "Add members"
msgstr "Adăugare membri"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Adăugați mai multe detalii (opțional)"
@@ -1080,8 +1160,8 @@ msgstr "Adăugați un cuvânt amuțit cu setările alese"
msgid "Add muted words and tags"
msgstr "Adăugați cuvinte și etichete pentru amuțire"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "Se adaugă membrii la listă..."
msgid "Additional details (limit 1000 characters)"
msgstr "Detalii suplimentare (limită de 1000 de caractere)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Detalii suplimentare (limită de 300 de caractere)"
@@ -1228,12 +1308,12 @@ msgstr "Cererea de verificare a vârstei a fost înregistrată"
msgid "Age assurance only takes a few minutes"
msgstr "Verificarea vârstei durează doar câteva minute"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "andreea@exemplu.ro"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Toate"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "Toate {0}"
@@ -1278,13 +1358,13 @@ msgstr "Permiteți accesul la mesajele dvs. directe"
msgid "Allow anyone to reply"
msgstr "Permiteți oricui să răspundă"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "Permiteți mesaje directe de la"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr "Permiteți invitații în conversații de grup de la"
@@ -1338,12 +1418,12 @@ msgstr "Aveți deja un cont?"
msgid "Already signed in as @{0}"
msgstr "Deja conectat ca @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Text alternativ"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Textul alternativ descrie imaginile pentru utilizatorii cu deficiențe de vedere și oferă context pentru toată lumea."
@@ -1387,7 +1467,7 @@ msgstr "A apărut o eroare"
msgid "An error occurred"
msgstr "A apărut o eroare"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "A apărut o eroare la comprimarea videoclipului."
@@ -1432,11 +1512,11 @@ msgstr "A apărut o eroare la salvarea codului QR!"
msgid "An error occurred while trying to follow all"
msgstr "A apărut o eroare în timp ce se încerca urmărirea tuturor"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "A apărut o eroare la încărcarea videoclipului. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "A apărut o eroare la încărcarea videoclipului. Vă rugăm să vă verificați conexiunea la internet și să încercați din nou."
@@ -1461,21 +1541,21 @@ msgstr "O ilustrație a mai multor postări Bluesky alături de pictograme de re
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "O ilustrație care arată că Bluesky selectează verificatori de încredere, iar verificatorii de încredere verifică la rândul lor conturile de utilizator individuale."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "Un link de invitație permite utilizatorilor să se alăture acestei conversații de grup fără a fi adăugați direct. Dvs. controlați cine poate folosi linkul și dacă au nevoie de aprobare. Puteți dezactiva linkul oricând."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr "Un link de invitație permite utilizatorilor să se alăture acestei conversații de grup fără a fi adăugați direct. Dvs. controlați cine se poate alătura conversației. Puteți dezactiva linkul oricând."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "O problemă care nu este inclusă în aceste opțiuni"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
-msgstr ""
+msgstr "A apărut o problemă la crearea conversației de grup, vă rugăm să încercați din nou."
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
-msgstr ""
+msgstr "A apărut o problemă la începerea conversației, vă rugăm să încercați din nou."
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
msgid "An issue occurred while trying to open the chat"
@@ -1490,7 +1570,7 @@ msgstr "A apărut o problemă în timp ce se încerca deschiderea conversației"
msgid "An issue occurred, please try again."
msgstr "A apărut o problemă, vă rugăm să încercați din nou."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "O machetă a unui iPhone care arată aplicația Bluesky deschisă la profilul unui utilizator verificat cu o bifă albastră lângă numele afișat."
@@ -1539,13 +1619,17 @@ msgstr "Oricine"
msgid "Anyone can interact"
msgstr "Oricine poate interacționa"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr "Oricine se poate alătura"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "Oricine se poate alătura instant"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "Oricine poate solicita să se alăture"
@@ -1555,11 +1639,11 @@ msgstr "Oricine poate solicita să se alăture"
msgid "Anyone who follows me"
msgstr "Oricine mă urmărește"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr "Oricine îl are nu va mai putea să se alăture sau să solicite să se alăture. Puteți oricând să creați unul nou."
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Numele parolelor de aplicație trebuie să aibă cel puțin 4 caractere"
msgid "App passwords"
msgstr "Parole de aplicații"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Parole de aplicație"
@@ -1618,7 +1702,7 @@ msgstr "Contestați suspendarea transmisiunii în direct"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Contestație depusă"
@@ -1632,14 +1716,14 @@ msgstr "Contestare suspendare"
msgid "Appeal Suspension"
msgstr "Contestare suspendare"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Contestați această decizie"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "Sunteți foarte, foarte sigur?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Sigur doriți să ștergeți parola de aplicație „{0}”?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Sunteți sigur că doriți să ștergeți acest mesaj? Mesajul va fi șters pentru dvs., dar nu și pentru ceilalți participanți."
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "Sunteți sigur că doriți să părăsiți {groupName}?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
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: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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+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 ceilalți participanți."
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
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?"
@@ -1752,7 +1836,7 @@ msgstr "Cont automatizat"
msgid "Automation label"
msgstr "Etichetă cont automatizat"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "Etichetă cont automatizat"
@@ -1767,12 +1851,12 @@ msgstr "Redare automată videoclipuri și GIF-uri"
msgid "Available"
msgstr "Disponibil"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Disponibil"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Disponibil"
msgid "Back"
msgstr "Înapoi"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Înapoi la conversații"
@@ -1840,12 +1926,12 @@ msgstr "Înainte de a putea accepta această cerere de conversație, trebuie mai
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Înainte de a primi notificări despre postările noi de la {name}, trebuie mai întâi să vă verificați e-mailul."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Înainte de a putea trimite mesaje unui alt utilizator, trebuie mai întâi să vă verificați adresa de e-mail."
@@ -1877,7 +1963,7 @@ msgstr "Zi de naștere"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "Blocați pe {displayName}"
msgid "Block account"
msgstr "Blocare cont"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Blocați contul?"
@@ -1912,15 +1998,15 @@ msgstr "Blocați contul?"
msgid "Block accounts"
msgstr "Blocare conturi"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
-msgstr ""
+msgstr "Blocare și ștergere"
#. After-report action for a conversation
#: src/components/dms/AfterReportConversationDialog.tsx:167
msgctxt "button"
msgid "Block and leave"
-msgstr ""
+msgstr "Blocare și părăsire"
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
msgid "Block list"
@@ -1936,9 +2022,9 @@ msgstr "Blocați aceste conturi?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Blocare utilizator"
@@ -1946,17 +2032,17 @@ msgstr "Blocare utilizator"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Blocare utilizator"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Blocați utilizatorul și/sau ștergeți această conversație"
#: src/components/dms/AfterReportConversationDialog.tsx:217
msgid "Block user and/or leave this conversation"
-msgstr ""
+msgstr "Blocați utilizatorului și/sau părăsiți această conversație"
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Blocat"
@@ -1964,13 +2050,13 @@ msgstr "Blocat"
msgid "Blocked accounts"
msgstr "Conturi blocate"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Conturi blocate"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Conturile blocate nu pot răspunde în firele dvs., să vă menționeze, sau să interacționeze într-un fel cu dvs."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky este mai bun cu prietenii!"
msgid "Bluesky is more fun with friends"
msgstr "Bluesky este mai distractiv cu prietenii"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Bluesky este mai distractiv cu prietenii! Importați-vă contactele pentru a vedea cine este deja aici."
@@ -2053,7 +2139,7 @@ msgstr "Bluesky va alege un set de conturi recomandate de la persoanele din reț
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 "Bluesky nu va afișa profilul și postările dvs. pentru utilizatorii deconectați. Este posibil ca alte aplicații să nu onoreze această cerere. Acest lucru nu face contul dvs. privat."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky va verifica proactiv conturile notabile și autentice."
@@ -2137,23 +2223,30 @@ msgstr "Afaceri"
msgid "Button to go back to the home timeline"
msgstr "Buton pentru a reveni la cronologia principală"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "De {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "de <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr "De <0>{ownerDisplayName}0>"
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr "de <0>@{0}0>"
@@ -2181,7 +2274,7 @@ msgstr "Prin crearea unui cont sunteți de acord cu <0>Termenii de Serviciu0>.
msgid "By you"
msgstr "De dvs."
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Cameră"
@@ -2192,8 +2285,8 @@ msgstr "Cameră"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Cameră"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Cameră"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Anulare"
@@ -2248,9 +2341,9 @@ msgstr "Anulați reactivarea și deconectați-vă"
msgid "Cancel search"
msgstr "Anulare căutare"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Nu se poate interacționa cu un utilizator blocat"
@@ -2264,7 +2357,7 @@ msgstr "Subtitrări (.vtt)"
msgid "Captions & alt text"
msgstr "Subtitrări și text alternativ"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "carusel"
@@ -2297,7 +2390,7 @@ msgstr "Schimbați limba aplicației"
msgid "Change Handle"
msgstr "Modificare identificator"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Schimbați serviciul de moderare"
@@ -2310,11 +2403,11 @@ msgstr "Modificare parolă"
msgid "Change password dialog"
msgstr "Dialog modificare parolă"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Modificați categoria raportului"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Modificați motivul raportului"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Modificările la pachetul de pornire nu se vor reflecta în listă după creare. Lista va fi o copie independentă."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Conversații"
@@ -2361,6 +2454,13 @@ msgstr "Conversație ștearsă"
msgid "Chat ended"
msgstr "Conversație încheiată"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr "Linkul de invitație la conversație nu mai este disponibil"
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "Conversație blocată"
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Conversație amuțită"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
-msgstr ""
+msgstr "Destinatarul conversației nu este urmărit de expeditor."
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Inbox cerere de conversație"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Cereri de conversație"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Setări conversație"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Setări conversație"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Conversație dezamuțită"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Conversații"
@@ -2479,7 +2579,7 @@ msgstr "Selectați limbile postării"
msgid "Choose this color as your avatar"
msgstr "Alegeți această culoare ca avatar"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "Alegeți cine se poate alătura acestei conversații de grup și cum."
@@ -2533,7 +2633,7 @@ msgstr "Clic pentru informații"
msgid "click here"
msgstr "faceți clic aici"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "Faceți clic aici pentru a adăuga persoane la această conversație de grup"
@@ -2541,7 +2641,7 @@ msgstr "Faceți clic aici pentru a adăuga persoane la această conversație de
msgid "Click here to contact our support team"
msgstr "Faceți clic aici pentru a contacta echipa noastră de asistență"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "Faceți clic aici pentru a crea sau a gestiona un link de invitație pentru această conversație de grup"
@@ -2558,7 +2658,7 @@ msgstr "Faceți clic aici pentru a vă deconecta"
msgid "Click here to resend the email"
msgstr "Faceți clic aici pentru a retrimite e-mailul"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Faceți clic aici pentru a reporni procesul de verificare."
@@ -2567,11 +2667,11 @@ msgstr "Faceți clic aici pentru a reporni procesul de verificare."
msgid "Click here to update your birthdate"
msgstr "Faceți clic aici pentru a vă actualiza data nașterii"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Faceți clic aici pentru a vă actualiza e-mailul"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "Faceți clic aici pentru a vizualiza linkul de invitație pentru această discuție de grup"
@@ -2580,7 +2680,7 @@ msgstr "Faceți clic aici pentru a vizualiza linkul de invitație pentru aceast
msgid "Click to open tag menu for {0}"
msgstr "Faceți clic pentru a deschide meniul de etichete pentru {0}"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Faceți clic pentru a reîncerca mesajul eșuat"
@@ -2594,28 +2694,30 @@ msgstr "Faceți clic pentru a reîncerca mesajul eșuat"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Faceți clic pentru a reîncerca mesajul eșuat"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Închideți dialogul activ"
msgid "Close alert"
msgstr "Închideți alerta"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr "Închidere banner"
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Închideți sertarul de jos"
@@ -2657,8 +2763,9 @@ msgstr "Închideți sertarul de jos"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Închideți dialogul"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Închideți imaginea"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Închideți vizualizatorul de imagini"
@@ -2683,6 +2790,14 @@ msgstr "Închideți vizualizatorul de imagini"
msgid "Close menu"
msgstr "Închideți meniul"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr "Închideți bannerul cu cereri primite"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Închideți acest dialog"
@@ -2695,7 +2810,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:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Închide compozitorul de postări și elimină ciorna"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Benzi Desenate"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Regulile Comunității"
@@ -2740,12 +2855,12 @@ msgstr "Finalizați provocarea"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Compuneți o nouă postare"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
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"
@@ -2753,11 +2868,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:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "Se comprimă GIF-ul..."
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Se comprimă videoclipul..."
@@ -2780,7 +2895,7 @@ msgstr "Configurat în <0>setările de moderare0>."
msgid "Confirm"
msgstr "Confirmare"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Conținut & media"
msgid "Content and media"
msgstr "Conținut și media"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Conținut și media"
@@ -2889,7 +3004,7 @@ msgstr "Fundal meniu contextual, faceți clic pentru a închide meniul."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Continuați firul"
msgid "Continue thread..."
msgstr "Continuați firul..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Continuați la numele grupului"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Continuați la pasul următor"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Conversație"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Conversație ștearsă"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Conversație ștearsă"
@@ -2939,13 +3054,20 @@ msgstr "Conversație ștearsă"
#: src/components/dms/AfterReportConversationDialog.tsx:179
msgctxt "toast"
msgid "Conversation left"
-msgstr ""
+msgstr "Conversație părăsită"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr "Conversația nu a fost găsită."
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Versiunea de compilare a fost copiată în clipboard"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Copiere DID"
msgid "Copy host"
msgstr "Copiere gazdă"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Copiere link profil"
msgid "Copy link to starter pack"
msgstr "Copiere link pachet de pornire"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Copiere mesaj text"
@@ -3052,7 +3175,7 @@ msgstr "Copiați valoarea înregistrării TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Politica Privind Drepturile de Autor"
@@ -3065,7 +3188,7 @@ msgstr "Nu ne-am putut conecta la fluxul personalizat"
msgid "Could not connect to feed service"
msgstr "Nu ne-am putut conecta la serviciul de fluxuri"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr "Nu s-a putut prelua postarea"
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Nu s-au putut urmări toate potrivirile. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Nu s-a putut părăsi conversația"
@@ -3094,6 +3217,10 @@ msgstr "Nu s-a putut părăsi conversația"
msgid "Could not load feed"
msgstr "Nu s-a putut încărca fluxul"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr "Nu s-a putut încărca invitația"
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Prefix țară"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Creare"
@@ -3159,7 +3286,7 @@ msgstr "Creați un cod QR pentru un pachet de pornire"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Creați un pachet de pornire"
@@ -3174,13 +3301,14 @@ msgstr "Creați un pachet de pornire pentru mine"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Creați un cont"
msgid "Create an account without using this starter pack"
msgstr "Creați un cont fără a utiliza acest pachet de pornire"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Creați un avatar în schimb"
@@ -3206,7 +3334,7 @@ msgstr "Creați un avatar în schimb"
msgid "Create another"
msgstr "Creați altul"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Creare conversație de grup"
@@ -3228,19 +3356,20 @@ msgstr "Creare listă din pachet de pornire"
msgid "Create moderation list"
msgstr "Creare listă de moderare"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Creare cont nou"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr "Creați sau modificați un link de invitație pentru această conversație de grup"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Creați un raport pentru {0}"
@@ -3256,8 +3385,8 @@ msgstr "Creare listă de utilizatori"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Creat {0}"
@@ -3341,7 +3470,7 @@ msgstr "Implicit"
msgid "Default icons"
msgstr "Pictograme implicite"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Ștergeți înregistrarea declarației de conversație"
msgid "Delete contacts"
msgstr "Ștergere contacte"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Ștergere conversație"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Ștergeți pentru mine"
@@ -3399,11 +3528,11 @@ msgstr "Ștergeți pentru mine"
msgid "Delete list"
msgstr "Ștergere listă"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Ștergere mesaj"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Ștergere mesaj pentru mine"
@@ -3413,7 +3542,7 @@ msgstr "Șterge-mi contul"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Ștergere postare"
@@ -3434,12 +3563,12 @@ msgstr "Ștergeți această listă?"
msgid "Delete this post?"
msgstr "Ștergeți această postare?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Șters"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Cont șters"
@@ -3507,13 +3636,13 @@ msgstr "Dialog: ajustați cine poate interacționa cu această postare"
msgid "Dim"
msgstr "Luminozitate redusă"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Dezactivare"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Dezactivați A2F"
@@ -3521,7 +3650,7 @@ msgstr "Dezactivați A2F"
msgid "Disable captions"
msgstr "Dezactivare subtitrări"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Dezactivați e-mailul A2F"
@@ -3534,8 +3663,8 @@ msgstr "Dezactivare A2F prin e-mail"
msgid "Disable haptic feedback"
msgstr "Dezactivați feedback-ul haptic"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr "Dezactivare link"
@@ -3547,7 +3676,7 @@ msgstr "Dezactivați postările citat ale acestei postări"
msgid "Disable replies entirely"
msgstr "Dezactivați răspunsurile în întregime"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "Dezactivați acest link de invitație?"
@@ -3560,9 +3689,9 @@ msgstr "Dezactivat"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Renunțare"
msgid "Discard changes?"
msgstr "Renunțați la modificări?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Renunțați la schiță?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Renunțați la postare?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Deconectare conversație Germ"
@@ -3613,11 +3742,11 @@ msgstr "Descoperiți fluxuri noi"
msgid "Dismiss"
msgstr "Închidere"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Închideți bannerul"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Închidere eroare"
@@ -3673,7 +3802,7 @@ msgstr "Nu include nuditate."
msgid "Domain verified!"
msgstr "Domeniu verificat!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Nu aveți un cod sau aveți nevoie de unul nou? <0>Faceți clic aici.0>"
@@ -3681,7 +3810,7 @@ msgstr "Nu aveți un cod sau aveți nevoie de unul nou? <0>Faceți clic aici.0
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Nu vedeți un cod? <0>Faceți clic aici pentru a-l retrimite.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Nu vezi un e-mail? <0>Faceți clic aici pentru a-l retrimite.0>"
@@ -3700,16 +3829,19 @@ msgstr "Nu vă faceți griji! Toate mesajele existente și setările sunt salvat
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Finalizare"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Atingeți de două ori sau apăsați lung mesajul pentru a adăuga o reacție"
@@ -3741,15 +3873,6 @@ msgstr "Atingeți de două ori pentru a aprecia"
msgid "Download Bluesky"
msgstr "Descărcați Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Descărcare fișier CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Descărcare fișier CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Descărcați datele de conversație"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Descărcați datele de conversație"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Descărcare imagine"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr "Descărcare date profil"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr "Descărcare date profil"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Doxxing"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "de ex. Utilizatori care răspund în mod repetat cu reclame."
msgid "Eating disorders"
msgstr "Tulburări de alimentație"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Editare"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Editare avatar"
@@ -3847,14 +3978,14 @@ msgstr "Editare avatar"
msgid "Edit Feeds"
msgstr "Editare fluxuri"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Editare nume grup"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Editare imagine"
@@ -3868,7 +3999,16 @@ msgstr "Editare setări de interacțiune"
msgid "Edit interests"
msgstr "Editare interese"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr "Editare link de invitație"
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr "Editare link de invitație"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "Editare setări link"
@@ -3886,20 +4026,15 @@ msgstr "Editare stare în direct"
msgid "Edit moderation list"
msgstr "Editare listă de moderare"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Editați fluxurile mele"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "Editare nume"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Editați notificările de la {0}"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Editare persoane"
@@ -3925,7 +4060,7 @@ msgstr "Editare profil"
msgid "Edit starter pack"
msgstr "Editare pachet de pornire"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "Editați numele acestei conversații de grup"
@@ -3937,7 +4072,7 @@ msgstr "Editare listă de utilizatori"
msgid "Edit who can reply"
msgstr "Editați cine poate răspunde"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Editați-vă pachetul de pornire"
@@ -3971,7 +4106,7 @@ msgstr "Adresă de e-mail"
msgid "Email Resent"
msgstr "E-mailul a fost retrimis"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "E-mailul a fost trimis!"
@@ -4006,8 +4141,8 @@ msgstr "Încorporați această postare în website-ul dvs. Pur și simplu copia
msgid "Embedded video player"
msgstr "Cititor video încorporat"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Activare"
@@ -4025,7 +4160,7 @@ msgstr "Activare conținut pentru adulți"
msgid "Enable captions"
msgstr "Activare subtitrări"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Activare A2F prin e-mail"
@@ -4038,13 +4173,12 @@ msgstr "Activare conținut media extern"
msgid "Enable media players for"
msgstr "Activare cititor media pentru"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Activați notificările pentru un cont accesând profilul acestuia și apăsând pe <0>pictograma clopoțel0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Activare notificări push"
@@ -4091,8 +4225,8 @@ msgstr "Introduceți o parolă"
msgid "Enter a word or tag"
msgstr "Introduceți un cuvânt sau o etichetă"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Introduceți codul"
@@ -4143,7 +4277,7 @@ msgstr "Intrați în modul Ecran complet"
msgid "Entertainment"
msgstr "Divertisment"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Eroare"
@@ -4185,23 +4319,23 @@ msgstr "Toată lumea poate răspunde"
msgid "Everybody can reply to this post."
msgstr "Toată lumea poate răspunde la această postare."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Toți"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Toți"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Toți"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Toate celelalte"
@@ -4217,8 +4351,8 @@ msgstr "Exclude utilizatorii pe care îi urmăriți"
msgid "Exit fullscreen"
msgstr "Ieșire ecran complet"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Extindere text alternativ"
@@ -4226,7 +4360,7 @@ msgstr "Extindere text alternativ"
msgid "Expand list of users"
msgstr "Extindeți lista de utilizatori"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Extindeți sau restrângeți postarea completă la care răspundeți"
@@ -4238,7 +4372,7 @@ msgstr "Extindeți textul postării"
msgid "Expands or collapses post text"
msgstr "Extinde sau restrânge text postare"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Se așteaptă de la uri pentru a rezolva la o înregistrare"
@@ -4277,9 +4411,9 @@ msgstr "Conținut media explicit sau potențial deranjant."
msgid "Explicit sexual images."
msgstr "Imagini sexuale explicite."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Explorare"
@@ -4289,11 +4423,8 @@ msgstr "Explorare"
msgid "Explore the app"
msgstr "Explorați aplicația"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr "Exportare date conversație"
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "Exportați datele mele de conversație"
@@ -4322,7 +4453,7 @@ msgstr "Conținut media extern"
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 "Conținut media extern poate permite website-urilor să colecteze informații despre dvs. și dispozitivul dvs. Nicio informație nu este trimisă sau solicitată până nu apăsați butonul „redare”."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Preferințe conținut media extern"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Acceptarea conversației a eșuat"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr "Nu s-a putut accepta cererea de alăturare"
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Adăugarea reacției emoji a eșuat"
@@ -4354,7 +4489,7 @@ msgstr "Adăugarea la pachetul de pornire a eșuat"
msgid "Failed to change handle. Please try again."
msgstr "Nu s-a putut modifica identificatorul. Vă rugăm să încercați din nou."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "Copierea link-ului a eșuat"
@@ -4367,7 +4502,7 @@ msgstr "Nu s-a reușit crearea parolei de aplicație. Încercați din nou."
msgid "Failed to create conversation"
msgstr "Crearea conversației a eșuat"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "Crearea linkului de invitație a eșuat"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Ștergerea conversației a eșuat"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Ștergerea mesajului a eșuat"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "Dezactivarea linkului de invitație a eșuat"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Nu s-a reușit deconectarea conversației Germ. Eroare: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "Eroare la editarea numelui conversației de grup"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "Editarea linkului de invitație a eșuat"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "Activarea linkului de invitație a eșuat"
@@ -4427,19 +4562,27 @@ msgstr "Nu s-a reușit urmărirea tuturor prietenilor, vă rugăm să încercaț
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "Nu s-a reușit ascunderea sugestiei, vă rugăm să vă verificați conexiunea la internet"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr "Nu s-a putut ignora cererea de alăturare"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr "Nu s-a putut alătura conversației de grup. Vă rugăm să încercați din nou."
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "Lansarea aplicației SMS a eșuat"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "Nu s-a reușit părăsirea conversației de grup"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Încărcarea conversațiilor a eșuat"
@@ -4456,17 +4599,8 @@ msgstr "Încărcarea fluxurilor a eșuat"
msgid "Failed to load feeds preferences"
msgstr "Încărcarea preferințelor fluxurilor a eșuat"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Setările de notificare nu au putut fi încărcate."
@@ -4493,16 +4627,15 @@ msgstr "Încărcarea fluxurilor sugerate a eșuat"
msgid "Failed to load suggested follows"
msgstr "Încărcarea sugestiilor de urmărire a eșuat"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "Blocarea conversației de grup a eșuat"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Nu s-a reușit marcarea tuturor cererilor ca fiind citite"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "Nu s-a reușit amuțirea conversației de grup"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Nu s-a reușit fixarea postării"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Nu s-a reușit reconectarea la conversația Germ. Eroare: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Eroare la ștergerea datelor. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Ștergerea reacției emoji a eșuat"
@@ -4542,15 +4675,19 @@ msgstr "Eliminarea membrului din conversația de grup a eșuat"
msgid "Failed to remove verification"
msgstr "Eliminarea verificării a eșuat"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr "Nu s-a putut anula solicitarea. Vă rugăm să încercați din nou."
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
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:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Nu s-a putut salva schița"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "Salvarea imaginii a eșuat"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Salvarea intereselor a eșuat."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Trimiterea e-mailului a eșuat, încercați din nou."
@@ -4580,7 +4717,7 @@ msgstr "Trimiterea raportului a eșuat"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Nu s-a putut trimite contestația, vă rugăm să încercați din nou."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Nu s-a putut comuta amuțirea firului, vă rugăm încercați din nou"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr "Deblocarea conversației de grup a eșuat"
@@ -4597,12 +4734,12 @@ msgstr "Deblocarea conversației de grup a eșuat"
msgid "Failed to unpin list"
msgstr "Anularea fixării listei a eșuat"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Nu s-au actualizat setările de e-mail A2F"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "E-mailul nu a fost actualizat, vă rugăm să încercați din nou."
@@ -4614,7 +4751,7 @@ msgstr "Actualizarea fluxurilor a eșuat"
msgid "Failed to update notification declaration"
msgstr "Nu s-a putut actualiza declarația de notificare"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Nu s-a reușit actualizarea setărilor"
@@ -4641,7 +4778,7 @@ msgstr "Cont fals sau bot"
msgid "False information about elections"
msgstr "Informații false despre alegeri"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Flux"
@@ -4649,7 +4786,7 @@ msgstr "Flux"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Flux creat de {0}"
@@ -4662,7 +4799,7 @@ msgstr "Creator flux"
msgid "Feed identifier"
msgstr "Identificator flux"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Meniu flux"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Feedback trimis operatorului fluxului"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Fluxuri"
@@ -4739,7 +4876,7 @@ msgstr "Filtrați căutarea după limbă (în prezent: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Filtrați cine poate opta să primească notificări pentru activitatea dvs."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Filtrați de la cine primiți notificări"
@@ -4747,11 +4884,11 @@ msgstr "Filtrați de la cine primiți notificări"
msgid "Finalizing"
msgstr "Se finalizează"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "În sfârșit!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,19 +4905,19 @@ msgstr "Finanțe"
msgid "Find accounts to follow"
msgstr "Găsiți conturi de urmărit"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
-msgstr "Găsiți contacte"
+msgstr "Găsire contacte"
#: src/screens/Settings/FindContactsSettings.tsx:79
msgid "Find Friends"
-msgstr "Găsiți prieteni"
+msgstr "Găsire prieteni"
#: src/screens/Settings/Settings.tsx:216
#: src/screens/Settings/Settings.tsx:219
msgid "Find friends from contacts"
-msgstr "Găsiți prieteni din contacte"
+msgstr "Găsire prieteni din contacte"
#: src/components/contacts/screens/GetContacts.tsx:273
#: src/components/contacts/screens/GetContacts.tsx:287
@@ -4799,7 +4936,7 @@ msgstr "Găsiți persoane pe care să le urmăriți"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Găsiți postări, utilizatori și fluxuri pe Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Găsiți-vă prietenii"
@@ -4944,8 +5081,12 @@ msgstr "Urmărit de <0>{0}0> și <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Urmărit de <0>{0}0>, <1>{1}1> și de {2, plural, one {un alt utilizator} few {alți # utilizatori} other {alți # de utilizatori}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr "Urmăritorii se pot alătura"
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Urmăritori ai lui @{0} pe care îi știți"
@@ -4995,19 +5136,16 @@ msgstr "Urmăriți pe {handle}"
msgid "Following feed preferences"
msgstr "Preferințe flux Urmăriți"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Preferințe flux urmăriți"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Vă urmărește"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Vă urmărește"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Font"
@@ -5069,7 +5207,7 @@ msgstr "Ați uitat parola?"
msgid "Free your feed"
msgstr "Eliberați-vă fluxul"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "De la"
@@ -5086,35 +5224,35 @@ msgstr "De la <0/>"
msgid "Generate a starter pack"
msgstr "Generați un pachet de pornire"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Generare link de invitație"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Generare link de invitație nou"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Generare link nou"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Conversație Germ"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Conversație Germ deconectată"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Link conversație Germ"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Conversație Germ reconectată"
@@ -5122,46 +5260,50 @@ msgstr "Conversație Germ reconectată"
msgid "Get help"
msgstr "Obțineți ajutor"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr "Primiți notificări pentru înscrieri cu pachetele de pornire, verificări și alte activități."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Primiți notificări când oamenii vă urmăresc."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Primiți notificări când oamenii apreciază postările pe care le-ați repostat."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Primiți notificări când oamenii apreciază postările dvs."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr "Primiți notificări când oamenii vă apreciază repostările."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Primiți notificări când oamenii vă menționează."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Primiți notificări când oamenii citează postările dvs."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Primiți notificări când oamenii răspund la postările dvs."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Primiți notificări când oamenii repostează postările pe care le-ați repostat."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Primiți notificări când oamenii repostează postările dvs."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr "Primiți notificări când oamenii vă repostează repostările."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr "Primiți notificări când există activitate la postările la care sunteți abonat."
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Primiți notificări despre postări noi"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Primiți notificări despre postările și răspunsurile de la conturile pe care le alegeți."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Primiți notificări despre postările noi de la {name}"
@@ -5174,27 +5316,27 @@ msgstr "Primiți notificări despre activitatea acestui cont"
msgid "Get notified when {name} posts"
msgstr "Primește notificări când {name} postează"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Primiți notificări când cineva postează"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Începeți"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIF încărcat"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Oferiți profilului dvs. o față"
@@ -5213,20 +5355,21 @@ msgstr "Glorificarea violenței"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Mergeți înapoi"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Mergeți înapoi"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Reveniți la pasul anterior"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Mergeți la pagina acasă"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Mergeți la pagina acasă"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Mergeți la pagina acasă"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Mergeți la setările contului"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Mergeți la conversația cu {0}"
@@ -5299,12 +5440,12 @@ msgstr "Mergeți la următorul"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Mergeți la profil"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "Mergeți la conversația de grup numită „{chatName}”"
@@ -5320,8 +5461,8 @@ msgstr "Mergeți la profilul utilizatorului"
msgid "Going live is currently disabled for your account"
msgstr "Intrarea în direct este momentan dezactivată pentru contul dvs."
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Am înțeles"
@@ -5340,59 +5481,75 @@ msgstr "Conținut violent grafic"
msgid "Grooming or predatory behavior"
msgstr "Comportament de seducere și manipulare a minorilor (grooming)"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr "Conversație de grup"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "Dialog link de invitație in conversație de grup"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "Conversație de grup blocată"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "Conversație de grup amuțită"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr "Numele conversației de grup a fost actualizat"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "Setări conversație în grup"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "Conversație de grup deblocată"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "Conversație de grup dezamuțită"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr "Conversațiile de grup nu sunt încă disponibile"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr "Conversațiile de grup sunt acum disponibile"
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr "Conversațiile de grup pot avea maximum {0, plural, one {} few {# persoane}other {# de persoane}}."
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "Grupul este blocat"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Numele grupului"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr "Numele grupului este prea lung. Numărul maxim de caractere este {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Hacking sau atacuri de sistem"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Identificator prea lung. Vă rugăm să încercați unul mai scurt."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "Se întâmplă acum"
@@ -5446,7 +5603,7 @@ msgstr "Activități dăunătoare sau cu risc ridicat"
msgid "Harming or endangering minors"
msgstr "Exploatarea minorilor sau punerea lor în pericol"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Hashtag"
@@ -5458,8 +5615,8 @@ msgstr "Hashtag {tag}"
msgid "Hate speech"
msgstr "Discurs de ură"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Aveți un cod? <0>Faceți clic aici.0>"
@@ -5483,7 +5640,7 @@ msgstr "Păstrat de Bluesky timp de 7 zile pentru a preveni abuzurile, apoi ște
msgid "Help"
msgstr "Ajutor"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Ajutați oamenii să știe că nu sunteți un robot încărcând o imagine sau creând un avatar."
@@ -5652,18 +5809,18 @@ msgstr "Hmmmm, se pare că avem probleme la încărcarea acestor date. Vedeți m
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmmm, nu am putut încărca acest serviciu de moderare."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Stați așa! Oferim acces la videoclipuri treptat și încă sunteți pe lista de așteptare. Verificați din nou în curând!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Țineți-vă caii în frâu! Această caracteristică nu vă este încă disponibilă. Vă rugăm să verificați din nou mai târziu."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Acasă"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Dacă textul alternativ este lung, comutați starea extinsă a textului alternativ"
@@ -5757,7 +5914,7 @@ msgstr "Dacă ștergeți această listă, nu o veți putea recupera."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Dacă aveți propriul domeniu, îl puteți folosi ca identificator. Acest lucru vă permite să vă verificați identitatea automat. <0>Aflați mai multe aici.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Dacă trebuie să vă actualizați adresa de e-mail, <0>faceți clic aici0>."
@@ -5765,7 +5922,7 @@ msgstr "Dacă trebuie să vă actualizați adresa de e-mail, <0>faceți clic aic
msgid "If you remove this post, you won't be able to recover it."
msgstr "Dacă eliminați această postare, nu o veți putea recupera."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Dacă vă actualizați adresa de e-mail, e-mailul A2F va fi dezactivat."
@@ -5773,7 +5930,6 @@ msgstr "Dacă vă actualizați adresa de e-mail, e-mailul A2F va fi dezactivat."
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Dacă doriți să vă modificați parola, vă vom trimite un cod pentru a verifica dacă acesta este contul dvs."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Dacă doriți să restricționați cine poate primi notificări pentru activitatea contului dvs., puteți modifica acest lucru în <0>Setări → Confidențialitate și securitate0>."
@@ -5786,23 +5942,33 @@ msgstr "Dacă sunteți dezvoltator, vă puteți găzdui propriul server."
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr "Ignorare"
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr "Ignorați cererea de alăturare"
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Imagine"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "Imagine {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Imaginea {0} din {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "Imaginea {0} din {imageCount}"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Cache-ul imaginilor a fost golit, s-au eliberat {0}"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "Galerie imagini, {0} imagini"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "Imaginea este ascunsă din cauza setărilor dvs. de moderare."
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "Imaginea nu este disponibilă."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Opțiuni imagine"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Impersonare"
msgid "Import contacts"
msgstr "Importare contacte"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Importare contacte"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Importați contacte pentru a vă găsi prietenii"
@@ -5881,40 +6047,40 @@ msgstr "Importate pe {0}"
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 "Pentru a oferi o experiență adecvată vârstei, trebuie să vă știm data nașterii. Acest proces este un lucru unic, iar datele dvs. vor fi private."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "În aplicație"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Notificări în aplicație"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr "În aplicație, Toată lumea"
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr "În aplicație, Persoane pe care le urmăriți"
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr "În aplicație, Push"
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr "În aplicație, Push, Toată lumea"
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr "În aplicație, Push, Persoane pe care le urmăriți"
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "Inbox gol"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Inbox zero!"
@@ -5963,6 +6129,10 @@ msgstr "Vă prezentăm salvarea postărilor adică marcaje"
msgid "Invalid 2FA confirmation code."
msgstr "Cod de confirmare A2F invalid."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr "Cod de conversație de grup invalid."
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Identificator nevalid. Vă rugăm să încercați unul diferit."
@@ -5977,10 +6147,14 @@ msgstr "Setări de interacțiune invalide."
msgid "Invalid phone number"
msgstr "Număr de telefon invalid"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Subiect raport nevalid"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr "Cerere de anulare invalidă."
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Cod de verificare nevalid"
@@ -6010,12 +6184,12 @@ msgstr "Invitați prieteni"
msgid "Invite friends <0/>"
msgstr "Invitați prieteni <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Link de invitație"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "Link de invitație creat"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "Link de invitație dezactivat"
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Sunteți doar dvs. acum! Adăugați mai multe persoane la pachetul dvs. de pornire căutând mai sus."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID loc de muncă: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID loc de muncă: {0}"
msgid "Jobs"
msgstr "Locuri de muncă"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr "Alăturați-vă"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Locuri de muncă"
msgid "Join Bluesky"
msgstr "Alăturați-vă la Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr "Alăturați-vă conversație de grup"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr "Cererea de alăturare a fost anulată."
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Alăturați-vă conversației"
msgid "Journalism"
msgstr "Jurnalism"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Continuați editarea"
@@ -6143,7 +6331,7 @@ msgstr "Etichete de pe contul dvs."
msgid "Labels on your content"
msgstr "Etichete pe conținutul dvs."
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Setări limbă"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Cele mai recente"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Aflați mai multe despre acest avertisment"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Aflați mai multe despre verificarea pe Bluesky"
@@ -6239,7 +6427,7 @@ msgstr "Aflați mai multe despre verificarea pe Bluesky"
msgid "Learn more about what is public on Bluesky."
msgstr "Aflați mai multe despre ce este public pe Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Aflați mai multe despre link-ul dvs. de conversație Germ"
@@ -6252,8 +6440,8 @@ msgstr "Aflați mai multe în <0>setările contului.0>"
msgid "Learn more."
msgstr "Aflați mai multe."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Părăsire"
@@ -6276,7 +6464,7 @@ msgstr "Părăsiți conversația"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Părăsire conversație"
@@ -6284,13 +6472,13 @@ msgstr "Părăsire conversație"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Părăsire conversație"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "Părăsiți conversația de grup"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr "Părăsiți conversația de grup"
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Luminoasă"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Apreciere ({0, plural, one {o apreciere} few {# aprecieri} other {# de aprecieri}})"
@@ -6346,11 +6534,7 @@ msgstr "Apreciați 10 postări"
msgid "Like 10 posts to train the Discover feed"
msgstr "Apreciați 10 postări pentru a instrui fluxul Descoperă"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Notificări pentru aprecieri"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Apreciați acest flux"
@@ -6358,8 +6542,8 @@ msgstr "Apreciați acest flux"
msgid "Like this labeler"
msgstr "Apreciați acest etichetator"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Apreciat de"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Apreciat de {0, plural, one {un utilizator} few {# utilizatori} other {# de utilizatori}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Apreciat de {likeCount, plural, one {un utilizator} few {# utilizatori} other {# de utilizatori}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Aprecieri"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Aprecieri pentru repostările dvs."
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Notificări privind aprecierile postărilor dvs."
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Aprecieri la această postare"
@@ -6409,11 +6589,11 @@ msgstr "Aprecieri la această postare"
msgid "Linear"
msgstr "Liniar"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "Link copiat în clipboard"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Listă"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Listă dezamuțită"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Liste"
@@ -6545,7 +6725,7 @@ msgstr "Eveniment în direct afișat"
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."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "Caracteristica „în direct” este în beta"
@@ -6595,27 +6775,27 @@ msgstr "Se încarcă setările de interacțiune pentru postări..."
msgid "Loading..."
msgstr "Se Încarcă..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "Blocare"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "Blocare conversație de grup"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "Blocați conversația de grup?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "Blocați această conversație de grup"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "Blocat"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Jurnal"
@@ -6662,7 +6842,7 @@ msgstr "Se pare că vă lipsește un flux urmărit. <0>Faceți clic aici pentru
msgid "Love GIFs"
msgstr "GIF-uri dragoste"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Ajustați setările de e-mail pentru contul dvs."
@@ -6687,9 +6867,8 @@ msgstr "Gestionați setările de verificare"
msgid "Manage your muted words and tags"
msgstr "Gestionați-vă cuvintele și etichetele amuțite"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Marcați toate ca citite"
@@ -6698,13 +6877,12 @@ msgstr "Marcați toate ca citite"
msgid "Mark as read"
msgstr "Marcare ca citit"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Marcate toate ca citite"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Poate mai târziu"
@@ -6727,25 +6905,21 @@ 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."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Membri"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "Membrii încă pot citi istoricul conversațiilor, dar nu pot trimite mesaje noi."
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Notificări pentru mențiuni"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "utilizatori menționați"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Mențiuni"
@@ -6775,22 +6949,22 @@ msgstr "Trimiteți mesaj lui {0}"
msgid "Message {displayName}"
msgstr "Trimiteți mesaj lui {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Mesaj șters"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Mesaj șters"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Mesajul nu a putut fi trimis."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Mesaj de la @{0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Mesajul este prea lung"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "Mesajul este prea lung ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Opțiuni mesaj"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Mesaje"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr "Mesajele de la această persoană sunt ascunse cât timp ea vă blochează."
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr "Mesajele de la această persoană sunt ascunse cât timp o blocați."
@@ -6838,10 +7012,6 @@ msgstr "Miezul nopții"
msgid "Minor harassment or bullying"
msgstr "Hărțuire minoră sau bullying"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Notificări diverse"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Conținut înșelător"
@@ -6850,7 +7020,7 @@ msgstr "Conținut înșelător"
msgid "Missing media"
msgstr "Conținut media lipsă"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderare"
@@ -6894,7 +7064,7 @@ msgstr "Listă de moderare actualizată"
msgid "Moderation lists"
msgstr "Liste de moderare"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Liste de moderare"
@@ -6903,7 +7073,7 @@ msgstr "Liste de moderare"
msgid "moderation settings"
msgstr "setări de moderare"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Stări moderare"
@@ -6949,7 +7119,7 @@ msgstr "Filme"
msgid "Music"
msgstr "Muzică"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Dezactivare sunet"
@@ -6994,7 +7164,7 @@ msgstr "Amuțire listă"
msgid "Mute these accounts?"
msgstr "Amuțiți aceste conturi?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "Amuțiți conversația de grup"
@@ -7032,7 +7202,7 @@ msgstr "Amuțire fir"
msgid "Mute words & tags"
msgstr "Amuțire cuvinte & etichete"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "Amuțită"
@@ -7040,7 +7210,7 @@ msgstr "Amuțită"
msgid "Muted accounts"
msgstr "Conturi amuțite"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Conturi Amuțite"
@@ -7108,8 +7278,8 @@ msgstr "Navighează la următorul ecran"
msgid "Navigates to your profile"
msgstr "Navighează la profilul dvs."
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Doriți să raportați o încălcare a drepturilor de autor, o solicitare legală sau o problemă de conformitate cu reglementările?"
@@ -7136,34 +7306,34 @@ msgstr "{postsCount, plural, one {Postare nouă} few {Postări noi} other {Post
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{postsCount, plural, one {Postare nouă} few {Postări noi} other {Postări noi}} de la {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Conversație nouă"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "Conversație nouă cu {0}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "Conversație nouă cu {0} și {1}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "Conversație nouă cu {0}, {1}, și {memberCount, plural, one {încă {memberCount} utilizatori} few {încă {memberCount} utilizatori} other {încă {memberCount} de utilizatori}}."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Adresă e-mail nouă"
@@ -7174,29 +7344,25 @@ msgstr "Adresă e-mail nouă"
msgid "New Feature"
msgstr "Caracteristică nouă"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Notificări pentru urmăritori nou"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Urmăritori noi"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "Conversație de grup nouă"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "Conversație de grup nouă"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "Conversație de grup nouă cu:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Postare nouă"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Postare nouă"
@@ -7262,8 +7428,8 @@ msgstr "Știri"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "Nu s-au găsit GIF-uri pentru „{query}”."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "Nu există GIF-uri de afișat momentan. Încercați din nou imediat."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Nici o imagine"
@@ -7362,7 +7528,7 @@ msgstr "Nu mai urmăriți pe {0}"
msgid "No media yet"
msgstr "Niciun conținut media încă"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Niciun mesaj încă"
@@ -7378,12 +7544,12 @@ msgstr "Niciun nume"
msgid "No notifications yet!"
msgstr "Nu există notificări încă!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Nimeni"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Nimeni"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Niciun rezultat"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Niciun rezultat"
@@ -7509,10 +7675,6 @@ msgstr "Imagini intime neconsensuale"
msgid "Non-sexual Nudity"
msgstr "Nuditate non-sexuală"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Nimic"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "Indisponibil pe această platformă."
msgid "Not followed by anyone you’re following"
msgstr "Nu este urmărit de cineva pe care urmăriți"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Nu a fost găsit"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Nu sunteți gata să postați? Păstrați-vă cele mai bune idei în schițe până când va veni momentul potrivit."
@@ -7548,44 +7710,31 @@ msgstr "Notă: Această postare este vizibilă numai pentru utilizatorii conecta
msgid "Nothing saved yet"
msgstr "Nimic salvat încă"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Setări pentru notificări"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Sunete notificare"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Notificări"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Notificări pentru orice altceva, cum ar fi atunci când cineva se alătură prin intermediul unuia dintre pachetele dvs. de pornire."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "acum"
@@ -7601,7 +7750,7 @@ msgstr "Numărul trebuie să fie un număr de telefon"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Dezactivat"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "pe<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Resetare înregistrare"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
-msgstr ""
+msgstr "Unul dintre destinatarii selectați nu permite conversații de grup."
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Unul dintre destinatarii selectați v-a blocat și nu-i se pot scrie mesaje."
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr "Unul sau mai multe dintre fișierele selectate sunt prea mari. Dimensiunea maximă este de {VIDEO_MAX_SIZE_MB} MB."
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Una sau mai multe postări sunt prea lungi pentru a fi salvate ca o schiță. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Numărul maxim de caractere este de un caracter.} few {Numărul maxim de caractere este de # caractere.} other {Numărul maxim de caractere este de # de caractere.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Unei sau mai multor videoclipuri le lipsește textul alternativ."
@@ -7685,6 +7835,26 @@ msgstr "Unei sau mai multor videoclipuri le lipsește textul alternativ."
msgid "Only {0} can reply."
msgstr "Doar {0} poate răspunde."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr "Doar {0} din {1} {2, plural, one {imagine a fost adăugată} few {imagini au fost adăugate} other {de imagini au fost adăugate}}; limita este {MAX_GALLERY_IMAGES}"
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr "Doar administratorii pot accepta cereri de alăturare."
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr "Doar administratorii pot ignora cereri de alăturare."
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr "Doar urmăritorii se pot alătura acestei conversații de grup."
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Doar urmăritorii pe care îi urmăresc"
msgid "Only image files are supported"
msgstr "Doar fișierele imagine sunt acceptate"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr "Doar persoanele urmărite de {0} se pot alătura."
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr "Doar persoanele pe care proprietarul conversației le urmărește se pot alătura"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Doar fișierele WebVTT (.vtt) sunt acceptate"
@@ -7712,7 +7892,7 @@ msgstr "Hopa, ceva nu a mers bine!"
msgid "Oops!"
msgstr "Hopa!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Deschideți creatorul de avatar"
@@ -7720,12 +7900,17 @@ msgstr "Deschideți creatorul de avatar"
msgid "Open camera"
msgstr "Deschidere cameră"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr "Deschidere conversație"
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "Deschideți opțiunile pentru membrii conversației pentru {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Deschideți opțiunile conversației"
@@ -7739,16 +7924,16 @@ msgstr "Deschideți meniul sertar"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Deschideți selectorul de emoji"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Deschideți ecranul cu informații despre flux"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Deschideți meniul de opțiuni flux"
@@ -7760,13 +7945,17 @@ msgstr "Deschideți lista completă de emoji-uri"
msgid "Open Germ DM"
msgstr "Deschidere conversație Germ"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr "Deschidere conversație de grup"
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "Deschideți setările de conversație de grup"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Deschideți link-ul către {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Deschidere pachet"
msgid "Open post options menu"
msgstr "Deschideți meniul de opțiuni de postare"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Deschidere profil"
@@ -7817,6 +8006,10 @@ msgstr "Deschideți pagina storybook"
msgid "Open system log"
msgstr "Deschideți jurnalul sistemului"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr "Deschideți această conversație de grup"
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Deschide detalii suplimentare pentru o intrare de depanare"
msgid "Opens alt text dialog"
msgstr "Deschide dialogul de text alternativ"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Deschide camera pe dispozitiv"
@@ -7858,22 +8051,24 @@ msgstr "Deschide compozitorul"
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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr "Deschide galeria dispozitivului pentru a selecta până la {MAX_GALLERY_IMAGES, plural, one {} few {# imagini}other {# de imagini}}, sau un singur videoclip sau GIF."
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Deschide interfața pentru a crea un nou cont Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Deschide procesul pentru a vă conecta la contul dvs. Bluesky existent"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Deschide imaginea completă"
@@ -7890,7 +8085,7 @@ msgstr "Deschide selectorul de imagini"
msgid "Opens link {0}"
msgstr "Deschidere link {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Deschide dialogul de stare în direct"
@@ -7919,9 +8114,9 @@ msgstr "Deschide compozitorul de postări"
msgid "Opens this draft in the composer"
msgstr "Deschideți această schiță în compozitor"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Deschide acest profil"
@@ -7997,12 +8192,12 @@ msgstr "Postarea noastră de pe blog"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Echipa noastră de moderare a primit raportul dvs."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Moderatorii noștri au analizat rapoartele și au decis să dezactiveze accesul dvs. la conversații pe Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Moderatorii noștri au analizat rapoartele și au decis să dezactiveze
msgid "Owner"
msgstr "Proprietar"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr "Proprietarul trebuie să blocheze grupul înainte de al părăsii."
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Pagina nu a fost găsită"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Pagina nu a fost găsită"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Pauză videoclip"
msgid "People"
msgstr "Persoane"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "Persoanele urmărite de {ownerName} se pot alătura imediat"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "Persoanele urmărite de {ownerName} pot solicita să se alăture"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Persoane urmărite de @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Persoane care urmăresc @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Persoane pe care le urmăriți"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "Persoanele pe care le urmăresc se pot alătura imediat"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "Persoanele pe care le urmăresc pot solicita să se alăture"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Imagini destinate adulților."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Fixați fluxul"
@@ -8152,7 +8348,7 @@ msgstr "Fixați fluxul"
msgid "Pin to home"
msgstr "Fixare la acasă"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fixare la Acasă"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Fixat"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "Fixat {0} la pagina acasă"
@@ -8236,7 +8432,7 @@ msgstr "Vă rugăm să vă alegeți identificatorul."
msgid "Please choose your password."
msgstr "Vă rugăm să vă alegeți parola."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Vă rugăm faceți clic pe linkul din e-mailul pe care tocmai vi l-am trimis pentru a vă verifica noua adresă de e-mail. Acesta este un pas important pentru a vă permite să vă bucurați în continuare de toate caracteristicile Bluesky."
@@ -8244,7 +8440,7 @@ msgstr "Vă rugăm faceți clic pe linkul din e-mailul pe care tocmai vi l-am tr
msgid "Please complete the verification captcha."
msgstr "Vă rugăm să completați verificarea captcha."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Vă rugăm să vă confirmați adresa de e-mail pentru a încărca videoclipuri."
@@ -8265,14 +8461,14 @@ msgstr "Vă rugăm să introduceți o parolă. Trebuie să aibă cel puțin 8 ca
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Vă rugăm să introduceți un nume unic pentru această parolă de aplicație sau să utilizați unul generat la întâmplare."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Vă rugăm să introduceți un cod valid."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Vă rugăm să introduceți o adresă de e-mail validă."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Vă rugăm să introduceți o adresă de e-mail validă, ne-temporară. Este posibil să fie nevoie să accesați această adresă de e-mail în viitor."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Vă rugăm să introduceți mai jos codul pe care l-am trimis către <0>{0}0>."
@@ -8293,7 +8489,7 @@ msgstr "Vă rugăm să introduceți mai jos codul pe care l-am trimis către <0>
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Vă rugăm să introduceți codul primit și noua parolă pe care doriți să o utilizați."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Vă rugăm să introduceți codul de securitate pe care l-am trimis la adresa dvs. de e-mail anterioară."
@@ -8306,7 +8502,7 @@ msgstr "Vă rugăm să introduceți adresa dvs. de e-mail."
msgid "Please enter your invite code."
msgstr "Vă rugăm să introduceți codul de invitație."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Vă rugăm să introduceți noua adresă de e-mail."
@@ -8323,7 +8519,7 @@ msgstr "Vă rugăm să vă introduceți numele de utilizator"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Vă rugăm să explicați de ce credeți că această etichetă a fost aplicată incorect de {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Vă rugăm să explicați de ce credeți că conversațiile dvs. au fost dezactivate incorect"
@@ -8366,7 +8562,7 @@ msgstr "Vă rugăm să folosiți aplicația nativă pentru a vă importa contact
msgid "Please use the native app to sync your contacts."
msgstr "Vă rugăm să folosiți aplicația nativă pentru a sincroniza contactele."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Vă rugăm să vă verificați adresa de e-mail"
@@ -8383,7 +8579,7 @@ msgstr "Politică"
msgid "Porn"
msgstr "Pornografie"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Postare"
@@ -8403,12 +8599,12 @@ msgstr "Postați o fotografie"
msgid "Post a video"
msgstr "Postați un videoclip"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Postați-le pe toate"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Postați oricum"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Postare blocată"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Postare de @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Postare ștearsă"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Postarea nu a putut fi încărcată. Vă rugăm să vă verificați conexiunea la internet și să încercați din nou."
@@ -8454,7 +8650,7 @@ msgstr "Postare ascunsă de dvs."
msgid "Post interaction settings"
msgstr "Setări interacțiune postare"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Setări de interacțiune postare"
@@ -8464,8 +8660,8 @@ msgstr "Setări de interacțiune postare"
msgid "Post language selection"
msgstr "Selectare limbă postare"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Postați linkul"
@@ -8491,7 +8687,6 @@ msgstr "Fixarea postării a fost anulată"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Postările pot fi amuțite în funcție de text, etichete sau ambele. V
msgid "Posts hidden"
msgstr "Postări ascunse"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Postări, Răspunsuri"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Link potențial înșelător"
@@ -8528,6 +8719,7 @@ msgstr "Apăsați pentru a încerca reconectarea"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Apăsați pentru a reîncerca"
@@ -8536,7 +8728,7 @@ msgstr "Apăsați pentru a reîncerca"
msgid "Press to view followers of this account that you also follow"
msgstr "Apăsați pentru a vedea urmăritorii acestui cont pe care îi urmăriți și dvs."
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Previzualizare"
@@ -8559,21 +8751,20 @@ msgstr "Confidențialitate"
msgid "Privacy and security"
msgstr "Confidențialitate și securitate"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Confidențialitate și securitate"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Setări de confidențialitate și securitate"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ 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:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "Se procesează GIF-ul..."
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Se procesează videoclipul..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Se procesează..."
@@ -8602,8 +8793,8 @@ msgstr "Se procesează..."
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Publicați postarea"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
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:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Publicați răspunsurile"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Publicați răspunsul"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Push"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Notificări push"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr "Push, Toată lumea"
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr "Push, Persoane pe care le urmăriți"
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "Codul QR a fost descărcat!"
msgid "QR code saved to your camera roll!"
msgstr "Cod QR salvat în galeria dvs!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Notificări pentru citate"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Postări citat dezactivate"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Citate"
@@ -8733,11 +8920,11 @@ msgstr "Limită de solicitări depășită. Vă rugăm încercați din nou mai t
msgid "Re-attach quote"
msgstr "Reatașați citatul"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Reactivați linkul de invitație"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Reactivați linkul"
@@ -8745,8 +8932,8 @@ msgstr "Reactivați linkul"
msgid "React with {emoji}"
msgstr "Reacționează cu {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Reacții"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "citiți despre cum să utilizați filtrele de căutare"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Citiți postarea de pe blog"
@@ -8812,11 +8999,11 @@ msgstr "Oameni reali."
msgid "Reason for appeal"
msgstr "Motivul contestației"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Primiți notificări în aplicație"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Primiți notificări push"
@@ -8841,6 +9028,10 @@ msgstr "Recomandat"
msgid "Reconnect"
msgstr "Reconectare"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr "Reîmprospătați pagina pentru al vedea."
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Respingere"
msgid "Reject chat request"
msgstr "Respingere cerere de conversație"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Reîncărcați conversațiile"
@@ -8896,17 +9087,17 @@ msgstr "Eliminare cont"
msgid "Remove all contacts"
msgstr "Eliminați toate contactele"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Eliminare atașament"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Eliminare avatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Eliminare banner"
@@ -8914,8 +9105,9 @@ msgstr "Eliminare banner"
msgid "Remove caption file"
msgstr "Eliminare fișier subtitrare"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Eliminare încorporarea"
@@ -8933,8 +9125,8 @@ msgstr "Eliminați fluxul?"
msgid "Remove from chat"
msgstr "Eliminare din conversație"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Eliminare din postări salvate"
msgid "Remove from your feeds?"
msgstr "Eliminați din fluxurile dvs.?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Eliminare imagine"
@@ -9009,11 +9201,11 @@ msgstr "Eliminați verificarea"
msgid "Remove your verification for this account?"
msgstr "Eliminați verificarea dvs. pentru acest cont?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Eliminat de autor"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Eliminat de dvs."
@@ -9035,7 +9227,7 @@ msgstr "Eliminat din postări salvate"
msgid "Removed from starter pack"
msgstr "Eliminat din pachetul de pornire"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Răspuns la dvs."
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Răspunsuri"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Răspundeți"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Răspundeți ({0, plural, one {# răspuns} few {# răspunsuri} other {# de răspunsuri}})"
@@ -9125,10 +9316,6 @@ msgstr "Răspuns ascuns de autorul firului"
msgid "Reply Hidden by You"
msgstr "Răspuns ascuns de dvs."
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Notificări pentru răspunsuri"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Setările pentru răspunsuri sunt alese de autorul firului"
@@ -9146,9 +9333,9 @@ msgstr "Vizibilitatea răspunsului actualizată"
msgid "Reply was successfully hidden"
msgstr "Răspunsul a fost ascuns cu succes"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Raportare"
@@ -9164,13 +9351,13 @@ msgstr "Raportare cont"
msgid "Report conversation"
msgstr "Raportați conversația"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Dialog raportare"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Raportați fluxul"
@@ -9179,7 +9366,7 @@ msgstr "Raportați fluxul"
msgid "Report list"
msgstr "Raportare listă"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Raportare mesaj"
@@ -9199,8 +9386,8 @@ msgstr "Raportare pachet de pornire"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Raport trimis"
@@ -9213,7 +9400,7 @@ msgstr "Raportați această conversație"
msgid "Report this feed"
msgstr "Raportați acest flux"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "Raportați această conversație de grup"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Raportați această listă"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Raportați această transmisiune în direct"
@@ -9256,10 +9443,6 @@ msgstr "Repostare"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Repostare ({0, plural, one {O repostare} few {# repostări} other {# de repostări}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Notificări pentru repostări"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Repostat de dvs."
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Repostări"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Repostări ale acestei postări"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Repostări ale repostărilor dvs."
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Notificări pentru repostări ale repostărilor dvs."
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr "Cereți acces la conversația de grup"
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr "Cerere aprobată."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Solicitare cod"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr "Cerere ignorată."
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr "Cereți să vă alăturați"
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr "Solicitat"
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "Cereri"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr "Cereri de alăturare"
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Solicitați text alternativ înainte de a posta"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Solicitați un cod de e-mail pentru a vă conecta la contul dvs."
@@ -9328,7 +9534,11 @@ msgstr "Necesar pentru acest furnizor"
msgid "Required in your region"
msgstr "Necesar în regiunea dvs."
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr "Anulare cerere"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Retrimitere"
@@ -9393,15 +9603,16 @@ msgstr "Reîncearcă ultima acțiune, care a eșuat"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Reîncearcă ultima acțiune, care a eșuat"
msgid "Retry"
msgstr "Încercați din nou"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Reîncercați să încărcați opțiunile de raport"
@@ -9426,14 +9637,14 @@ msgstr "Reîncercați să încărcați opțiunile de raport"
msgid "Return to previous page"
msgstr "Reveniți la pagina anterioară"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Revine la acasă"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Revine la pagina anterioară"
@@ -9454,7 +9665,7 @@ msgstr "GIF-uri triste"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Salvați ziua de naștere"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Salvare modificări"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Salvați modificările?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Salvare schiță"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Salvați schița?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Salvați codul QR"
msgid "Save these options for next time"
msgstr "Salvați aceste opțiuni pentru data viitoare"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Salvare în fluxurile mele"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Salvate"
msgid "Saved Feeds"
msgstr "Fluxuri salvate"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Postări salvate"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Salvat în fluxurile dvs."
@@ -9551,8 +9764,8 @@ msgstr "Salvat în fluxurile dvs."
msgid "Say hello!"
msgstr "Spuneți salut!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "Spuneți salut cuiva"
@@ -9576,18 +9789,18 @@ msgstr "Derulați spre dreapta"
msgid "Scroll to top"
msgstr "Derulați până sus"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Căutare"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Căutați în postările lui @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Căutați în postările mele"
msgid "Search posts"
msgstr "Căutare postări"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Căutați profile"
msgid "Search..."
msgstr "Căutare..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Cautați profiluri"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Pas de securitate necesar"
@@ -9759,7 +9972,7 @@ msgstr "Selectați {langName}"
msgid "Select a color"
msgstr "Selectați o culoare"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Selectați un motiv"
@@ -9828,7 +10041,7 @@ msgstr "Selectare GIF"
msgid "Select GIF \"{0}\""
msgstr "Selectare GIF „{0}”"
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "Selectați membrii de conversație de grup"
@@ -9850,7 +10063,7 @@ msgstr "Selectare limbă..."
msgid "Select languages"
msgstr "Selectați limbile"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Selectați serviciul de moderare"
@@ -9904,11 +10117,11 @@ msgstr "Selectați interesele dvs. din opțiunile de mai jos"
msgid "Select your preferred language for translations in your feed."
msgstr "Selectați limba preferată pentru traduceri în flux."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Selectați canalele de notificare preferate"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "Selectarea mai multor tipuri de conținut media nu este acceptată."
@@ -9921,9 +10134,9 @@ msgstr "Comportamente periculoase sau autovătămare"
msgid "Send code"
msgstr "Trimitere cod"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Trimitere e-mail"
@@ -9939,7 +10152,7 @@ msgstr "Trimitere raport de eroare"
msgid "Send feedback"
msgstr "Trimiteți feedback"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Trimitere mesaj"
@@ -9952,7 +10165,7 @@ msgstr "Trimitere postare către {name}"
msgid "Send post to..."
msgstr "Trimitere postare către..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Trimitere raport către {title}"
@@ -9960,7 +10173,7 @@ msgstr "Trimitere raport către {title}"
msgid "Send the message from your phone"
msgstr "Trimiteți mesajul de pe telefonul dvs."
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Trimitere prin mesaj direct"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "Trimis pe {0}"
@@ -10015,14 +10228,14 @@ msgstr "Stabiliți data nașterii mai jos și vă veți întoarce la creat post
msgid "Sets email for password reset"
msgstr "Setează e-mailul pentru resetarea parolei"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Setări"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Setări pentru activitate de la alții"
@@ -10030,39 +10243,39 @@ msgstr "Setări pentru activitate de la alții"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Setări pentru a permite celorlalți să fie notificați despre postările dvs."
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Setări pentru notificări de aprecieri"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Setări pentru notificări de mențiuni"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Setări pentru notificări de urmăritor nou"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Setări pentru notificări pentru orice altceva"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Setări pentru notificări de aprecieri ale repostărilor dvs."
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Setări pentru notificări de repostări ale repostărilor dvs."
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Setări pentru notificări de citate"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Setări pentru notificări de răspuns"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Setări pentru notificări de repostare"
@@ -10079,10 +10292,12 @@ msgstr "Activitate sexuală sau nuditate erotică."
msgid "Sexually Suggestive"
msgstr "Sugestiv Sexual"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Partajare DID autor"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Partajați imaginea"
@@ -10124,7 +10339,7 @@ msgstr "Distribuiți postarea at:// URI"
msgid "Share QR code"
msgstr "Distribuiți codul QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Distribuiți acest flux"
@@ -10151,7 +10366,7 @@ msgstr "Partajare via..."
msgid "Share your contacts to find friends"
msgstr "Partajați-vă contactele pentru a găsi prieteni"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Tester Preferințe Partajate"
@@ -10167,16 +10382,16 @@ msgstr "Afișare text alternativ"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Afișați oricum"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "Afișare etichetă de automatizare"
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Afișează avertismente și filtrează din fluxuri"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Afișați când sunteți în direct"
@@ -10297,15 +10512,17 @@ msgstr "Afișează conținutul"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Conectați-vă sau creați un cont"
msgid "Sign in or create your account to join the conversation!"
msgstr "Conectați-vă sau creați-vă un cont pentru a vă alătura conversației!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr "Conectați-vă pentru a accepta invitație."
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Conectați-vă la un cont care nu este listat"
@@ -10337,6 +10558,10 @@ msgstr "Conectați-vă la un cont care nu este listat"
msgid "Sign in to Bluesky or create a new account"
msgstr "Conectați-vă la Bluesky sau creați un cont nou"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr "Conectați-vă pentru a solicita acces la această conversație de grup."
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Conectați-vă pentru a vizualiza postarea"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Deconectare"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Deconectare"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Deconectare?"
@@ -10391,7 +10616,7 @@ msgstr "Omitere"
msgid "Skip contact sharing and continue to the app"
msgstr "Omiteți partajarea contactelor și continuați spre aplicație"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Omiteți postările goale?"
@@ -10405,7 +10630,7 @@ msgstr "Omiteți introducerea și începeți să vă folosiți contul"
msgid "Skip to next step"
msgstr "Omiteți la pasul următor"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "glisare"
@@ -10413,7 +10638,7 @@ msgstr "glisare"
msgid "Smaller"
msgstr "Mai mic"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Amânare memento"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "Cineva a părăsit grupul"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Cineva a reacționat cu {0}"
@@ -10487,17 +10712,22 @@ msgstr "Cineva a fost eliminat(ă)"
msgid "Someone was removed from the group"
msgstr "Cineva a fost eliminat din grup"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr "Ceva nou este aici"
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Ceva nu a fost în regulă cu datele pe care încercați să le raportați. Vă rugăm să contactați asistența."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Ceva nu a mers bine"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Ceva nu a mers bine!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Ceva nu a mers bine, vă rugăm încercați din nou."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Ceva n-a mers bine. Vă rugăm să încercați din nou."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "E ceva în neregulă? Anunțați-ne."
@@ -10568,7 +10798,7 @@ msgstr "Sport"
msgid "Start a conversation, and it will appear here."
msgstr "Începeți o conversație și ea va apărea aici."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Începeți o conversație nouă"
@@ -10582,17 +10812,17 @@ msgstr "Începeți să adaugați persoane"
msgid "Start adding people!"
msgstr "Începeți să adaugați persoane!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Începeți conversația"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Începeți conversația cu {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Pachet de pornire"
@@ -10654,12 +10884,12 @@ msgstr "Spațiu de stocare curățat, trebuie să reporniți aplicația acum."
msgid "Stored as part of a secure code for matching with others"
msgstr "Stocat ca parte a unui cod securizat pentru a se potrivi cu alții"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Storybook"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 "Transmiteți în direct pe Twitch? Setați-vă starea în direct pe Bluesky pentru a adăuga o insignă avatarului dvs. Atingând-o, utilizatorii vor fi redirecționați direct către transmisiunea dvs."
@@ -10671,8 +10901,8 @@ msgstr "Transmiteți în direct pe Twitch? Setați-vă starea în direct pe Blue
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Trimitere"
@@ -10684,9 +10914,9 @@ msgstr "Depuneți contestație"
msgid "Submit Appeal"
msgstr "Depuneți contestație"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Trimiteți raportul"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Abonare"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr "Abonați-vă pe {0}"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr "Abonați-vă la {publicationTitle} pe {0}"
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Succes"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Succes!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr "V-ați alăturat cu succes conversației de grup!"
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Verificat cu succes"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Sugerate"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Apus de soare"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,20 +11014,20 @@ msgstr "Suport"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Această caracteristică nu este încă disponibilă în țara dvs.! Vă rugăm să reveniți mai târziu."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
-msgstr ""
+msgstr "Conturile suspendate nu pot participa la o conversație de grup."
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
-msgstr ""
+msgstr "Conturile suspendate nu pot participa la conversație."
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Comutare cont"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Comutare conturi"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Comutați la {0}"
@@ -10828,7 +11062,7 @@ msgstr "Doar etichete"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Atingeți mai jos pentru a permite aplicației Bluesky să vă acceseze locația GPS. Vom folosi apoi aceste date pentru a determina cu mai multă precizie conținutul și caracteristicile disponibile în regiunea dvs."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr "Atingeți pentru detalii"
@@ -10854,33 +11088,51 @@ msgstr "Atingeți pentru a confirma că înțelegeți și sunteți de acord cu a
msgid "Tap to close context menu"
msgstr "Atingeți pentru a închide meniul contextual"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr "Atingeți pentru a copia acest link de invitație"
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Atingeți pentru a închide"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr "Atingeți pentru a vă alătura imediat acestei conversații de grup"
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr "Atingeți pentru a deschide această conversație de grup"
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Atingeți pentru a elimina"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "Atingeți pentru a vă elimina reacția {0}"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr "Atingeți pentru a solicita acces pentru a vă alătura acestei conversații de grup"
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Atingeți pentru a reîncerca"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "Atingeți pentru a afișa {0} reacții"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Atingeți pentru a afișa toate reacțiile"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Atingeți pentru a vizualiza reacțiile"
@@ -10924,7 +11176,7 @@ msgstr "Termeni"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Text & etichete"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Câmp introducere text"
@@ -11049,6 +11301,11 @@ msgstr "Următoarele setări vor fi utilizate ca valori implicite atunci când c
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "Legislația din regiunea dvs. necesită verificarea vârstei pentru a accesa unele caracteristici. Atingeți pentru a afla mai multe."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr "Limita de membri a fost atinsă."
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "Postarea la care răspundeți a fost marcată ca fiind scrisă în {suggestedLanguageName} de către autorul său. Doriții să răspundeți în <0>{suggestedLanguageName}0>?"
@@ -11057,10 +11314,10 @@ msgstr "Postarea la care răspundeți a fost marcată ca fiind scrisă în {sugg
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Politica de Confidențialitate a fost mutată la <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
-msgstr "Videoclipul selectat este mai mare de {videoSize} MB. Vă rugăm să încercați din nou cu un fișier mai mic."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
+msgstr "Videoclipul selectat este mai mare de {VIDEO_MAX_SIZE_MB} MB. Vă rugăm să încercați din nou cu un fișier mai mic."
#: src/lib/hooks/useCleanError.ts:41
#: src/lib/strings/errors.ts:19
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "Nu există niciun link de invitație pentru această conversație de grup."
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "A apărut o problemă la încărcarea GIF-urilor. Verificați-vă conexiunea și încercați din nou."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "A apărut o problemă cu conexiunea dvs. la internet, vă rugăm să încercați din nou"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "A apărut o problemă cu conexiunea dvs. la internet, vă rugăm să în
msgid "There was an issue contacting the server"
msgstr "A apărut o problemă la contactarea serverului"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "A apărut o problemă la contactarea serverului, vă rugăm să vă verificați conexiunea la internet și încercați din nou."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "A apărut o problemă la preluarea notificărilor. Atingeți aici pentru a încerca din nou."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "A apărut o problemă la preluarea postărilor. Atingeți aici pentru a încerca din nou."
@@ -11161,7 +11420,7 @@ msgstr "A apărut o problemă la preluarea informațiilor dvs. de serviciu"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "A apărut o problemă la eliminarea acestui flux. Vă rugăm să vă verificați conexiunea la internet și să încercați din nou."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Această contestație va fi trimisă la <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Această contestație va fi trimisă la serviciul de moderare al companiei Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Această contestație va fi trimisă la serviciul de moderare al compani
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "Acest autor a ales să facă postările vizibile doar persoanelor care sunt conectate."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "Acest buton permite celorlalți să deschidă aplicația Germ DM pentru a vă trimite un mesaj. Puteți gestiona vizibilitatea din aplicația Germ DM, sau puteți deconecta contul Bluesky de la Germ DM apăsând butonul de mai jos."
@@ -11271,7 +11530,12 @@ msgstr "Acest buton permite celorlalți să deschidă aplicația Germ DM pentru
msgid "This chat has ended"
msgstr "Această conversație s-a încheiat"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr "Această conversație este plină"
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "Această conversație este blocată"
@@ -11310,7 +11574,11 @@ msgstr "Acest conținut nu este disponibil deoarece unul dintre utilizatorii imp
msgid "This content is not viewable without a Bluesky account."
msgstr "Acest conținut nu poate fi vizualizat fără un cont Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr "Această conversație este blocată."
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Această conversație este cu un cont șters sau dezactivat. Apăsați p
msgid "This draft will be permanently deleted."
msgstr "Această schiță va fi ștearsă permanent."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Acest e-mail este deja asociat contului dvs."
@@ -11360,7 +11628,7 @@ msgstr "Acest flux nu mai este online. În schimb, afișăm <0>Descoperă0>."
msgid "This handle is reserved. Please try a different one."
msgstr "Acest identificator este rezervat. Vă rugăm să încercați unul diferit."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "Această imagine nu a putut fi utilizată. Încercați un alt format ca .jpg sau .png."
@@ -11368,6 +11636,18 @@ msgstr "Această imagine nu a putut fi utilizată. Încercați un alt format ca
msgid "This information is private and not shared with other users."
msgstr "Această informație este privată și nu este partajată cu alți utilizatori."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr "Acest link de invitație a fost dezactivat."
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr "Acest link de invitație a expirat"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr "Acest link de invitație este invalid"
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "Aceasta este o stare goală"
@@ -11377,7 +11657,7 @@ msgstr "Aceasta este o stare goală"
msgid "This is not a valid link"
msgstr "Acesta nu este un link valid"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "Această etichetă anunță lumea că acest cont este automatizat. Dacă este activată, această etichetă apare lângă numele contului în profilul și postările acestuia. Poate fi activată sau dezactivată oricând."
@@ -11410,13 +11690,13 @@ msgstr "Această listă - creată de dvs. - conține posibile încălcări ale r
msgid "This list is empty."
msgstr "Această listă este goală."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr "Acest mesaj este ascuns deoarece acest utilizator vă blochează."
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr "Acest mesaj este ascuns deoarece blocați acest utilizator."
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Autorul acestei postări a dezactivat postările citate."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Acest răspuns va fi sortat într-o secțiune ascunsă în partea de jos a firului dvs. și va amuții notificările pentru răspunsurile ulterioare - atât pentru dvs., cât și pentru ceilalți."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "Acest ecran este disponibil doar pentru conversațiile de grup."
@@ -11494,18 +11775,18 @@ msgstr "Acest utilizator nu are un nume afișat, și prin urmare, nu poate fi ve
msgid "This user doesn't have any followers."
msgstr "Acest utilizator nu are urmăritori."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Acest utilizator v-a blocat și nu-i se pot scrie mesaje."
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr "Acest utilizator v-a blocat. Nu puteți vizualiza conținutul acestuia."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
-msgstr ""
+msgstr "Acest utilizator a dezactivat conversația și nu-i se pot scrie mesaje."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
@@ -11574,7 +11855,7 @@ msgstr "Preferințe fir"
msgid "Threaded"
msgstr "Fire"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Preferințe fire"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Pentru a dezactiva metoda A2F prin e-mail, vă rugăm să verificați accesul la adresa de e-mail."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Pentru a dezactiva metoda A2F prin e-mail, verificați accesul la <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Sus"
msgid "Top replies first"
msgstr "Răspunsurile de top primele"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Subiect"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Videoclipuri în tendințe"
msgid "Trolling"
msgstr "Trolling"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "Încrederea rezultă din relații, comunități și context comun, așa că activăm și <0>verificatori de încredere0>: organizații care pot emite în mod direct verificări."
@@ -11763,13 +12044,17 @@ msgstr "Serviciul dvs. nu poate fi contactat. Vă rugăm să vă verificați con
msgid "Unable to delete"
msgstr "Imposibil de șters"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
-msgid "Unable to find a selected recipient."
-msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr "Imposibil de preluat cererile de alăturare."
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr "Imposibil de găsit destinatarul selectat."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
-msgstr ""
+msgstr "Imposibil de găsit destinatarul selectat."
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
@@ -11791,7 +12076,7 @@ msgstr "Indisponibil"
msgid "Unavailable feed information"
msgstr "Informații flux indisponibile"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Deblocare listă"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Anulare"
@@ -11872,7 +12157,7 @@ msgstr "Nu mai urmăriți contul"
msgid "Unfollows the user"
msgstr "Anulează urmărirea utilizatorului"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Din păcate, niciunul dintre etichetatorii la care sunteți abonat nu acceptă acest tip de raport."
@@ -11904,13 +12189,13 @@ msgstr "Conținut pentru adulți care nu este etichetat ca atare"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Conținut pentru adulți care nu este etichetat ca atare, abuziv sau neconsensual"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Nu mai apreciați ({0, plural, one {o apreciere} few {# aprecieri} other {# de aprecieri}})"
@@ -11918,7 +12203,7 @@ msgstr "Nu mai apreciați ({0, plural, one {o apreciere} few {# aprecieri} other
msgid "Unlock chat"
msgstr "Deblocare conversație"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr "Deblocați această conversație de grup"
@@ -11955,7 +12240,7 @@ msgstr "Dezamuțire conversație"
msgid "Unmute list"
msgstr "Dezamuțire listă"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "Dezamuțiți această conversație de grup"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Anulați fixarea"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Anulați fixarea fluxului"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Anulați fixarea de la acasă"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Anulați fixarea listei de moderare"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "Fixarea {0} anulată de la pagina Acasă"
@@ -12030,11 +12315,11 @@ msgstr "Dezabonare de la acest etichetator"
msgid "Unsubscribed from list"
msgstr "Dezabonat de la listă"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "Conținut clipboard neacceptat"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Tip videoclip neacceptat: {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "Actualizare"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Actualizați <0>{displayName}0> în Liste"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr "Actualizați aplicația"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Actualizare e-mail"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Actualizați linkul de invitație"
@@ -12065,11 +12354,19 @@ msgstr "Actualizați linkul de invitație"
msgid "Update to {domain}"
msgstr "Actualizare la {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr "Actualizați-vă aplicația"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr "Actualizați-vă aplicația pentru a o vedea."
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "Actualizați aplicația la cea mai recentă versiune pentru a vă alătura!"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Actualizați-vă e-mailul"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Actualizarea vizibilității răspunsului a eșuat"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Încărcați o fotografie în schimb"
@@ -12098,39 +12395,40 @@ msgstr "Încărcați o fotografie în schimb"
msgid "Upload a text file to:"
msgstr "Încărcați un fișier text la:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Încărcați de la cameră"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Încărcați din fișiere"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Încărcați din bibliotecă"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "Se încarcă GIF-ul..."
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Se încarcă imaginile..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Se încarcă miniatura link-ului..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Se încarcă videoclipul..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "utilizator"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Utilizator blocat"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Listă de utilizatori creată de {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "Listă de utilizatori creată de {0}"
@@ -12255,12 +12553,12 @@ msgstr "utilizatori urmăriți de <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr "utilizatorii care urmăresc pe <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "Utilizatori pe care îi urmăriți"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Utilizatori pe care îi urmăriți"
@@ -12277,7 +12575,7 @@ msgstr "Verificare eșuată, încercați din nou."
msgid "Verification settings"
msgstr "Setări de verificare"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Setări de verificare"
@@ -12304,8 +12602,8 @@ msgstr "Verificați din nou"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Verificați codul"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Verificați înregistrarea DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Verificați codul de e-mail"
@@ -12349,7 +12647,7 @@ msgstr "Verificați acest cont?"
msgid "Verify your age"
msgstr "Verificați-vă vârsta"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Versiune {0}"
msgid "Video"
msgstr "Videoclip"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Procesarea videoclipului a eșuat"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Flux video"
@@ -12419,7 +12717,7 @@ msgstr "Videoclipul nu a fost găsit."
msgid "Video settings"
msgstr "Setări videoclip"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Videoclip încărcat"
@@ -12432,18 +12730,18 @@ msgstr "Videoclip: {0}"
msgid "Videos"
msgstr "Videoclipuri"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
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:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Vizualizare"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr "Vizualizați {0}"
@@ -12455,7 +12753,7 @@ msgstr "Vizualizați avatarul lui {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Vizualizați profilul lui {0}"
msgid "View {0}’s profile"
msgstr "Vizualizați profilul {0}"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "Vizualizați profilul utilizatorului {displayName}"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr "Vizualizare {publicationTitle}"
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr "Vizualizați profilul utilizatorului @{0}"
@@ -12503,10 +12801,18 @@ msgstr "Vizualizare detalii"
msgid "View full thread"
msgstr "Vizualizați întregul fir"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr "Vizualizați cererile de adăugare la conversația de grup"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr "Vizualizați cererile primite"
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr "Vizualizați cererile de alăturare primite acestei conversații de grup"
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Vizualizați informații despre aceste etichete"
@@ -12522,7 +12828,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:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Vizualizare postare"
@@ -12539,10 +12845,10 @@ msgstr "Vizualizați profilul"
msgid "View profile banner"
msgstr "Vizualizați bannerul profilului"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr "Vizualizare publicare"
@@ -12550,7 +12856,7 @@ msgstr "Vizualizare publicare"
msgid "View the avatar"
msgstr "Vizualizați avatarul"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "Vizualizați linkul de invitație pentru această conversație de grup"
@@ -12563,7 +12869,7 @@ msgstr "Vizualizați serviciul de etichetare furnizat de @{0}"
msgid "View this user's verifications"
msgstr "Vizualizați verificările acestui utilizator"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Vizualizați utilizatorii care apreciază acest flux"
@@ -12596,8 +12902,8 @@ msgstr "Vizualizați conturile dvs. amuțite"
msgid "View your verifications"
msgstr "Vizualizați-vă verificările"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Vizualizează imaginea completă"
@@ -12640,8 +12946,8 @@ msgstr "Avertizare conținut"
msgid "Warn content and filter from feeds"
msgstr "Avertizați conținutul și filtrați din fluxuri"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Vizionați acum"
@@ -12665,10 +12971,14 @@ msgstr "Nu am putut găsi niciun rezultat pentru acea etichetă."
msgid "We couldn't find any results for that topic."
msgstr "Nu am putut găsi niciun rezultat pentru acest subiect."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Nu am putut încărca această conversație"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr "Nu am putut încărca cererile de alăturare ale acestei conversații"
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "Nu am putut încărca setările acestei conversații"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Vă recomandăm să selectați cel puțin două interese."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Am trimis un e-mail la <0>{0}0> care conține un link. Faceți clic pe el pentru a finaliza procesul de verificare a e-mailului."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Nu am reușit să determinăm dacă aveți permisiunea de a încărca videoclipuri. Vă rugăm să încercați din nou."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "Vă vom anunța când vă vom găsi prietenii."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Vom trimite un e-mail la <0>{0}0> care conține un link. Faceți clic pe el pentru a finaliza procesul de verificare a e-mailului."
@@ -12779,12 +13089,12 @@ msgstr "Întâmpinăm probleme la inițializarea procesului de verificare a vâr
msgid "We're having network issues, try again"
msgstr "Avem probleme cu rețeaua, încercați din nou"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "Avem probleme cu rețeaua, încercați din nou"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Introducem un nou nivel de verificare pe Bluesky - o bifă ușor de văzut."
@@ -12814,12 +13124,12 @@ msgstr "Ne pare rău, dar căutarea dvs. nu a putut fi finalizată. Vă rugăm s
msgid "We're sorry, you cannot access this screen at this time."
msgstr "Ne pare rău, nu puteți accesa acest ecran în acest moment."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
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."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
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."
@@ -12865,12 +13175,12 @@ 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.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Care-i treaba?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Când atingeți o bifă, veți vedea ce organizații au acordat verificarea."
@@ -12878,7 +13188,7 @@ msgstr "Când atingeți o bifă, veți vedea ce organizații au acordat verifica
msgid "Who can interact with this post?"
msgstr "Cine poate interacționa cu această postare?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "Cine se poate alătura acestei conversații de grup și cum"
@@ -12887,13 +13197,13 @@ msgstr "Cine se poate alătura acestei conversații de grup și cum"
msgid "Who can reply"
msgstr "Cine poate răspunde"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Cine poate verifica?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Hopa!"
@@ -12939,19 +13249,19 @@ msgstr "De ce ar trebui revizuit acest pachet de pornire?"
msgid "Why should this user be reviewed?"
msgstr "De ce ar trebui revizuit acest utilizator?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
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/components/dms/AfterReportConversationDialog.tsx:47
msgid "Would you like to block this user and/or leave this conversation?"
-msgstr ""
+msgstr "Doriți să blocați acest utilizator și/sau să părăsiți această conversație?"
#: src/view/com/composer/drafts/DraftsButton.tsx:110
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:1320
+#: src/view/com/composer/Composer.tsx:1373
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?"
@@ -12960,12 +13270,12 @@ msgstr "Doriți să salvați acest lucru ca schiță pentru a o edita mai târzi
msgid "Write a post"
msgstr "Scrieți o postare"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Scrieți o postare"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Scrieți-vă răspunsul"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "DID greșit returnat de la server. Primit: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "Tipul greșit de conversație"
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "Accesați Bluesky dintr-o regiune care, în mod legal, ne cere să vă verificăm vârsta înainte de a vă permite să accesați aplicația."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr "Dvs. blocați pe {0}"
@@ -13068,7 +13379,7 @@ msgstr "Sunteți în direct"
msgid "You are no longer live"
msgstr "Nu mai sunteți în direct"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Nu aveți voie să încărcați videoclipuri."
@@ -13117,12 +13428,12 @@ msgstr "Puteți renunța întotdeauna și șterge datele dvs."
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Puteți alege dacă notificările de conversații să aibă sunet în setările de conversație în cadrul aplicației"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Puteți continua conversațiile în curs, indiferent de setarea pe care o alegeți."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Acum puteți alege să fiți notificat când anumite persoane postează. Dacă există cineva de la care doriți actualizări la timp, accesați-le profilul și găsiși noua pictogramă clopoțel lângă butonul „Urmărire”."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr "Puteți adăuga până la {MAX_GALLERY_IMAGES, plural, one {} few {# imagini}other {# de imagini}} per postare"
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "Puteți salva doar schițe până la 1000 de caractere."
@@ -13139,11 +13455,11 @@ msgstr "Puteți salva doar schițe până la 1000 de caractere."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "Puteți salva doar schițe până la 1000 de caractere. Doriți să renunțați la această postare înainte de a vizualiza schițele?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
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:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Puteți selecta doar un singur videoclip odată."
@@ -13155,10 +13471,10 @@ msgstr "Puteți să vă reactivați contul pentru a continua să vă conectați.
msgid "You can read chat history but can’t send new messages."
msgstr "Puteți citi istoricul conversației, dar nu puteți trimite mesaje noi."
-#. 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: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."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr "Puteți selecta până la {MAX_GALLERY_IMAGES, plural, one {} few {# imagini}other {# de imagini}} în total."
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,9 +13482,9 @@ msgstr "Puteți selecta până la {MAX_IMAGES, plural, one {} few {# imagini}oth
msgid "You can update this later from your settings."
msgstr "Puteți actualiza acest lucru mai târziu în setări."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
-msgstr ""
+msgstr "Încă nu puteți crea conversații de grup."
#: src/lib/hooks/useCleanError.ts:54
#: src/lib/strings/errors.ts:28
@@ -13197,6 +13513,10 @@ msgstr "Nu aveți fluxuri salvate."
msgid "You got here first"
msgstr "Ați ajuns primul aici"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr "Ați fost eliminat anterior din acest grup și nu vă puteți alătura folosind acest link."
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
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?"
@@ -13336,7 +13656,7 @@ msgstr "Trebuie să urmăriți cel puțin alte șapte persoane pentru a genera u
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "Trebuie să permiteți accesul la biblioteca dvs. media."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Probabil doriți să reporniți aplicația acum."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Ați reacționat cu {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "V-ați schimbat recent data nașterii"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Veți fi deconectat de la toate conturile dvs."
@@ -13390,7 +13710,7 @@ msgstr "Acum veți primi notificări pentru acest fir"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Veți primi un e-mail cu un „cod de resetare”. Introduceți codul aici, apoi introduceți noua parolă."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "Nu vă veți putea alătura decât dacă sunteți invitat."
@@ -13463,7 +13783,7 @@ msgstr "Ați ajuns la sfârșitul conținutului activ."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Ați ajuns la sfârșitul fluxului dvs.! Găsiți mai multe conturi de urmărit."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "Ați atins numărul maxim de schițe"
@@ -13475,11 +13795,11 @@ msgstr "Ați atins numărul maxim de solicitări permise. Vă rugăm să încerc
msgid "You've reached the start of the active content."
msgstr "Ați ajuns la începutul conținutului activ."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Ați atins limita zilnică pentru încărcări de videoclipuri (prea mulți octeți)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr "Contul dvs. a fost șters, pe curând! ✌️"
msgid "Your account has been suspended"
msgstr "Contul dumneavoastră a fost suspendat"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Contul dvs. nu este încă suficient de vechi pentru a încărca videoclipuri. Vă rugăm să încercați din nou mai târziu."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr "Contul dvs. este prea nou"
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr "Contul dvs. trebuie să aibă cel puțin 7 zile pentru a crea o nouă conversație de grup."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Repozitoriul contului dvs., care conține toate înregistrările de date publice, poate fi descărcat ca fișier „CAR”. Acest fișier nu include încorporările media, cum ar fi imaginile sau datele dvs. private, care trebuiesc preluate separat."
@@ -13519,7 +13847,7 @@ msgstr "Contestația dvs. a fost trimisă. Dacă contestația dvs. este acceptat
msgid "Your birth date"
msgstr "Data nașterii"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Conversațiile dvs. au fost dezactivate"
@@ -13561,7 +13889,7 @@ msgstr "E-mailul dvs."
msgid "Your email appears to be invalid."
msgstr "E-mailul dvs. pare a fi nevalid."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "E-mailul dvs. nu a fost încă verificat. Vă rugăm să vă verificați adresa de e-mail pentru a vă bucura de toate caracteristicile Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "Fluxul urmărit este gol! Urmăriți mai mulți utilizatori pentru a ved
msgid "Your full handle will be <0>@{0}0>"
msgstr "Identificatorul dvs. complet va fi <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "Locația dvs. a fost actualizată."
msgid "Your muted words"
msgstr "Cuvintele dvs. amuțite"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "Numele și avatarul dvs. și numele conversației de grup vor fi vizibile pentru toată lumea."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr "Numele, avatarul dvs., numele conversației de grup și numărul de membrii vor fi vizibile pentru toată lumea."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "Postarea dvs. a fost trimisă"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "Postările dvs. au fost trimise"
@@ -13635,7 +13963,7 @@ msgstr "Postările dvs. au fost trimise"
msgid "Your preferred language"
msgstr "Limba dvs. preferată"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "Imaginea dvs. de profil"
@@ -13648,12 +13976,12 @@ msgstr "Imaginea dvs. de profil înconjurată de cercuri concentrice cu imagini
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Răspunsul dvs. a fost trimis"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Raportul dvs. va fi trimis la <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "Raportul dvs. va fi trimis la <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Interesele dvs. selectate ne ajută să vă oferim conținut care vă interesează."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "Firul dvs. conține postări goale care vor fi omise. Postările rămase vor fi publicate ca un fir."
diff --git a/src/locale/locales/ru/messages.po b/src/locale/locales/ru/messages.po
index 684e9cada5..db31e6c5e3 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\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"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# минуту} few {# минуты} other {# мину
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# месяц} few {# месяца} other {# месяцев}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# секунду} few {# секунды} other {# се
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# непрочитанный элемент} other {# непрочитанных элементов}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} подписок"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr "{0} из 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} отреагировал {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, список от {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Аватар {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}м"
msgid "{0}s"
msgstr "{0}с"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# непрочитанный элемент} other {# непрочитанных элементов}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} верифицировал вас"
msgid "{following} following"
msgstr "{following} подписок"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "{handle} не может получать сообщения"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# час {minutesString}} few {# часа {minutesS
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# час} few {# часа} other {# часов}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# непрочитанный элемент} other {# непрочитанных элементов}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr "Произошла сетевая ошибка. Пожалуйста, п
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Произошла сетевая ошибка. Пожалуйста, проверьте подключение к интернету."
@@ -804,7 +869,7 @@ msgstr "Произошла сетевая ошибка. Пожалуйста, п
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Новая форма верификации"
@@ -827,11 +892,11 @@ msgstr "Скриншот страницы профиля со значком к
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr "Принять"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Принять"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Принять запрос на беседу"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Принять запрос"
@@ -860,17 +935,26 @@ msgstr "Принять запрос"
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Доступность"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Настройки Доступности"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Учётная запись больше не игнорируется"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Активность от других"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Уведомления от активностей"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Добавить"
@@ -999,8 +1079,8 @@ msgstr "Добавить учётную запись"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Добавьте альтернативный текст (необяза
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Добавить другую учётную запись"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Добавить другой пост"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Добавить еще один пост в ветку"
@@ -1035,7 +1115,7 @@ msgstr "Добавить пароль приложения"
msgid "Add App Password"
msgstr "Добавить пароль приложения"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr "Добавить эмодзи-реакцию"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Добавить медиа к посту"
@@ -1062,8 +1142,8 @@ msgstr "Добавить медиа к посту"
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Добавить подробности (опционально)"
@@ -1080,8 +1160,8 @@ msgstr "Добавить игнорирование слова с выбранн
msgid "Add muted words and tags"
msgstr "Добавить игнорируемые слова и теги"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr "Дополнительные сведения (не больше 1000 символов)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Дополнительные сведения (до 300 символов)"
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr "Проверка возраста занимает всего лишь несколько минут"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Все"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Разрешите доступ к своим личным сообще
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr "Уже есть учётная запись?"
msgid "Already signed in as @{0}"
msgstr "Уже вошли как @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "АЛЬТ"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Альтернативный текст"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Альтернативный текст описывает изображение для незрячих и слабовидящих пользователей и предоставляет дополнительный контекст для всех."
@@ -1387,7 +1467,7 @@ msgstr "Возникла ошибка"
msgid "An error occurred"
msgstr "Возникла ошибка"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Возникла ошибка при сжатии видео."
@@ -1432,11 +1512,11 @@ msgstr "При сохранении QR-кода возникла ошибка!"
msgid "An error occurred while trying to follow all"
msgstr "Возникла ошибка при попытке подписаться на всех"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Иллюстрация, показывающая, что Bluesky выбирает доверенных верификаторов, а те, в свою очередь, верифицируют учётные записи индивидуальных пользователей."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Проблема не включена в эти варианты"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "При попытке открыть чат возникла пробл
msgid "An issue occurred, please try again."
msgstr "Возникла проблема, пожалуйста, попробуйте ещё раз."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Макет iPhone с интерфейсом Bluesky на экране, в приложении открыт профиль пользователя, рядом с его именем стоит синяя галочка."
@@ -1539,13 +1619,17 @@ msgstr "Любой"
msgid "Anyone can interact"
msgstr "Любой может взаимодействовать"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr "Любой, кто подписан на меня"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Имена паролей приложений должны состоя
msgid "App passwords"
msgstr "Пароли приложений"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Пароли приложений"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Обращение отправлено"
@@ -1632,14 +1716,14 @@ msgstr "Обжаловать приостановку"
msgid "Appeal Suspension"
msgstr "Обжаловать приостановку"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Обжаловать это решение"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Вы уверены, что хотите удалить пароль приложения \"{0}\"?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ msgstr "Вы уверены, что хотите удалить этот ста
msgid "Are you sure you want to discard your changes?"
msgstr "Вы уверены, что хотите отменить изменения?"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr "Вы уверены, что хотите выйти из беседы?"
-#: 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 "Вы уверены, что хотите покинуть эту беседу? Ваши сообщения будут удалены для вас, но не для других участников."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Вы уверены, что хотите удалить это из своих лент?"
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Вы действительно хотите удалить этот пост?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Автовоспроизведение видео и GIF-файлов"
msgid "Available"
msgstr "Доступен"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Доступен"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Доступен"
msgid "Back"
msgstr "Назад"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Вернуться к чатам"
@@ -1840,12 +1926,12 @@ msgstr "Чтобы принять этот запрос на чат, необх
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Перед тем, как вы будете получать уведомления о постах пользователя {name}, вы должны подтвердить свой адрес электронной почты."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Чтобы написать другому пользователю, необходимо сначала подтвердить свою электронную почту."
@@ -1877,7 +1963,7 @@ msgstr "Дата рождения"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Заблокировать"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "Заблокировать учётную запись?"
msgid "Block accounts"
msgstr "Заблокировать учётные записи"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Заблокировать эти учётные записи?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Заблокировать пользователя"
@@ -1946,9 +2032,9 @@ msgstr "Заблокировать пользователя"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Заблокировать пользователя"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Заблокировано"
@@ -1964,13 +2050,13 @@ msgstr "Заблокировано"
msgid "Blocked accounts"
msgstr "Заблокированные учётные записи"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Заблокированные учётные записи"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Заблокированные учётные записи не могут вам отвечать, упоминать вас в своих постах, и взаимодействовать с вами каким-либо другим образом."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky лучше с друзьями!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky выберет набор рекомендуемых учётн
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 "Bluesky не будет показывать ваш профиль и посты посетителям без учётной записи. Другие приложения могут не следовать этому запросу. Это не делает вашу учётную запись приватной."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky будет активно подтверждать известные и подлинные учетные записи."
@@ -2137,23 +2223,30 @@ msgstr "Бизнес"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "От {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "От <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Создавая учётную запись, вы соглашаете
msgid "By you"
msgstr "Сделан вами"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Камера"
@@ -2192,8 +2285,8 @@ msgstr "Камера"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Камера"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Камера"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Отменить"
@@ -2248,9 +2341,9 @@ msgstr "Отменить реактивацию и выйти из систем
msgid "Cancel search"
msgstr "Отменить поиск"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Невозможно взаимодействовать с заблокированным пользователем"
@@ -2264,7 +2357,7 @@ msgstr "Субтитры (.vtt)"
msgid "Captions & alt text"
msgstr "Субтитры и альтернативный текст"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr "Изменить язык приложения"
msgid "Change Handle"
msgstr "Изменить псевдоним"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Изменить службу модерации"
@@ -2310,11 +2403,11 @@ msgstr "Изменить пароль"
msgid "Change password dialog"
msgstr "Окно изменения пароля"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Причина изменения жалобы"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Чат"
@@ -2361,6 +2454,13 @@ msgstr "Чат удалён"
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Чат без звука"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Почтовый ящик запросов на чат"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Запросы на чат"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Настройки чата"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Настройки чата"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Чат со звуком"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Чаты"
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "Выберите этот цвет в качестве своего аватара"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr "Нажмите для информации"
msgid "click here"
msgstr "нажмите здесь"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Нажмите здесь, чтобы перезапустить процесс верификации."
@@ -2567,11 +2667,11 @@ msgstr "Нажмите здесь, чтобы перезапустить про
msgid "Click here to update your birthdate"
msgstr "Нажмите здесь, чтобы обновить дату рождения"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Нажмите здесь, чтобы обновить свою электронную почту"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr "Нажмите, чтобы открыть меню тегов для {0}"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Нажмите, чтобы повторить неудачное сообщение"
@@ -2594,28 +2694,30 @@ msgstr "Нажмите, чтобы повторить неудачное соо
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Нажмите, чтобы повторить неудачное соо
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Закрыть диалоговое окно"
msgid "Close alert"
msgstr "Закрыть уведомления"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Закрыть нижнее меню"
@@ -2657,8 +2763,9 @@ msgstr "Закрыть нижнее меню"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Закрыть диалог"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Закрыть изображение"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr "Закрыть меню"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Закрыть диалоговое окно"
@@ -2695,7 +2810,7 @@ msgstr "Закрыть окно приветствия"
msgid "Closes password update alert"
msgstr "Закрывает уведомление об изменении пароля"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Закрывает редактор и удаляет черновик"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Комиксы"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Правила сообщества"
@@ -2740,12 +2855,12 @@ msgstr "Выполните задание"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Составить новый пост"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "Пишите посты длиной до {0, plural, one {# символа} other {# символов}}"
@@ -2753,11 +2868,11 @@ msgstr "Пишите посты длиной до {0, plural, one {# симво
msgid "Compose reply"
msgstr "Составить ответ"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Сжатие видео..."
@@ -2780,7 +2895,7 @@ msgstr "Настраивается в <0>настройках модерации
msgid "Confirm"
msgstr "Подтвердить"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Содержание и медиа"
msgid "Content and media"
msgstr "Содержимое и медиа"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Содержимое и медиа"
@@ -2889,7 +3004,7 @@ msgstr "Фон контекстного меню, нажмите, чтобы з
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Продолжить ветку"
msgid "Continue thread..."
msgstr "Продолжить ветку..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Перейти к следующему шагу"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Беседа удалена"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Беседа удалена"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Версия сборки скопирована в буфер обмена"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Копировать DID"
msgid "Copy host"
msgstr "Копировать хост"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Копировать ссылку на профиль"
msgid "Copy link to starter pack"
msgstr "Копировать ссылку на стартовый набор"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Копировать текст сообщения"
@@ -3052,7 +3175,7 @@ msgstr "Копировать значение TXT-записи"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Политика защиты авторского права"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr "Не удалось подключиться к сервису лент"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Не удалось выйти из чата"
@@ -3094,6 +3217,10 @@ msgstr "Не удалось выйти из чата"
msgid "Could not load feed"
msgstr "Не удалось загрузить ленту"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Создать"
@@ -3159,7 +3286,7 @@ msgstr "Создать QR-код для стартового набора"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Создать стартовый набор"
@@ -3174,13 +3301,14 @@ msgstr "Создать для меня стартовый набор"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Создать учётную запись"
msgid "Create an account without using this starter pack"
msgstr "Создать учётную запись без этого стартового набора"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Создать аватар вместо этого"
@@ -3206,7 +3334,7 @@ msgstr "Создать аватар вместо этого"
msgid "Create another"
msgstr "Создать ещё один"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Создать новую учётную запись"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Создать отчёт для {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Создано: {0}"
@@ -3341,7 +3470,7 @@ msgstr "По умолчанию"
msgid "Default icons"
msgstr "Иконки по умолчанию"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Удалить запись объявления чата"
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Удалить беседу"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Удалить для меня"
@@ -3399,11 +3528,11 @@ msgstr "Удалить для меня"
msgid "Delete list"
msgstr "Удалить список"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Удалить сообщение"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Удалите сообщение для меня"
@@ -3413,7 +3542,7 @@ msgstr "Удалить мою учётную запись"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Удалить пост"
@@ -3434,12 +3563,12 @@ msgstr "Удалить этот список?"
msgid "Delete this post?"
msgstr "Удалить этот пост?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Удалено"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Удалённая учётная запись"
@@ -3507,13 +3636,13 @@ msgstr "Диалог: настройте, кто может взаимодейс
msgid "Dim"
msgstr "Тусклая"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Отключить 2FA"
@@ -3521,7 +3650,7 @@ msgstr "Отключить 2FA"
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Отключить 2FA по электронной почте"
@@ -3534,8 +3663,8 @@ msgstr "Отключить 2FA по электронной почте"
msgid "Disable haptic feedback"
msgstr "Отключить тактильную обратную связь"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Отключено"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Удалить"
msgid "Discard changes?"
msgstr "Удалить изменения?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Удалить черновик?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Удалить пост?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Откройте для себя новые ленты"
msgid "Dismiss"
msgstr "Пропустить"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Пропустить ошибку"
@@ -3673,7 +3802,7 @@ msgstr "Не содержит обнаженности."
msgid "Domain verified!"
msgstr "Домен проверен!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Нет кода или нужен новый? <0>Нажмите здесь.0>"
@@ -3681,7 +3810,7 @@ msgstr "Нет кода или нужен новый? <0>Нажмите здес
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Не видите письма? <0>Нажмите здесь, чтобы отправить заново.0>"
@@ -3700,16 +3829,19 @@ msgstr "Не волнуйтесь! Все существующие сообще
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Готово"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Дважды нажмите или зажмите сообщение, чтобы добавить реакцию"
@@ -3741,15 +3873,6 @@ msgstr "Дважды нажмите, чтобы поставить лайк"
msgid "Download Bluesky"
msgstr "Скачать Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Скачать CAR файл"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Скачать CAR файл"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "например, Пользователи, неоднократно о
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Редактировать"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Изменить фото профиля"
@@ -3847,14 +3978,14 @@ msgstr "Изменить фото профиля"
msgid "Edit Feeds"
msgstr "Редактировать ленты"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Редактировать изображение"
@@ -3868,7 +3999,16 @@ msgstr "Редактировать настройки взаимодействи
msgid "Edit interests"
msgstr "Изменить интересы"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr "Изменить статус прямого эфира"
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Редактировать мои ленты"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Редактировать людей"
@@ -3925,7 +4060,7 @@ msgstr "Редактировать профиль"
msgid "Edit starter pack"
msgstr "Редактировать стартовый набор"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "Редактировать, кто может отвечать"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Редактировать ваш стартовый набор"
@@ -3971,7 +4106,7 @@ msgstr "Адрес электронной почты"
msgid "Email Resent"
msgstr "Подтверждение отправлено повторно"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "Письмо отправлено!"
@@ -4006,8 +4141,8 @@ msgstr "Встройте этот пост в Ваш сайт. Просто ск
msgid "Embedded video player"
msgstr "Встроенный видеоплеер"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Включено"
@@ -4025,7 +4160,7 @@ msgstr "Разрешить содержимое для взрослых"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Включить 2FA по электронной почте"
@@ -4038,13 +4173,12 @@ msgstr "Включить внешние медиа"
msgid "Enable media players for"
msgstr "Включить медиапроигрыватели для"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Включите уведомления для учётной записи, посетив её профиль и нажав <0>значок колокольчика0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Включить push-уведомления"
@@ -4091,8 +4225,8 @@ msgstr "Введите пароль"
msgid "Enter a word or tag"
msgstr "Введите слово или тег"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Введите код"
@@ -4143,7 +4277,7 @@ msgstr "Переходит в полноэкранный режим"
msgid "Entertainment"
msgstr "Развлечения"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Ошибка"
@@ -4185,23 +4319,23 @@ msgstr "Каждый может ответить"
msgid "Everybody can reply to this post."
msgstr "Все могут ответить на этот пост."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Все"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Все"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Все"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "Исключает пользователей, на которых вы
msgid "Exit fullscreen"
msgstr "Выйти из полноэкранного режима"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Развернуть альтернативный текст"
@@ -4226,7 +4360,7 @@ msgstr "Развернуть альтернативный текст"
msgid "Expand list of users"
msgstr "Развернуть список пользователей"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Развернуть или свернуть весь пост, на который вы отвечаете"
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr "Разворачивает или сворачивает текст поста"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Ожидалось, что uri разрешиться в запись"
@@ -4277,9 +4411,9 @@ msgstr "Откровенный или потенциально проблемн
msgid "Explicit sexual images."
msgstr "Откровенные сексуальные изображения."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Обзор"
@@ -4289,11 +4423,8 @@ msgstr "Обзор"
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Настройка внешних медиа"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Не удалось принять чат"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Не удалось добавить эмодзи-реакцию"
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "Не удалось изменить псевдоним. Попробуйте ещё раз."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "Не удалось изменить пароль приложения.
msgid "Failed to create conversation"
msgstr "Не удалось создать беседу"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Не удалось удалить чат"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Не удалось удалить сообщение"
@@ -4394,24 +4529,24 @@ msgstr "Не удалось удалить пост, попробуйте ещё
msgid "Failed to delete starter pack"
msgstr "Не удалось удалить стартовый набор"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Не удалось загрузить беседы"
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "Не удалось загрузить настройки ленты"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Не удалось загрузить настройки уведомлений."
@@ -4493,16 +4627,15 @@ msgstr "Не удалось загрузить предложенные лент
msgid "Failed to load suggested follows"
msgstr "Не удалось загрузить предложенные подписки"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Не удалось пометить все запросы как прочитанные"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Не удалось закрепить пост"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Не удалось удалить эмодзи-реакцию"
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr "Не удалось снять верификацию"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Не удалось сохранить ваши интересы."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Не удалось отправить письмо на электронную почту, попробуйте ещё раз."
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Не удалось подать апелляцию, попробуйте ещё раз."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Не удалось переключить игнорирование ветки, попробуйте ещё раз"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Не удалось обновить настройки 2FA электронной почты"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Не удалось обновить электронную почту, попробуйте ещё раз."
@@ -4614,7 +4751,7 @@ msgstr "Не удалось изменить ленты"
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Не удалось изменить настройки"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Лента"
@@ -4649,7 +4786,7 @@ msgstr "Лента"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Лента от {0}"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Меню ленты"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Ленты"
@@ -4739,7 +4876,7 @@ msgstr "Фильтр поиска по языку (текущий: {currentLangu
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "Завершение"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr "Наконец-то! Следите за постами, которые важны для вас. Сохраняйте их, чтобы просмотреть в любое время."
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Найдите учётные записи для подписки"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr "Найти людей, чтобы подписаться"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Найти посты, пользователей и ленты в Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "Подписаны <0>{0}0> и <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Подписаны <0>{0}0>, <1>{1}1> и {2, plural, one {# другой} other {# других}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Подписчики @{0}, которых вы знаете"
@@ -4995,19 +5136,16 @@ msgstr "Подписан на {handle}"
msgid "Following feed preferences"
msgstr "Настройка ленты подписок"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Настройка ленты подписок"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Подписан на вас"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Подписан на вас"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Шрифт"
@@ -5069,7 +5207,7 @@ msgstr "Забыли пароль?"
msgid "Free your feed"
msgstr "Освободите свою ленту"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "От"
@@ -5086,35 +5224,35 @@ msgstr "Из <0/>"
msgid "Generate a starter pack"
msgstr "Сгенерировать стартовый набор"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "Получить помощь"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Получайте уведомления, когда на вас подписываются люди."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Получайте уведомления, когда люди ставят лайки на ваши репосты."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Получайте уведомления, когда люди ставят лайки на ваши посты."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Получайте уведомления, когда люди упоминают вас."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Получайте уведомления, когда люди цитируют ваши посты."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Получайте уведомления, когда люди отвечают на ваши посты."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Получайте уведомления, когда люди репостят ваши репосты."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Получайте уведомления, когда люди репостят ваши посты."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr ""
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Получайте уведомления о новых постах"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Приступить"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Придайте своему профилю лицо"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Вернуться"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Вернуться"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Вернуться к предыдущему шагу"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Вернуться на главную"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Вернуться на главную"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Вернуться на главную"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Перейти к беседе с {0}"
@@ -5299,12 +5440,12 @@ msgstr "Далее"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "В профиль"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Псевдоним слишком длинный. Пожалуйста, попробуйте более короткий."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Хештег"
@@ -5458,8 +5615,8 @@ msgstr "Хештег {tag}"
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Есть код? <0>Нажмите здесь.0>"
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Справка"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Чтобы люди знали, что вы не бот, загрузите фотографию или создайте аватар."
@@ -5652,18 +5809,18 @@ msgstr "Похоже, у нас возникли проблемы с загру
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Хммм, мы не смогли загрузить этот сервис модерации."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Подождите! Мы постепенно даём доступ к видео, и вы всё ещё в очереди. Возвращайтесь позже!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Главная"
@@ -5721,7 +5878,7 @@ msgstr "Я понял"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Раскрывает альтернативный текст, если текст слишком длинный"
@@ -5757,7 +5914,7 @@ msgstr "Если вы удалите этот список, вы не сможе
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Если у вас есть собственный домен, вы можете использовать его в качестве своего псевдонима. Это позволит вам самостоятельно подтвердить свою личность. <0> Узнайте больше здесь.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Если вам нужно обновить электронную почту, <0>нажмите здесь0>."
@@ -5765,7 +5922,7 @@ msgstr "Если вам нужно обновить электронную по
msgid "If you remove this post, you won't be able to recover it."
msgstr "Если вы удалите этот пост, вы не сможете его восстановить."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Если вы обновите адрес электронной почты, 2FA по электронной почте будет отключена."
@@ -5773,7 +5930,6 @@ msgstr "Если вы обновите адрес электронной поч
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Если вы хотите изменить пароль, мы отправим вам код, чтобы убедиться, что это ваша учётная запись."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr "Если вы разработчик, вы можете размести
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Если вы хотите изменить свой псевдоним или электронную почту, сделайте это до деактивации."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Изображение"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Кэш изображений очищен, освобождено {0}"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "В приложении"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Уведомления в приложении"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "В приложении, Все"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "В приложении, Люди, на которых вы подписаны"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "В приложении, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "В приложении, Push, Все"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "В приложении, Push, Люди, на которых вы подписаны"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Почтовый ящик пуст!"
@@ -5963,6 +6129,10 @@ msgstr "Представляем сохранённые посты, также
msgid "Invalid 2FA confirmation code."
msgstr "Неверный код подтверждения 2FA."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Недопустимый псевдоним. Пожалуйста, попробуйте другой."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Недопустимая тема отчета"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Неверный код подтверждения"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Сейчас здесь только вы! Добавьте больше людей в свой стартовый набор, воспользовавшись поиском выше."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID вакансии: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID вакансии: {0}"
msgid "Jobs"
msgstr "Вакансии"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Вакансии"
msgid "Join Bluesky"
msgstr "Присоединиться к Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Присоединиться к беседе"
msgid "Journalism"
msgstr "Журналистика"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "Метки на вашей учётной записи"
msgid "Labels on your content"
msgstr "Метки на вашем контенте"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Настройки языка"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Недавние"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Узнать больше об этом предупреждении"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Узнать больше о том, что является публичным в Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "Узнать больше."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Выйти"
@@ -6276,7 +6464,7 @@ msgstr "Выйти из чата"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Выйти из беседы"
@@ -6284,13 +6472,13 @@ msgstr "Выйти из беседы"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Выйти из беседы"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Светлая"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Лайк ({0, plural, one {# лайк} few {# лайка} other {# лайков}})"
@@ -6346,11 +6534,7 @@ msgstr "Лайкните 10 постов"
msgid "Like 10 posts to train the Discover feed"
msgstr "Лайкните 10 постов, чтобы обучить ленту Discover"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Лайкнуть эту ленту"
@@ -6358,8 +6542,8 @@ msgstr "Лайкнуть эту ленту"
msgid "Like this labeler"
msgstr "Лайкнуть этот маркировщик"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Понравилось"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Понравилось {0, plural, one {# пользователю} other {# пользователям}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Понравилось {likeCount, plural, one {# пользователю} other {# пользователям}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Нравится"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Лайки этого поста"
@@ -6409,11 +6589,11 @@ msgstr "Лайки этого поста"
msgid "Linear"
msgstr "Линейно"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Список"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Список больше не игнорируется"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Списки"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Загрузка..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Отчёт"
@@ -6662,7 +6842,7 @@ msgstr "Похоже, у вас не хватает ленты подписок.
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr "Управляйте настройками верификации"
msgid "Manage your muted words and tags"
msgstr "Настраивайте ваши игнорируемые слова и теги"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Отметить все как прочитанные"
@@ -6698,13 +6877,12 @@ msgstr "Отметить все как прочитанные"
msgid "Mark as read"
msgstr "Отметить как прочитанное"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Все сообщения отмечены как прочитанные"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Возможно, позже"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Медиа, которые могут вызывать беспокойство или быть неприемлемыми для некоторых аудиторий."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "упомянутые пользователи"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Упоминания"
@@ -6775,22 +6949,22 @@ msgstr "Сообщение {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Сообщение удалено"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Сообщение удалено"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Сообщение от @{0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Сообщение слишком длинное"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Параметры сообщений"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Сообщения"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr "Полночь"
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Модерация"
@@ -6894,7 +7064,7 @@ msgstr "Список модерации изменён"
msgid "Moderation lists"
msgstr "Списки модерации"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Списки модерации"
@@ -6903,7 +7073,7 @@ msgstr "Списки модерации"
msgid "moderation settings"
msgstr "настройка модерации"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Статус модерации"
@@ -6949,7 +7119,7 @@ msgstr "Кино"
msgid "Music"
msgstr "Музыка"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Игнорировать"
@@ -6994,7 +7164,7 @@ msgstr "Игнорировать список"
msgid "Mute these accounts?"
msgstr "Игнорировать эти учётные записи?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Игнорировать ветку"
msgid "Mute words & tags"
msgstr "Игнорировать слова и теги"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Игнорируемые учётные записи"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Игнорируемые учётные записи"
@@ -7108,8 +7278,8 @@ msgstr "Переходит к следующему экрану"
msgid "Navigates to your profile"
msgstr "Переходит к вашему профилю"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Новый чат"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Новый адрес электронной почты"
@@ -7174,29 +7344,25 @@ msgstr "Новый адрес электронной почты"
msgid "New Feature"
msgstr "Новая функция"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Новые подписчики"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Новый пост"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Новый пост"
@@ -7262,8 +7428,8 @@ msgstr "Новости"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Нет изображения"
@@ -7362,7 +7528,7 @@ msgstr "Вы больше не подписаны на {0}"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Сообщения пока отсутствуют"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "Ещё никаких уведомлений!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Нет результатов"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Нет результатов"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Несексуальная обнажённость"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Не найдено"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr "Пока ничего не сохранено"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Настройки уведомления"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Звуки уведомлений"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Уведомления"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "сейчас"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Отключено"
@@ -7623,7 +7772,8 @@ msgstr "ОК"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "на<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Сброс настроек"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "В одном или нескольких GIF-файлах отсутствует альтернативный текст."
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "Для одного или нескольких изображений отсутствует альтернативный текст."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "В одном или нескольких видео отсутствует альтернативный текст."
@@ -7685,6 +7835,26 @@ msgstr "В одном или нескольких видео отсутству
msgid "Only {0} can reply."
msgstr "Только {0} могут отвечать."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr "Поддерживаются только файлы изображений"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Поддерживаются только файлы WebVTT (.vtt)"
@@ -7712,7 +7892,7 @@ msgstr "Ой, что-то пошло не так!"
msgid "Oops!"
msgstr "Ой!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Открыть создатель аватара"
@@ -7720,12 +7900,17 @@ msgstr "Открыть создатель аватара"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Открыть настройки беседы"
@@ -7739,16 +7924,16 @@ msgstr "Открыть выдвижное меню"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Открыть подборщик эмодзи"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Открыть экран информации о ленте"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Открыть меню настроек ленты"
@@ -7760,13 +7945,17 @@ msgstr "Открыть полный список эмодзи"
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Открыть ссылку на {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Открыть набор"
msgid "Open post options menu"
msgstr "Открыть меню настроек поста"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Открыть профиль"
@@ -7817,6 +8006,10 @@ msgstr "Открыть страницу историй"
msgid "Open system log"
msgstr "Открыть системный журнал"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Открывает дополнительную информацию о
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Открывает камеру на устройстве"
@@ -7858,22 +8051,24 @@ msgstr "Открывает редактор"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Открывает процесс создания новой учётной записи Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Открывается процесс входа в существующую учетную запись Bluesky"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Открывает диалоговое окно статуса прямого эфира"
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Открывает этот профиль"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Наша команда модерации получила вашу жалобу."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Наши модераторы рассмотрели сообщения и решили отключить вам доступ к чатам на Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Наши модераторы рассмотрели сообщения
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Страница не найдена"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Страница не найдена"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Приостановить видео"
msgid "People"
msgstr "Люди"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Люди, на которых подписан(а) @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Люди, которые подписаны на @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Изображения, предназначенные для взрослых."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Закрепить ленту"
@@ -8152,7 +8348,7 @@ msgstr "Закрепить ленту"
msgid "Pin to home"
msgstr "Закрепить на главной странице"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Закрепить на главной странице"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Закреплён"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "Прикреплено {0} к главной странице"
@@ -8236,7 +8432,7 @@ msgstr "Пожалуйста, выберите псевдоним."
msgid "Please choose your password."
msgstr "Пожалуйста, выберите ваш пароль."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "Пожалуйста, завершите проверку Captcha."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr "Пожалуйста, введите пароль. Он должен с
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Пожалуйста, введите уникальное имя для пароля приложения или используйте наше случайно сгенерированное."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Пожалуйста, введите правильный код."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Пожалуйста, введите действительный адрес электронной почты."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Пожалуйста, введите код, который мы отправили <0>{0}0> ниже."
@@ -8293,7 +8489,7 @@ msgstr "Пожалуйста, введите код, который мы отп
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "Пожалуйста, введите адрес электронной
msgid "Please enter your invite code."
msgstr "Пожалуйста, введите код приглашения."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Пожалуйста, введите новый адрес электронной почты."
@@ -8323,7 +8519,7 @@ msgstr "Пожалуйста, введите ваш псевдоним"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Пожалуйста, объясните, почему вы считаете, что эта метка была ошибочно добавлена к {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Пожалуйста, объясните, почему вы считаете, что ваши чаты были неправильно отключены"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Подтвердите свой адрес электронной почты"
@@ -8383,7 +8579,7 @@ msgstr "Политика"
msgid "Porn"
msgstr "Порнография"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Опубликовать"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Опубликовать все"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Пост от @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Пост удалён"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Не удалось загрузить пост. Проверьте подключение к Интернету и повторите попытку."
@@ -8454,7 +8650,7 @@ msgstr "Вы скрыли этот пост"
msgid "Post interaction settings"
msgstr "Настройки взаимодействия с постом"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Настройки взаимодействия с постом"
@@ -8464,8 +8660,8 @@ msgstr "Настройки взаимодействия с постом"
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Пост откреплён"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Посты могут быть проигнорированы на ос
msgid "Posts hidden"
msgstr "Посты скрыты"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "Нажмите для попытки повторного подключ
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Нажмите, чтобы повторить попытку"
@@ -8536,7 +8728,7 @@ msgstr "Нажмите, чтобы повторить попытку"
msgid "Press to view followers of this account that you also follow"
msgstr "Нажмите, чтобы просмотреть подписчиков этой учётной записи, на которых вы также подписаны"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "Конфиденциальность"
msgid "Privacy and security"
msgstr "Конфиденциальность и безопасность"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Конфиденциальность и безопасность"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Политика конфиденциальности"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Обработка видео..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Обработка..."
@@ -8602,8 +8793,8 @@ msgstr "Обработка..."
msgid "profile"
msgstr "профиль"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Опубликовать пост"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Опубликовать посты"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Опубликовать ответы"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Опубликовать ответ"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Push-уведомления"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "QR-код был скачан!"
msgid "QR code saved to your camera roll!"
msgstr "QR-код сохранён в папке камеры!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Цитирование постов отключено"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Цитаты"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Прикрепить цитату заново"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr "Отреагировать с {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Прочитать пост в блоге"
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr "Причина обращения"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr "Рекомендуется"
msgid "Reconnect"
msgstr "Переподключиться"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Отклонить"
msgid "Reject chat request"
msgstr "Отклонить запрос на беседу"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Перезагрузить беседы"
@@ -8896,17 +9087,17 @@ msgstr "Удалить учётную запись"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Удалить вложение"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Удалить аватар"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Удалить баннер"
@@ -8914,8 +9105,9 @@ msgstr "Удалить баннер"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Удалить встраивание"
@@ -8933,8 +9125,8 @@ msgstr "Удалить ленту?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Удалить из сохранённых постов"
msgid "Remove from your feeds?"
msgstr "Удалить из ваших лент?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Удалить изображение"
@@ -9009,11 +9201,11 @@ msgstr "Удаление верификации"
msgid "Remove your verification for this account?"
msgstr "Удалить верификацию для этой учётной записи?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Удалено автором"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Удалено вами"
@@ -9035,7 +9227,7 @@ msgstr "Удалено из сохранённых постов"
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Ответы"
@@ -9104,14 +9295,14 @@ msgstr "Ответы отключены"
msgid "Replies to this post are disabled."
msgstr "Ответы на этот пост отключены."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Ответить"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Ответить ({0, plural, one {# ответ} few {# ответа} other {# ответов}})"
@@ -9125,10 +9316,6 @@ msgstr "Ответ скрыт автором ветки"
msgid "Reply Hidden by You"
msgstr "Ответ скрыт вами"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Настройки ответов выбирает автор ветки"
@@ -9146,9 +9333,9 @@ msgstr "Видимость ответа изменена"
msgid "Reply was successfully hidden"
msgstr "Ответ был успешно скрыт"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Пожаловаться"
@@ -9164,13 +9351,13 @@ msgstr "Пожаловаться на учётную запись"
msgid "Report conversation"
msgstr "Пожаловаться на беседу"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Диалоговое окно для жалоб"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Пожаловаться на ленту"
@@ -9179,7 +9366,7 @@ msgstr "Пожаловаться на ленту"
msgid "Report list"
msgstr "Пожаловаться на список"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Пожаловаться на сообщение"
@@ -9199,8 +9386,8 @@ msgstr "Пожаловаться на стартовый набор"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Отчёт отправлен"
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Пожаловаться на эту ленту"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Пожаловаться на этот список"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Репостнуть"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Репостнуть ({0, plural, one {# репост} few {# репоста} other {# репостов}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Вы сделали репост"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "Репосты этого поста"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Требовать альтернативный текст изображений перед публикацией"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Требовать код с электронной почты для входа в учётную запись."
@@ -9328,7 +9534,11 @@ msgstr "Требуется этим хостинг-провайдером"
msgid "Required in your region"
msgstr "Требуется в вашем регионе"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Отправить повторно"
@@ -9393,15 +9603,16 @@ msgstr "Повторяет последнее действие, которое
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Повторяет последнее действие, которое
msgid "Retry"
msgstr "Повторить попытку"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9426,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr "Вернуться к предыдущей странице"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Возвращает на главную страницу"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Возвращает к предыдущей странице"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Сохранить изменения"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Сохранить QR-код"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Сохранить в мои ленты"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Сохранённые"
msgid "Saved Feeds"
msgstr "Сохранённые ленты"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Сохранённые посты"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Сохранено в ваши ленты"
@@ -9551,8 +9764,8 @@ msgstr "Сохранено в ваши ленты"
msgid "Say hello!"
msgstr "Скажи привет!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "Пролистать вверх"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Поиск"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Поиск постов @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Поиск по моим постам"
msgid "Search posts"
msgstr "Поиск постов"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Поиск профилей"
msgid "Search..."
msgstr "Поиск..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Ищет профили"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "Выбрать цвет"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "Выбрать GIF"
msgid "Select GIF \"{0}\""
msgstr "Выбрать GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Выбрать язык..."
msgid "Select languages"
msgstr "Выбрать языки"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Выберите службу модерации"
@@ -9904,11 +10117,11 @@ msgstr "Выберите ваши интересы из нижеприведён
msgid "Select your preferred language for translations in your feed."
msgstr "Выберите желаемый язык для переводов в вашей ленте."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Отправить электронное письмо"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Отправить отзыв"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Отправить сообщение"
@@ -9952,7 +10165,7 @@ msgstr "Отправить пост {name}"
msgid "Send post to..."
msgstr "Отправить пост на..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Отправить жалобу в {title}"
@@ -9960,7 +10173,7 @@ msgstr "Отправить жалобу в {title}"
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Отправить личным сообщением"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Устанавливает адрес электронной почты для сброса пароля"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Настройки"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "Сексуальная активность или эротическа
msgid "Sexually Suggestive"
msgstr "С сексуальным подтекстом"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Поделиться DID автора"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr "Поделиться at:// URI поста"
msgid "Share QR code"
msgstr "Поделиться QR-кодом"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Поделиться этой лентой"
@@ -10151,7 +10366,7 @@ msgstr "Поделиться через..."
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Тестер общих настроек"
@@ -10167,16 +10382,16 @@ msgstr "Показать альтернативный текст"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Всё равно показать"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Показать предупреждения и фильтровать из ленты"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr "Показывает содержимое"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Войдите или создайте учётную запись"
msgid "Sign in or create your account to join the conversation!"
msgstr "Войдите или создайте свою учётную запись, чтобы присоединиться к беседе!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Войти в учётную запись, которой нет в списке"
@@ -10337,6 +10558,10 @@ msgstr "Войти в учётную запись, которой нет в сп
msgid "Sign in to Bluesky or create a new account"
msgstr "Войдите в Bluesky или создайте новую учётную запись"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Выйти"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Выйти"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Выйти?"
@@ -10391,7 +10616,7 @@ msgstr "Пропустить"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Уменьшенный"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Отложить напоминание"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Кто-то отреагировал {0}"
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Что-то пошло не так"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Что-то пошло не так!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Что-то пошло не так. Пожалуйста, попробуйте ещё раз."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Что-то не так? Сообщите нам."
@@ -10568,7 +10798,7 @@ msgstr "Спорт"
msgid "Start a conversation, and it will appear here."
msgstr "Начните беседу, и она появится здесь."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Начать новый чат"
@@ -10582,17 +10812,17 @@ msgstr "Начните добавлять людей"
msgid "Start adding people!"
msgstr "Начните добавлять людей!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Начать общаться с {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Стартовый набор"
@@ -10654,12 +10884,12 @@ msgstr "Хранилище очищено, теперь вам нужно пер
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "История"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Отправить"
@@ -10684,9 +10914,9 @@ msgstr "Отправить обращение"
msgid "Submit Appeal"
msgstr "Отправить обращение"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Отправить жалобу"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Подписаться"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Успех"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Успех!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Верификация прошла успешно"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Закат"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Поддержка"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Переключить учётную запись"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Переключить учётные записи"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Переключиться на {0}"
@@ -10828,7 +11062,7 @@ msgstr "Только теги"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr "Нажмите, чтобы закрыть контекстное меню"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Нажмите, чтобы пропустить"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Условия"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Текст и теги"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Поле ввода текста"
@@ -11049,6 +11301,11 @@ msgstr "Следующие настройки будут использоват
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Политика конфиденциальности была перемещена в <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "При соединении с сервером возникла проблема"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Возникла проблема соединения с сервером, проверьте подключение к Интернету и повторите попытку."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Возникла проблема с загрузкой уведомлений. Нажмите здесь, чтобы повторить попытку."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Возникла проблема с загрузкой постов. Нажмите здесь, чтобы повторить попытку."
@@ -11161,7 +11420,7 @@ msgstr "Возникла проблема с загрузкой информац
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Возникла проблема с удалением этой ленты. Проверьте подключение к Интернету и повторите попытку."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Это обращение будет отправлено на адрес <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Это обращение будет отправлено в службу модерации Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Это обращение будет отправлено в служб
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Этот контент недоступен, поскольку оди
msgid "This content is not viewable without a Bluesky account."
msgstr "Этот контент недоступен для просмотра без учётной записи Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr "Эта беседа ведется с удаленной или деактивированной учётной записью. Нажмите для выбора опций"
@@ -11318,7 +11586,7 @@ msgstr "Эта беседа ведется с удаленной или деак
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr "Эта лента больше не работает. Вместо эт
msgid "This handle is reserved. Please try a different one."
msgstr "Этот псевдоним зарезервирован. Пожалуйста, попробуйте другой."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr "Эта ссылка недействительна"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr "Этот список – созданный вами – содержи
msgid "This list is empty."
msgstr "Этот список пуст."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Этот пост будет скрыт из лент и тем. Это невозможно отменить."
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Автор этого поста отключил цитирование постов."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Этот ответ будет отсортирован в скрытый раздел в нижней части вашей ветки и отключит уведомления о последующих ответах - как для вас, так и для других."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr "У этого пользователя нет отображаемого
msgid "This user doesn't have any followers."
msgstr "У этого пользователя ещё нет ни одного подписчика."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Этот пользователь заблокировал вас. Вы не можете видеть их посты."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Настройки веток"
msgid "Threaded"
msgstr "Как ветки"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Настройки веток"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Чтобы отключить метод 2FA по электронной почте, проверьте свой доступ к адресу электронной почты."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "Чтобы отключить 2FA по электронной почте, подтвердите доступ к <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Лучшее"
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Тема"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Актуальные видео"
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "Доверие рождается в отношениях, сообществах и общем контексте, поэтому мы также вводим <0>доверенных верификаторов0> — организации, которые могут непосредственно вручать верификацию."
@@ -11763,11 +12044,15 @@ msgstr "Не удалось связаться с вашим хостинг-пр
msgid "Unable to delete"
msgstr "Не удаётся удалить"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr "Недоступно"
msgid "Unavailable feed information"
msgstr "Информация о ленте недоступна"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Разблокировать список"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Отменить"
@@ -11872,7 +12157,7 @@ msgstr "Отписаться от учётной записи"
msgid "Unfollows the user"
msgstr "Отписаться от пользователя"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "К сожалению, ни один из маркировщиков в ваших подписках не поддерживает этот вид жалобы."
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr "Дизлайк"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Дизлайк ({0, plural, one {# лайк} few {# лайка} other {# лайков}})"
@@ -11918,7 +12203,7 @@ msgstr "Дизлайк ({0, plural, one {# лайк} few {# лайка} other {#
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Включить звук"
msgid "Unmute list"
msgstr "Перестать игнорировать список"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Открепить"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Открепить ленту"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Открепить от главной страницы"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Открепить список модерации"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "Откреплено {0} от главной страницы"
@@ -12030,11 +12315,11 @@ msgstr "Отписаться от этого маркировщика"
msgid "Unsubscribed from list"
msgstr "Подписка на список отменена"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr "Обновить"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Изменить <0>{displayName}0> в списках"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Обновить электронную почту"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "Изменить на {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Обновите вашу электронную почту"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Не удалось изменить видимость ответа"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Загрузить вместо этого фотографию"
@@ -12098,39 +12395,40 @@ msgstr "Загрузить вместо этого фотографию"
msgid "Upload a text file to:"
msgstr "Загрузить текстовый файл в:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Загрузить с камеры"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Загрузить из файлов"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Загрузить из библиотеки"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Загрузка изображений..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Загрузка миниатюры ссылки..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Загрузка видео..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Пользователь заблокирован"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Список пользователей от {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "пользователи, на которых подписан <0>@{0}
msgid "users following <0>@{0}0>"
msgstr "пользователи подписанные на <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr "Верификация не удалась, попробуйте ещё
msgid "Verification settings"
msgstr "Настройки верификации"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Настройки верификации"
@@ -12304,8 +12602,8 @@ msgstr "Подтвердить снова"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Подтвердить код"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Проверка DNS-записи"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Подтвердить код электронной почты"
@@ -12349,7 +12647,7 @@ msgstr "Верифицировать эту учётную запись?"
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Версия {0}"
msgid "Video"
msgstr "Видео"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Не удалось обработать видео"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Лента видео"
@@ -12419,7 +12717,7 @@ msgstr "Видео не найдено."
msgid "Video settings"
msgstr "Настройки видео"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Видео загружено"
@@ -12432,18 +12730,18 @@ msgstr "Видео: {0}"
msgid "Videos"
msgstr "Видео"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Просмотреть аватар {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Посмотреть профиль {0}"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Просмотреть детали"
msgid "View full thread"
msgstr "Просмотреть ветку полностью"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Просмотреть информацию о метках"
@@ -12522,7 +12828,7 @@ msgstr "Показать больше"
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "Просмотреть профиль"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Просмотреть аватар"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "Просмотр услуг маркировки, который пре
msgid "View this user's verifications"
msgstr "Просмотреть верификации этого пользователя"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Просмотр пользователей, которым понравилась эта лента"
@@ -12596,8 +12902,8 @@ msgstr "Просмотр отключённых учётных записей"
msgid "View your verifications"
msgstr "Просмотреть свои верификации"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Просмотр полного изображения"
@@ -12640,8 +12946,8 @@ msgstr "Предупреждать о содержимом"
msgid "Warn content and filter from feeds"
msgstr "Предупреждать о содержимом и фильтровать его из ленты"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Смотреть сейчас"
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr "Мы не смогли найти никаких результатов по этой теме."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Мы не смогли загрузить эту беседу"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Мы рекомендуем выбрать как минимум два интереса."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Мы отправили письмо на <0>{0}0>, содержащее ссылку. Нажмите на неё, чтобы завершить процесс подтверждения электронной почты."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Мы не смогли определить, доступна ли вам загрузка видео. Попробуйте ещё раз."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Мы отправим письмо на <0>{0}0>, содержащее ссылку. Нажмите на неё, чтобы завершить процесс подтверждения электронной почты."
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "У нас проблемы с сетью, попробуйте ещё раз"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Мы представляем новый уровень верификации на Bluesky — простые и понятные галочки."
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Нам очень жаль! Пост, на который вы отвечаете, был удален."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Нам очень жаль! Мы не можем найти страницу, которую вы искали."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Как вы хотите назвать свой стартовый набор?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Как дела?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Нажмите на галочку и увидите, какие организации вручили верификацию."
@@ -12878,7 +13188,7 @@ msgstr "Нажмите на галочку и увидите, какие орг
msgid "Who can interact with this post?"
msgstr "Кто может взаимодействовать с этим постом?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Кто может отвечать"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Кто может верифицировать?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Опаньки!"
@@ -12939,7 +13249,7 @@ msgstr "Почему этот стартовый набор должен быт
msgid "Why should this user be reviewed?"
msgstr "Почему следует просмотреть этого пользователя?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Написать пост"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Написать ответ"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "С сервера возвращён неверный DID. Получено: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr "Вы в прямом эфире"
msgid "You are no longer live"
msgstr "Вы больше не в прямом эфире"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Вы не можете загружать видео."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Вы можете продолжать беседу независимо от выбранной вами настройки."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Теперь вы можете выбирать, получать ли уведомления о публикациях определенных людей. Если есть кто-то, от кого вы хотите получать своевременные обновления, перейдите в его профиль и найдите значок нового колокольчика рядом с кнопкой \"Подписаться\"."
@@ -13131,7 +13442,12 @@ msgstr "Теперь вы можете выбирать, получать ли
msgid "You can now sign in with your new password."
msgstr "Теперь вы можете войти с помощью нового пароля."
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "Вы можете реактивировать свою учётную
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr "Вы можете обновить это позже в своих настройках."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "У вас нет сохранённых лент."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ msgstr "Вы успешно проверили свой адрес электр
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Вы достигли временного лимита по загрузкам видео. Попробуйте ещё раз позже."
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "Чтобы получить стартовый набор, вы долж
msgid "You must grant access to your photo library to save a QR code"
msgstr "Чтобы сохранить QR-код, необходимо предоставить доступ к библиотеке фотографий"
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Вы отреагировали {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Вы выйдете из всех своих учётных записей."
@@ -13390,7 +13710,7 @@ msgstr "Вы будете получать уведомления из этой
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Вы получите электронное письмо с \"кодом подтверждения.\" Введите этот код здесь, а затем введите новый пароль."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Ваша домашняя лента закончилась! Подпишитесь на больше учётных записей чтобы получать больше постов."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr "Вы достигли максимально допустимого ко
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Вы достигли дневного лимита по загрузкам видео (слишком много байт)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Вы достигли дневного лимита по загрузкам видео (слишком много видео)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr "Ваша учётная запись была приостановлена"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Ваша учётная запись создана ещё недостаточно давно, чтобы вы могли загружать видео. Попробуйте ещё раз позже."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Данные из вашей учётной записи, содержащие все общедоступные записи, можно загрузить как \"CAR\" файл. Этот файл не содержит медиафайлов, таких как изображения, или личные данные, которые необходимо получить отдельно."
@@ -13519,7 +13847,7 @@ msgstr "Ваше обращение было отправлено. Если об
msgid "Your birth date"
msgstr "Ваша дата рождения"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Ваши чаты были отключены"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "Не удалось распознать адрес электронной почты."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Ваша электронная почта еще не проверена. Пожалуйста, подтвердите свою электронную почту, чтобы пользоваться всеми возможностями Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "Ваша домашняя лента пуста! Подпишитесь
msgid "Your full handle will be <0>@{0}0>"
msgstr "Вашим полным псевдонимом будет <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "Ваши игнорируемые слова"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr "Ваш пароль должен состоять не менее чем из 8 символов."
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr "Ваш предпочтительный язык"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr "Ваша фотография в профиле, окруженная к
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Ваш ответ был отправлен"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Ваша жалоба будет отправлена на адрес <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "Ваша жалоба будет отправлена на адрес <0
msgid "Your selected interests help us serve you content you care about."
msgstr "Выбранные вами интересы помогают нам предоставлять вам содержимое, которое вас интересует."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/sv/messages.po b/src/locale/locales/sv/messages.po
index 4e39290f56..3faa9dcad2 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# minut} other {# minuter}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# månad} other {# månader}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr "{0, plural, one {# ny medlemsförfrågan} other {# nya medlemsförfrågningar}}"
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, one {# person} other {# personer}} reagerade med {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# sekund} other {# sekunder}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, one {# oläst notis} other {# olästa notiser}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr "{0, plural, one {# min} other {# min}}"
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} följda"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr "{0} blockerar dig"
@@ -264,7 +269,7 @@ msgstr "{0} av 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} reagerade med {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, en lista av {1}"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "{0}s avatar"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "{0}s avatar"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr "{0}/{1}"
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr "{0}/{1} {2, plural, other {medlemmar}}"
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr "{0}/{1} medlemmar"
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0} min"
msgid "{0}s"
msgstr "{0} s"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr "{count, plural, =0 {Inga medlemsförfrågningar} one {# medlemsförfrågan} other {# medlemsförfrågningar}}"
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr "{count, plural, one {# chatthändelse} other {# chatthändelser}}"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr "{count, plural, one {# ny medlemsförfrågan} other {# nya medlemsförfrågningar}}"
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, one {# förfrågan} other {# förfrågningar}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, one {# oläst notis} other {# olästa notiser}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr "{count, plural, one {Uppdatera sidan för att se den.} other {Uppdatera sidan för att se dem alla.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr "{count, plural, one {Det här inlägget har en bild.} other {Det här inlägget har # bilder.}}"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr "{count, plural, one {Uppdatera din app för att se den.} other {Uppdatera din app för att se dem alla.}}"
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr "{count, plural, other {#+ medlemsförfrågningar}}"
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "{count}+"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "{count}+ förfrågningar"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} verifierade dig"
msgid "{following} following"
msgstr "{following} följda"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "{handle} kan inte läggas till"
@@ -547,7 +599,7 @@ msgstr "{handle} kan inte läggas till"
msgid "{handle} can't be messaged"
msgstr "Det går inte att skicka meddelanden till {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "Det går inte att skicka meddelanden till {handle}"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, one {# timme {minutesString}} other {# timmar {minutesSt
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, one {# timme} other {# timmar}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "{JOIN_REQUESTS_THRESHOLD}+ nya medlemsförfrågningar"
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr "{JOIN_REQUESTS_THRESHOLD}+ nya medlemsförfrågningar"
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,9 +643,9 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, other {Du kan dölja max # svar.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
-msgstr ""
+msgstr "{memberCount}/{memberLimit}"
#: src/features/liveNow/utils.ts:10
msgid "{minutes, plural, one {# minute} other {# minutes}}"
@@ -607,7 +669,7 @@ msgstr "{name}s favoritflöden och personer – häng med!"
msgid "{name}'s starter pack"
msgstr "{name}s startpaket"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, one {# oläst notis} other {# olästa notiser}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, one {# förfrågan} other {# förfrågningar}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "{requestCount}+ förfrågningar"
@@ -795,8 +857,11 @@ msgstr "Ett nätverksfel uppstod. Kontrollera din internetanslutning"
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Ett nätverksfel uppstod. Kontrollera din internetanslutning."
@@ -804,7 +869,7 @@ msgstr "Ett nätverksfel uppstod. Kontrollera din internetanslutning."
msgid "A new code has been sent"
msgstr "En ny kod har skickats"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "En ny form av verifiering"
@@ -827,11 +892,11 @@ msgstr "Skärmdump av en profilsida med den nya klockikonen bredvid följknappen
msgid "A screenshot of 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 "En skärmdump av inläggsverktyget. Bredvid publiceringsknappen syns den nya knappen ”Utkast” dekorerad med en fyrverkerieffekt. I skrivfältet nedanför syns texten ”Hallå, har ni hört? Bluesky har utkast nu!!!” (översatt från engelska)."
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
-msgstr ""
+msgstr "En vald mottagare följs inte av avsändaren."
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -845,32 +910,51 @@ msgstr "Kränkande eller diskriminerande beteende"
#. Accept a chat request
#: src/screens/Messages/components/RequestButtons.tsx:286
msgid "Accept"
+msgstr "Acceptera"
+
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
msgstr "Godkänn"
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
-msgstr "Godkänn chattförfrågan"
+msgstr "Acceptera chattförfrågan"
+
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr "Godkänn medlemsförfrågan"
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
-msgstr "Godkänn förfrågan"
+msgstr "Acceptera förfrågan"
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:460
msgid "Accept this language suggestion"
msgstr "Använd det här språkförslaget"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr "Godkända konversationer"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr "Förfrågan skickad! Gruppägaren kommer att granska din förfrågan."
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Tillgänglighet"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Tillgänglighetsinställningar"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Konto inte längre ignorerat"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Konton med en blå, vågkantad bockmarkering <0><1/>0> kan verifiera andra. Dessa betrodda verifierare är utvalda av Bluesky."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Aktivitet från andra"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Aktivitetsnotiser"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Lägg till"
@@ -999,8 +1079,8 @@ msgstr "Lägg till konto"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Lägg till alternativtext (valfritt)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Lägg till ett annat konto"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Lägg till ett ytterligare inlägg"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Lägg till ytterligare ett inlägg i tråden"
@@ -1035,7 +1115,7 @@ msgstr "Lägg till applösenord"
msgid "Add App Password"
msgstr "Lägg till applösenord"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "Lägg till automatiseringsetikett på kontot"
@@ -1043,7 +1123,7 @@ msgstr "Lägg till automatiseringsetikett på kontot"
msgid "Add emoji reaction"
msgstr "Lägg till emoji-reaktion"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Lägg till medlemmar i gruppchatt"
@@ -1052,7 +1132,7 @@ 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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Lägg till media i inlägg"
@@ -1062,8 +1142,8 @@ msgstr "Lägg till media i inlägg"
msgid "Add members"
msgstr "Lägg till medlemmar"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Lägg till mer detaljer (valfritt)"
@@ -1080,8 +1160,8 @@ msgstr "Lägg till ignorerat ord med de angivna inställningarna"
msgid "Add muted words and tags"
msgstr "Lägg till ord och taggar att ignorera"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "Lägger till medlemmar i lista…"
msgid "Additional details (limit 1000 characters)"
msgstr "Ytterligare detaljer (max 1000 tecken)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Ytterligare detaljer (max 300 tecken)"
@@ -1228,12 +1308,12 @@ msgstr "Din förfrågan om ålderskontroll har skickats"
msgid "Age assurance only takes a few minutes"
msgstr "Ålderskontrollen tar bara några minuter"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@exempel.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Alla"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "Alla {0}"
@@ -1278,13 +1358,13 @@ msgstr "Tillåt åtkomst till dina direktmeddelanden"
msgid "Allow anyone to reply"
msgstr "Tillåt svar från alla"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "Tillåt direktmeddelanden från"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr "Tillåt gruppchattsinbjudningar från"
@@ -1338,12 +1418,12 @@ msgstr "Har du redan ett konto?"
msgid "Already signed in as @{0}"
msgstr "Redan inloggad som @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Alternativtext"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alternativtexter beskriver bilder för blinda och användare med nedsatt syn. De hjälper också gemene man med kontext och sammanhang."
@@ -1387,7 +1467,7 @@ msgstr "Ett fel har uppstått"
msgid "An error occurred"
msgstr "Ett fel uppstod"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Ett fel uppstod under komprimeringen av videoklippet."
@@ -1432,11 +1512,11 @@ msgstr "Ett fel uppstod när QR-koden skulle sparas!"
msgid "An error occurred while trying to follow all"
msgstr "Ett fel uppstod när du försökte följa alla"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "Ett fel uppstod under uppladdningen av videoklippet. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "Ett fel uppstod under uppladdningen av videoklippet. Kontrollera din internetanslutning och försök igen."
@@ -1461,21 +1541,21 @@ msgstr "En illustration av flera Bluesky-inlägg tillsammans med ikonerna för
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "En illustration som visar att Bluesky väljer betrodda verifierare, som i sin tur verifierar enskilda användarkonton."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "En inbjudningslänk låter personer gå med i gruppchatten utan att läggas till direkt. Du bestämmer vilka som kan använda länken och om de behöver ditt godkännande. Du kan när som helst inaktivera länken."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr "En inbjudningslänk låter personer gå med i chatten utan att läggas till direkt. Du bestämmer vem som kan gå med i chatten och du kan inaktivera länken när du vill."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Något problematiskt som inte omfattas av de andra alternativen"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
-msgstr ""
+msgstr "Ett problem uppstod när gruppchatten skulle skapas. Försök igen."
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
-msgstr ""
+msgstr "Ett problem uppstod när chatten skulle startas. Försök igen."
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
msgid "An issue occurred while trying to open the chat"
@@ -1490,7 +1570,7 @@ msgstr "Ett problem uppstod när chatten skulle öppnas"
msgid "An issue occurred, please try again."
msgstr "Ett problem uppstod. Försök igen."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "En visualisering av en iPhone med Bluesky-appen öppen, där profilen till en verifierad användare visas. En blå bockmarkering syns intill användarens visningsnamn."
@@ -1539,13 +1619,17 @@ msgstr "Alla"
msgid "Anyone can interact"
msgstr "Alla får interagera"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr "Vem som helst kan gå med"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "Vem som helst kan gå med direkt"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "Vem som helst kan begära att få gå med"
@@ -1555,11 +1639,11 @@ msgstr "Vem som helst kan begära att få gå med"
msgid "Anyone who follows me"
msgstr "Alla som följer mig"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr "De som har tillgång till den kommer inte längre kunna gå med eller begära att få gå med. Du kan alltid skapa en ny länk."
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Namn på applösenord måste vara minst 4 tecken långa"
msgid "App passwords"
msgstr "Applösenord"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Applösenord"
@@ -1618,7 +1702,7 @@ msgstr "Begär omprövning av avstängning från livesändning"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Omprövningsbegäran skickad"
@@ -1632,14 +1716,14 @@ msgstr "Begär omprövning av avstängning"
msgid "Appeal Suspension"
msgstr "Begär omprövning av avstängning"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Begär omprövning av beslutet"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "Är du verkligen, verkligen säker?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Är du säker på att du vill radera applösenordet ”{0}”?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Är du säker på att du vill radera det här meddelandet? Meddelandet kommer att raderas för dig, men inte för de andra deltagarna."
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "Är du säker på att du vill lämna {groupName}?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
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: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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+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 de andra deltagarna."
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
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?"
@@ -1752,7 +1836,7 @@ msgstr "Automatiserat konto"
msgid "Automation label"
msgstr "Automatiseringsetikett"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "Automatiseringsetikett"
@@ -1767,12 +1851,12 @@ msgstr "Spela upp videoklipp och gif-bilder automatiskt"
msgid "Available"
msgstr "Tillgängligt"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Tillgängligt"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Tillgängligt"
msgid "Back"
msgstr "Tillbaka"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Tillbaka till chattar"
@@ -1840,12 +1926,12 @@ msgstr "Du måste verifiera din e-post innan du kan godkänna den här chattför
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "Innan du kan få notiser om {name}s inlägg måste du först verifiera din e-postadress."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Du måste verifiera din e‑post innan du kan skicka meddelanden till andra användare."
@@ -1877,7 +1963,7 @@ msgstr "Födelsedag"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "Blockera {displayName}"
msgid "Block account"
msgstr "Blockera konto"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Blockera konto?"
@@ -1912,15 +1998,15 @@ msgstr "Blockera konto?"
msgid "Block accounts"
msgstr "Blockera konton"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
-msgstr ""
+msgstr "Blockera och radera"
#. After-report action for a conversation
#: src/components/dms/AfterReportConversationDialog.tsx:167
msgctxt "button"
msgid "Block and leave"
-msgstr ""
+msgstr "Blockera och lämna"
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
msgid "Block list"
@@ -1936,9 +2022,9 @@ msgstr "Blockera dessa konton?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Blockera användare"
@@ -1946,17 +2032,17 @@ msgstr "Blockera användare"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Blockera användare"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Blockera användare och/eller radera den här konversationen"
#: src/components/dms/AfterReportConversationDialog.tsx:217
msgid "Block user and/or leave this conversation"
-msgstr ""
+msgstr "Blockera användare och/eller lämna den här konversationen"
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Blockerat"
@@ -1964,13 +2050,13 @@ msgstr "Blockerat"
msgid "Blocked accounts"
msgstr "Blockerade konton"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Blockerade konton"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
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, omnämna dig eller på annat sätt interagera med dig."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky är bättre med vänner!"
msgid "Bluesky is more fun with friends"
msgstr "Bluesky är roligare med vänner"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Bluesky är roligare med vänner! Importera dina kontakter för att se vilka som redan finns här."
@@ -2053,7 +2139,7 @@ msgstr "Bluesky väljer en uppsättning av rekommenderade konton från personer
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 "Bluesky visar inte din profil eller dina inlägg för utloggade användare. Andra appar kanske inte respekterar denna begäran. Den här inställningen gör inte ditt konto privat."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky kommer proaktivt att verifiera framstående och äkta konton."
@@ -2137,23 +2223,30 @@ msgstr "Affärer"
msgid "Button to go back to the home timeline"
msgstr "Knapp som tar dig tillbaka till hemtidslinjen"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Av {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Av <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr "Av <0>{ownerDisplayName}0>"
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr "av <0>@{0}0>"
@@ -2181,7 +2274,7 @@ msgstr "Genom att skapa ett konto godkänner du våra <0>användarvillkor0>."
msgid "By you"
msgstr "Av dig"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Kamera"
@@ -2192,8 +2285,8 @@ msgstr "Kamera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Kamera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Avbryt"
@@ -2248,9 +2341,9 @@ msgstr "Avbryt återaktivering och logga ut"
msgid "Cancel search"
msgstr "Avbryt sökning"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Det går inte att interagera med en blockerad användare"
@@ -2264,7 +2357,7 @@ msgstr "Undertexter (.vtt)"
msgid "Captions & alt text"
msgstr "Undertexter och alternativtexter"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "karusell"
@@ -2297,7 +2390,7 @@ msgstr "Ändra appspråk"
msgid "Change Handle"
msgstr "Ändra användarnamn"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Ändra modereringstjänst"
@@ -2310,11 +2403,11 @@ msgstr "Ändra lösenord"
msgid "Change password dialog"
msgstr "Dialogruta för ändring av lösenord"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Ändra kategori för anmälan"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Ändra skäl till anmälan"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Ändringar i startpaketet kommer inte att återspeglas i listan efter skapandet. Listan blir en fristående kopia."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Chatt"
@@ -2361,6 +2454,13 @@ msgstr "Chatt raderad"
msgid "Chat ended"
msgstr "Chatt avslutad"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr "Inbjudningslänken till den här chatten är inte längre tillgänglig"
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "Chatt låst"
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Chatt ignorerad"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
-msgstr ""
+msgstr "Chattmottagare följs inte av avsändaren."
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Inkorg för chattförfrågningar"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Chattförfrågningar"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Chattinställningar"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Chattinställningar"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Chatt inte längre ignorerad"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Chattar"
@@ -2479,7 +2579,7 @@ msgstr "Välj inläggsspråk"
msgid "Choose this color as your avatar"
msgstr "Välj den här färgen som din avatar"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "Välj vem som får gå med i den här gruppchatten och hur."
@@ -2533,7 +2633,7 @@ msgstr "Klicka för information"
msgid "click here"
msgstr "klicka här"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "Klicka här för att lägga till personer i den här gruppchatten"
@@ -2541,7 +2641,7 @@ msgstr "Klicka här för att lägga till personer i den här gruppchatten"
msgid "Click here to contact our support team"
msgstr "Klicka här för att kontakta vårt supportteam"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "Klicka här för att skapa eller modifiera en inbjudningslänk för den här gruppchatten"
@@ -2558,7 +2658,7 @@ msgstr "Klicka här för att logga ut"
msgid "Click here to resend the email"
msgstr "Klicka här för att skicka e-postmeddelandet igen"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Klicka här för att börja om verifieringsprocessen."
@@ -2567,11 +2667,11 @@ msgstr "Klicka här för att börja om verifieringsprocessen."
msgid "Click here to update your birthdate"
msgstr "Klicka här för att uppdatera ditt födelsedatum"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "Klicka här för att uppdatera din e-post"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "Klicka här för att visa inbjudningslänken för den här gruppchatten"
@@ -2580,7 +2680,7 @@ msgstr "Klicka här för att visa inbjudningslänken för den här gruppchatten"
msgid "Click to open tag menu for {0}"
msgstr "Klicka för att öppna taggmenyn för {0}"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Klicka för att försöka på nytt med misslyckat meddelande"
@@ -2594,28 +2694,30 @@ msgstr "Klicka för att försöka på nytt med misslyckat meddelande"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Klicka för att försöka på nytt med misslyckat meddelande"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Stäng aktiv dialogruta"
msgid "Close alert"
msgstr "Stäng notis"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr "Stäng banderoll"
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Stäng den nedersta lådan"
@@ -2657,8 +2763,9 @@ msgstr "Stäng den nedersta lådan"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Stäng dialogruta"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Stäng bild"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Stäng bildvisare"
@@ -2683,6 +2790,14 @@ msgstr "Stäng bildvisare"
msgid "Close menu"
msgstr "Stäng meny"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr "Stäng banderollen för väntande förfrågningar"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Stäng den här dialogrutan"
@@ -2695,7 +2810,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:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Stänger inläggsverktyget och slänger utkastet"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Serier"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Gemenskapens riktlinjer"
@@ -2740,12 +2855,12 @@ msgstr "Slutför kontrollen"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Skriv ett nytt inlägg"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
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"
@@ -2753,11 +2868,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:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "Komprimerar gif-bild…"
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Komprimerar videoklipp…"
@@ -2780,7 +2895,7 @@ msgstr "Konfigureras i <0>modereringsinställningar0>."
msgid "Confirm"
msgstr "Bekräfta"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Innehåll och media"
msgid "Content and media"
msgstr "Innehåll och media"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Innehåll och media"
@@ -2889,7 +3004,7 @@ msgstr "Utanför kontextmenyn. Klicka för att stänga menyn."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Utöka tråd"
msgid "Continue thread..."
msgstr "Utöka tråd…"
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Fortsätt till gruppnamn"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Fortsätt till nästa steg"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Konversation"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Konversation raderad"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Konversation raderad"
@@ -2939,13 +3054,20 @@ msgstr "Konversation raderad"
#: src/components/dms/AfterReportConversationDialog.tsx:179
msgctxt "toast"
msgid "Conversation left"
-msgstr ""
+msgstr "Konversation lämnad"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr "Konversationen hittades inte."
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Byggversion kopierad till urklipp"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Kopiera DID"
msgid "Copy host"
msgstr "Kopiera värd"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Kopiera länk till profil"
msgid "Copy link to starter pack"
msgstr "Kopiera länk till startpaket"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Kopiera meddelandetext"
@@ -3052,7 +3175,7 @@ msgstr "Kopiera värde för TXT-post"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Upphovsrättspolicy"
@@ -3065,7 +3188,7 @@ msgstr "Kunde inte ansluta till anpassat flöde"
msgid "Could not connect to feed service"
msgstr "Kunde inte ansluta till flödestjänst"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr "Kunde inte hämta inlägg"
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Kunde inte följa alla matchningar. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Kunde inte lämna chatt"
@@ -3094,6 +3217,10 @@ msgstr "Kunde inte lämna chatt"
msgid "Could not load feed"
msgstr "Kunde inte läsa in flöde"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr "Kunde inte läsa in inbjudan"
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Landskod"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Skapa"
@@ -3159,7 +3286,7 @@ msgstr "Skapa en QR-kod för ett startpaket"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Skapa ett startpaket"
@@ -3174,13 +3301,14 @@ msgstr "Skapa ett startpaket åt mig"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Skapa ett konto"
msgid "Create an account without using this starter pack"
msgstr "Skapa ett konto utan att använda det här startpaketet"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Skapa en avatar istället"
@@ -3206,7 +3334,7 @@ msgstr "Skapa en avatar istället"
msgid "Create another"
msgstr "Skapa ett till"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Skapa gruppchatt"
@@ -3228,19 +3356,20 @@ msgstr "Skapa lista baserad på startpaket"
msgid "Create moderation list"
msgstr "Skapa modereringslista"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Skapa nytt konto"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr "Skapa eller modifiera en inbjudningslänk för den här gruppchatten"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Skapa anmälan för {0}"
@@ -3256,8 +3385,8 @@ msgstr "Skapa användarlista"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Skapade {0}"
@@ -3341,7 +3470,7 @@ msgstr "Förvald"
msgid "Default icons"
msgstr "Förvalda ikoner"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Radera chattdeklarationsposten"
msgid "Delete contacts"
msgstr "Radera kontakter"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Radera konversation"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Radera för mig"
@@ -3399,11 +3528,11 @@ msgstr "Radera för mig"
msgid "Delete list"
msgstr "Radera lista"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Radera meddelande"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Radera meddelandet för mig"
@@ -3413,7 +3542,7 @@ msgstr "Radera mitt konto"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Radera inlägg"
@@ -3434,12 +3563,12 @@ msgstr "Radera den här listan?"
msgid "Delete this post?"
msgstr "Radera det här inlägget?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Raderat"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Raderat konto"
@@ -3507,13 +3636,13 @@ msgstr "Dialogruta: ställ in vem som får interagera med det här inlägget"
msgid "Dim"
msgstr "Dämpat"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Inaktivera"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "Inaktivera 2FA"
@@ -3521,7 +3650,7 @@ msgstr "Inaktivera 2FA"
msgid "Disable captions"
msgstr "Inaktivera undertexter"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "Inaktivera 2FA via e-post"
@@ -3534,8 +3663,8 @@ msgstr "Inaktivera 2FA via e-post"
msgid "Disable haptic feedback"
msgstr "Inaktivera haptisk feedback"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr "Inaktivera länk"
@@ -3547,7 +3676,7 @@ msgstr "Inaktivera citatinlägg för det här inlägget"
msgid "Disable replies entirely"
msgstr "Inaktivera svar helt"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "Inaktivera den här inbjudningslänken?"
@@ -3560,9 +3689,9 @@ msgstr "Inaktiverat"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Släng"
msgid "Discard changes?"
msgstr "Vill du slänga ändringarna?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Vill du slänga utkastet?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Vill du slänga inlägget?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Koppla från Germ DM"
@@ -3613,11 +3742,11 @@ msgstr "Upptäck nya flöden"
msgid "Dismiss"
msgstr "Avvisa"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Avvisa banderoll"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Avvisa fel"
@@ -3673,7 +3802,7 @@ msgstr "Innehåller ingen nakenhet."
msgid "Domain verified!"
msgstr "Domän verifierad!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Har du ingen kod eller behöver du en ny? <0>Klicka här.0>"
@@ -3681,7 +3810,7 @@ msgstr "Har du ingen kod eller behöver du en ny? <0>Klicka här.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Hittar du ingen kod? <0>Klicka här för att skicka en ny.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "Hittar du inget e-postmeddelande? <0>Klicka här för att skicka ett nytt.0>"
@@ -3700,16 +3829,19 @@ msgstr "Ingen fara! Alla dina befintliga meddelanden och inställningar är spar
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Klar"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Håll nere eller dubbeltryck på meddelandet för att lägga till en reaktion"
@@ -3741,15 +3873,6 @@ msgstr "Dubbeltryck för att gilla"
msgid "Download Bluesky"
msgstr "Ladda ner Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Ladda ner car-fil"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Ladda ner car-fil"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Ladda ner chattdata"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Ladda ner chattdata"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Ladda ner bild"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr "Ladda ner profildata"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr "Ladda ner profildata"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Spridning av privat information (”doxxing”)"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "t.ex. Användare som hela tiden svarar med annonser."
msgid "Eating disorders"
msgstr "Ätstörningar"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Redigera"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Redigera avatar"
@@ -3847,14 +3978,14 @@ msgstr "Redigera avatar"
msgid "Edit Feeds"
msgstr "Redigera flöden"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Redigera gruppnamn"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Redigera bild"
@@ -3868,7 +3999,16 @@ msgstr "Redigera interaktionsinställningar"
msgid "Edit interests"
msgstr "Redigera intressen"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr "Redigera inbjudningslänk"
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr "Redigera inbjudningslänk"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "Redigera länkinställningar"
@@ -3886,20 +4026,15 @@ msgstr "Redigera livesändningsstatus"
msgid "Edit moderation list"
msgstr "Redigera modereringslista"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Redigera mina flöden"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "Redigera namn"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "Redigera notiser från {0}"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Redigera personer"
@@ -3925,7 +4060,7 @@ msgstr "Redigera profil"
msgid "Edit starter pack"
msgstr "Redigera startpaket"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "Redigera gruppchattens namn"
@@ -3937,7 +4072,7 @@ msgstr "Redigera användarlista"
msgid "Edit who can reply"
msgstr "Redigera vem som får svara"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Redigera ditt startpaket"
@@ -3971,7 +4106,7 @@ msgstr "E-postadress"
msgid "Email Resent"
msgstr "E-postmeddelandet har skickats på nytt"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "E-postmeddelande skickat!"
@@ -4006,8 +4141,8 @@ msgstr "Bädda in det här inlägget på din hemsida. Det är bara att kopiera f
msgid "Embedded video player"
msgstr "Inbäddad videospelare"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Aktivera"
@@ -4025,7 +4160,7 @@ msgstr "Tillåt vuxeninnehåll"
msgid "Enable captions"
msgstr "Aktivera undertexter"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "Aktivera 2FA via e-post"
@@ -4038,13 +4173,12 @@ msgstr "Aktivera extern media"
msgid "Enable media players for"
msgstr "Aktivera mediaspelare för"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Aktivera notiser för ett konto genom att besöka dess profil och trycka på <0>klockikonen0> <1/>."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Aktivera pushnotiser"
@@ -4091,8 +4225,8 @@ msgstr "Ange ett lösenord"
msgid "Enter a word or tag"
msgstr "Ange ett ord eller en tagg"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Ange kod"
@@ -4143,7 +4277,7 @@ msgstr "Öppnar helskärm"
msgid "Entertainment"
msgstr "Underhållning"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Fel"
@@ -4185,23 +4319,23 @@ msgstr "Alla får svara"
msgid "Everybody can reply to this post."
msgstr "Alla får svara på det här inlägget."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Alla"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Alla"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Alla"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Allt annat"
@@ -4217,8 +4351,8 @@ msgstr "Undantar användare du följer"
msgid "Exit fullscreen"
msgstr "Stäng helskärm"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Utöka alternativtext"
@@ -4226,7 +4360,7 @@ msgstr "Utöka alternativtext"
msgid "Expand list of users"
msgstr "Utöka lista över användare"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Utöka eller fäll ihop det inlägg som du svarar på"
@@ -4238,7 +4372,7 @@ msgstr "Utöka inläggstext"
msgid "Expands or collapses post text"
msgstr "Utökar eller fäller ihop inläggstext"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "Förväntade att URI:n skulle hänvisa till en datapost"
@@ -4277,9 +4411,9 @@ msgstr "Explicit eller potentiellt stötande media."
msgid "Explicit sexual images."
msgstr "Explicit sexuella bilder."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Utforska"
@@ -4289,11 +4423,8 @@ msgstr "Utforska"
msgid "Explore the app"
msgstr "Utforska appen"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr "Exportera chattdata"
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "Exportera min chattdata"
@@ -4322,7 +4453,7 @@ msgstr "Extern media"
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 "Extern media kan göra det möjligt för webbplatser att samla in information om dig och din enhet. Ingen information skickas eller begärs förrän du trycker på spelaknappen."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Inställningar för extern media"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Det gick inte att godkänna chatt"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr "Det gick inte att godkänna medlemsförfrågan"
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Det gick inte att lägga till emoji-reaktion"
@@ -4354,7 +4489,7 @@ msgstr "Det gick inte att lägga till i startpaket"
msgid "Failed to change handle. Please try again."
msgstr "Det gick inte att ändra användarnamn. Försök igen."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "Det gick inte att kopiera länk"
@@ -4367,7 +4502,7 @@ msgstr "Det gick inte att skapa ett applösenord. Försök igen."
msgid "Failed to create conversation"
msgstr "Det gick inte att skapa konversation"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "Det gick inte att skapa inbjudningslänk"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Det gick inte att radera chatten"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Det gick inte att radera inlägget"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "Det gick inte att inaktivera inbjudningslänk"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Det gick inte att koppla från Germ DM. Fel: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "Det gick inte att redigera gruppchattens namn"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "Det gick inte att redigera inbjudningslänk"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "Det gick inte att aktivera inbjudningslänk"
@@ -4427,19 +4562,27 @@ msgstr "Det gick inte att följa alla dina vänner. Försök igen"
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "Det gick inte att dölja förslag. Kontrollera din internetanslutning"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr "Det gick inte att avfärda medlemsförfrågan"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr "Det gick inte att gå med i gruppchatten. Försök igen."
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "Det gick inte att starta SMS-app"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "Det gick inte att lämna gruppchatt"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Det gick inte att läsa in konversationer"
@@ -4456,17 +4599,8 @@ msgstr "Det gick inte att läsa in flöden"
msgid "Failed to load feeds preferences"
msgstr "Det gick inte att läsa in flödesinställningar"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Det gick inte att läsa in notisinställningar."
@@ -4493,16 +4627,15 @@ msgstr "Det gick inte att läsa in föreslagna flöden"
msgid "Failed to load suggested follows"
msgstr "Det gick inte att läsa in föreslagna konton att följa"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "Det gick inte att låsa gruppchatt"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Det gick inte att markera alla förfrågningar som lästa"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "Det gick inte att ignorera gruppchatt"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Det gick inte att fästa inlägget"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Det gick inte att återansluta Germ DM. Fel: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Det gick inte att ta bort data. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Det gick inte att ta bort emoji-reaktion"
@@ -4542,15 +4675,19 @@ msgstr "Det gick inte att ta bort medlem från gruppchatt"
msgid "Failed to remove verification"
msgstr "Det gick inte att ta bort verifiering"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr "Det gick inte att återkalla din förfrågan. Försök igen."
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
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:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Det gick inte att spara utkast"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "Det gick inte att spara bild"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Det gick inte att spara dina intressen."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "Det gick inte att skicka e-postmeddelande. Försök igen."
@@ -4580,7 +4717,7 @@ msgstr "Det gick inte att skicka rapport"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Det gick inte att skicka omprövningsbegäran. Försök igen."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Det gick inte att ignorera tråden. Försök igen"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr "Det gick inte att låsa upp gruppchatt"
@@ -4597,12 +4734,12 @@ msgstr "Det gick inte att låsa upp gruppchatt"
msgid "Failed to unpin list"
msgstr "Det gick inte att lossa lista"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "Det gick inte att uppdatera inställningar för 2FA via e-post"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "Det gick inte att uppdatera e-post. Försök igen."
@@ -4614,7 +4751,7 @@ msgstr "Det gick inte att uppdatera flödena"
msgid "Failed to update notification declaration"
msgstr "Det gick inte att uppdatera notisdeklaration"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Det gick inte att uppdatera inställningarna"
@@ -4641,7 +4778,7 @@ msgstr "Falskt konto eller bot"
msgid "False information about elections"
msgstr "Falsk information om val eller röstning"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Flöde"
@@ -4649,7 +4786,7 @@ msgstr "Flöde"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Flöde av {0}"
@@ -4662,7 +4799,7 @@ msgstr "Flödets skapare"
msgid "Feed identifier"
msgstr "Flödets identifierare"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Meny för flöde"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Feedback skickad till flödesoperatör"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Flöden"
@@ -4739,7 +4876,7 @@ msgstr "Filtrera sökning efter språk (nuvarande: {currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Filtrera vem som kan välja att få notiser om din aktivitet"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Filtrera vem du får notiser från"
@@ -4747,11 +4884,11 @@ msgstr "Filtrera vem du får notiser från"
msgid "Finalizing"
msgstr "Slutför"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Äntligen!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Finans"
msgid "Find accounts to follow"
msgstr "Hitta konton att följa"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Hitta kontakter"
@@ -4799,7 +4936,7 @@ msgstr "Hitta personer att följa"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Hitta inlägg, användare och flöden på Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Hitta dina vänner"
@@ -4944,8 +5081,12 @@ msgstr "Följs av <0>{0}0> och <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Följs av <0>{0}0>, <1>{1}1>, och {2, plural, one {# annan} other {# andra}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr "Följare kan gå med"
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Följare av @{0} som du känner"
@@ -4995,19 +5136,16 @@ msgstr "Följer {handle}"
msgid "Following feed preferences"
msgstr "Inställningar för Följer-flödet"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Inställningar för Följer-flödet"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Följer dig"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Följer dig"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Typsnitt"
@@ -5069,7 +5207,7 @@ msgstr "Glömt?"
msgid "Free your feed"
msgstr "Befria ditt flöde"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "Från"
@@ -5086,35 +5224,35 @@ msgstr "Från <0/>"
msgid "Generate a starter pack"
msgstr "Generera ett startpaket"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Generera inbjudningslänk"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Generera ny inbjudningslänk"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Generera ny länk"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germ DM frånkopplat"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Germ DM-länk"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germ DM återanslutet"
@@ -5122,46 +5260,50 @@ msgstr "Germ DM återanslutet"
msgid "Get help"
msgstr "Få hjälp"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr "Få notiser när andra använder dina startpaket vid registrering, samt om verifiering och annan aktivitet."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Få notiser när andra följer dig."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Få notiser när andra gillar inlägg som du har återpublicerat."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Få notiser när andra gillar dina inlägg."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr "Få notiser när andra gillar dina återpubliceringar."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Få notiser när du omnämns av andra."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Få notiser när andra citerar dina inlägg."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Få notiser när andra svarar på dina inlägg."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Få notiser när andra återpublicerar inlägg som du har återpublicerat."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Få notiser när andra återpublicerar dina inlägg."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr "Få notiser när andra återpublicerar dina återpubliceringar."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr "Få notiser om aktivitet på inlägg du prenumererar på."
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Bli notifierad om nya inlägg"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Bli notifierad om inlägg och svar från konton du väljer."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "Bli notifierad om nya inlägg från {name}"
@@ -5174,27 +5316,27 @@ msgstr "Bli notifierad om det här kontots aktivitet"
msgid "Get notified when {name} posts"
msgstr "Bli notifierad när {name} publicerar inlägg"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Bli notifierad när någon publicerar inlägg"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Kom igång"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "Gif-bild"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "Gif-bild uppladdad"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Ge din profil ett ansikte"
@@ -5213,20 +5355,21 @@ msgstr "Förhärligande av våld"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Gå tillbaka"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Gå tillbaka"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Gå tillbaka till föregående steg"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Gå till Hem"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Gå till Hem"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Gå till Hem"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Gå till kontoinställningar"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Gå till konversation med {0}"
@@ -5299,12 +5440,12 @@ msgstr "Gå till nästa"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Gå till profil"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "Gå till gruppchatten ”{chatName}”"
@@ -5320,8 +5461,8 @@ msgstr "Gå till användarens profil"
msgid "Going live is currently disabled for your account"
msgstr "Livesändning är för närvarande inaktiverat för ditt konto"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Uppfattat"
@@ -5340,59 +5481,75 @@ msgstr "Grafiskt våldsamt innehåll"
msgid "Grooming or predatory behavior"
msgstr "Sexuell manipulation eller utnyttjande av barn (”grooming”)"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr "Gruppchatt"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "Dialogruta för inbjudningslänk för gruppchatt"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "Gruppchatt låst"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "Gruppchatt ignorerad"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr "Namn på gruppchatt uppdaterat"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "Inställningar för gruppchatt"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "Gruppchatt upplåst"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "Gruppchatt inte längre ignorerad"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr "Gruppchattar är inte tillgängliga ännu"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr "Gruppchattar är nu tillgängliga"
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr "Gruppchattar kan ha maximalt {0, plural, other {# personer}}."
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "Gruppen är låst"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Gruppnamn"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr "Gruppnamnet är för långt. Det maximala antalet tecken är {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Intrång eller systemattacker"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Användarnamnet är för långt. Försök med ett kortare."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "Pågår nu"
@@ -5446,7 +5603,7 @@ msgstr "Skadliga eller riskfyllda aktiviteter"
msgid "Harming or endangering minors"
msgstr "Innehåll som kan skada eller utsätta minderåriga för fara"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Hashtagg"
@@ -5458,8 +5615,8 @@ msgstr "Hashtagg: {tag}"
msgid "Hate speech"
msgstr "Hatpropaganda"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Har du en kod? <0>Klicka här.0>"
@@ -5483,7 +5640,7 @@ msgstr "Hålls av Bluesky i 7 dagar för att förhindra missbruk, därefter rade
msgid "Help"
msgstr "Hjälp"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Låt folk veta att du inte är en bot genom att ladda upp en bild eller skapa en avatar."
@@ -5652,18 +5809,18 @@ msgstr "Hmmmm, det verkar som om vi har problem med att läsa in den här datan.
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmmm, vi kunde inte ladda den modereringstjänsten."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Vänta lite! Vi ger gradvis tillgång till videoklipp till fler användare, och du står fortfarande i kön. Försök igen senare!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Sakta i backarna! Den här funktionen är inte tillgänglig för dig ännu. Kika förbi senare."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Hem"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
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"
@@ -5757,7 +5914,7 @@ msgstr "Om du raderar den här listan kommer du inte att kunna återställa den.
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Om du har en egen domän kan du använda den som ditt användarnamn. Det gör det möjligt för dig att själv verifiera din identitet. <0>Läs mer här.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "Om du behöver uppdatera din e-post, <0>klicka här0>."
@@ -5765,7 +5922,7 @@ msgstr "Om du behöver uppdatera din e-post, <0>klicka här0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Om du tar bort det här inlägget kommer du inte att kunna återställa det."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Om du uppdaterar din e-postadress kommer 2FA via e-post att inaktiveras."
@@ -5773,7 +5930,6 @@ msgstr "Om du uppdaterar din e-postadress kommer 2FA via e-post att inaktiveras.
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Om du vill ändra ditt lösenord skickar vi en kod till dig för att verifiera att det här är ditt konto."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Om du vill begränsa vem som kan få notiser om ditt kontos aktivitet kan du ändra detta under <0>Inställningar → Integritet och säkerhet0>."
@@ -5786,23 +5942,33 @@ msgstr "Om du är utvecklare kan du driva en egen server."
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Om du vill ändra ditt användarnamn eller din e-postadress måste du göra det innan du inaktiverar kontot."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr "Avfärda"
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr "Avfärda medlemsförfrågan"
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Bild"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "Bild {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Bild {0} av {1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "Bild {0} av {imageCount}"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Bild-cache rensad, frigjorde {0}"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "Bildgalleri, {0} bilder"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "Bilden är dold på grund av dina modereringsinställningar."
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "Bilden är inte tillgänglig."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Bildalternativ"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Utger sig för att vara någon annan"
msgid "Import contacts"
msgstr "Importera kontakter"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Importera kontakter"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Importera kontakter för att hitta dina vänner"
@@ -5881,40 +6047,40 @@ msgstr "Importerades den {0}"
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 "För att kunna ge dig en upplevelse som är lämplig för din ålder behöver vi veta ditt födelsedatum. Det här behöver bara göras en gång, och din data kommer hållas privat."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "I appen"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Notiser i appen"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr "I appen, Från alla"
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr "I appen, Från personer du följer"
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr "I appen, Push"
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "I appen, Push, Från alla"
-
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr "I appen, Push, Från personer du följer"
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr "I appen, Push, Från personer du följer"
+
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "Inkorgen är tom"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Inkorgen är tom!"
@@ -5963,6 +6129,10 @@ msgstr "Nu införs sparade inlägg, även kallat bokmärken"
msgid "Invalid 2FA confirmation code."
msgstr "Ogiltig bekräftelsekod för 2FA."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr "Ogiltig gruppchattskod."
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Ogiltigt användarnamn. Försök med ett annat."
@@ -5977,10 +6147,14 @@ msgstr "Ogilitiga interaktionsinställningar."
msgid "Invalid phone number"
msgstr "Ogiltigt telefonnummer"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Ogiltigt ämne för anmälan"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr "Ogiltig begäran om återkallelse."
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Ogiltig verifieringskod"
@@ -6010,12 +6184,12 @@ msgstr "Bjud in vänner"
msgid "Invite friends <0/>"
msgstr "Bjud in vänner <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Inbjudningslänk"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "Inbjudningslänk skapad"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "Inbjudningslänk inaktiverad"
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Just nu är det bara du! Lägg till fler personer i ditt startpaket genom att söka ovan."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "Jobb-ID: {0}"
@@ -6083,6 +6257,11 @@ msgstr "Jobb-ID: {0}"
msgid "Jobs"
msgstr "Jobb"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr "Gå med"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Jobb"
msgid "Join Bluesky"
msgstr "Gå med i Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr "Gå med i gruppchatt"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr "Medlemsförfrågan återkallad."
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Delta i samtalen"
msgid "Journalism"
msgstr "Journalistik"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Fortsätt redigera"
@@ -6143,7 +6331,7 @@ msgstr "Etiketter på ditt konto"
msgid "Labels on your content"
msgstr "Etiketter på ditt innehåll"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Språkinställningar"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Senaste"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Läs mer om den här varningen"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Läs mer om verifiering på Bluesky"
@@ -6239,7 +6427,7 @@ msgstr "Läs mer om verifiering på Bluesky"
msgid "Learn more about what is public on Bluesky."
msgstr "Läs mer om vad som är publikt på Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Läs mer om din Germ DM-länk"
@@ -6252,8 +6440,8 @@ msgstr "Läs mer i dina <0>kontoinställningar0>."
msgid "Learn more."
msgstr "Läs mer."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Lämna"
@@ -6276,7 +6464,7 @@ msgstr "Lämna chatt"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Lämna konversation"
@@ -6284,13 +6472,13 @@ msgstr "Lämna konversation"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Lämna konversation"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "Lämna gruppchatt"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr "Lämna den här gruppchatten"
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Ljus"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Gilla ({0, plural, one {# gillamarkering} other {# gillamarkeringar}})"
@@ -6346,11 +6534,7 @@ msgstr "Gilla 10 inlägg"
msgid "Like 10 posts to train the Discover feed"
msgstr "Gilla 10 inlägg för att träna Upptäck-flödet"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Notiser för gillamarkeringar"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Gilla det här flödet"
@@ -6358,8 +6542,8 @@ msgstr "Gilla det här flödet"
msgid "Like this labeler"
msgstr "Gilla den här etikettsättaren"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Gillat av"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Gillat av {0, plural, one {# användare} other {# användare}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Gillat av {likeCount, plural, one {# användare} other {# användare}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Gillamarkeringar"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Gillamarkeringar på dina återpubliceringar"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Notiser för gillamarkeringar på dina återpubliceringar"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Gillamarkeringar på det här inlägget"
@@ -6409,11 +6589,11 @@ msgstr "Gillamarkeringar på det här inlägget"
msgid "Linear"
msgstr "Linjär vy"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "Länk kopierad till urklipp"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Lista"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Lista inte längre ignorerad"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listor"
@@ -6545,7 +6725,7 @@ msgstr "Liveevenemang synliggjort"
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."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "Livesändningsfunktionen är i beta"
@@ -6595,27 +6775,27 @@ msgstr "Läser in inläggets interaktionsinställningar…"
msgid "Loading..."
msgstr "Laddar…"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "Lås"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "Lås gruppchatt"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "Lås gruppchatt?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "Lås den här gruppchatten"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "Låst"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Logg"
@@ -6662,7 +6842,7 @@ msgstr "Det ser ut som om du saknar ett flöde med personer du följer. <0>Klick
msgid "Love GIFs"
msgstr "Kärleksfulla gif-bilder"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Gör justeringar i ditt kontos e-postinställningar"
@@ -6687,9 +6867,8 @@ msgstr "Hantera verifieringsinställningar"
msgid "Manage your muted words and tags"
msgstr "Hantera dina ignorerade ord och taggar"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Markera alla som lästa"
@@ -6698,13 +6877,12 @@ msgstr "Markera alla som lästa"
msgid "Mark as read"
msgstr "Markera som läst"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Markerade alla som lästa"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Kanske senare"
@@ -6727,25 +6905,21 @@ 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."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Medlemmar"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "Medlemmarna kan fortfarande läsa chatthistoriken men kan inte skicka nya meddelanden."
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Notiser för omnämnanden"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "omnämnda användare"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Omnämnanden"
@@ -6775,22 +6949,22 @@ msgstr "Meddelande {0}"
msgid "Message {displayName}"
msgstr "Skicka meddelande till {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Meddelande raderat"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Meddelande raderat"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Det gick inte att skicka meddelande."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Meddelande från @{0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Meddelandet är för långt"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "Meddelandet är för långt ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Meddelandealternativ"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Meddelanden"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr "Meddelanden från den här personen är dolda så länge personen blockerar dig."
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr "Meddelanden från den här personen är dolda så länge du blockerar personen."
@@ -6838,10 +7012,6 @@ msgstr "Midnatt"
msgid "Minor harassment or bullying"
msgstr "Trakasserier eller mobbning av minderårig"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Övriga notiser"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Vilseledning"
@@ -6850,7 +7020,7 @@ msgstr "Vilseledning"
msgid "Missing media"
msgstr "Media saknas"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderering"
@@ -6894,7 +7064,7 @@ msgstr "Modereringslista uppdaterad"
msgid "Moderation lists"
msgstr "Modereringslistor"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Modereringslistor"
@@ -6903,7 +7073,7 @@ msgstr "Modereringslistor"
msgid "moderation settings"
msgstr "modereringsinställningar"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Modereringslägen"
@@ -6949,7 +7119,7 @@ msgstr "Filmer"
msgid "Music"
msgstr "Musik"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Ignorera"
@@ -6994,7 +7164,7 @@ msgstr "Ignoreringslista"
msgid "Mute these accounts?"
msgstr "Ignorera dessa konton?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "Ignorera den här gruppchatten"
@@ -7032,7 +7202,7 @@ msgstr "Ignorera tråd"
msgid "Mute words & tags"
msgstr "Ignorera ord och taggar"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "Ignoreras"
@@ -7040,7 +7210,7 @@ msgstr "Ignoreras"
msgid "Muted accounts"
msgstr "Ignorerade konton"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Ignorerade konton"
@@ -7108,8 +7278,8 @@ msgstr "Navigerar till nästa ruta"
msgid "Navigates to your profile"
msgstr "Navigerar till din profil"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Behöver du skicka in ett upphovsrättsärende, en juridisk begäran eller något som rör regulatorisk efterlevnad?"
@@ -7136,34 +7306,34 @@ msgstr "{postsCount, plural, one {Nytt} other {Nya}} inlägg från {firstAuthorL
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{postsCount, plural, one {Nytt} other {Nya}} inlägg från {firstAuthorName}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Ny chatt"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "Ny chatt med {0}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "Ny chatt med {0} och {1}"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "Ny chatt med {0}, {1} och {memberCount, plural, one {{memberCount} till} other {{memberCount} till}}."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Ny e-postadress"
@@ -7174,29 +7344,25 @@ msgstr "Ny e-postadress"
msgid "New Feature"
msgstr "Ny funktion"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Notiser för nya följare"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Nya följare"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "Ny gruppchatt"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "Ny gruppchatt"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "Ny gruppchatt med:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Nytt inlägg"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Nytt inlägg"
@@ -7262,8 +7428,8 @@ msgstr "Nyheter"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "Ingen gif-bild hittades för ”{query}”."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "Det finns inga gif-bilder att visa just nu. Försök igen om en stund."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Ingen bild"
@@ -7362,7 +7528,7 @@ msgstr "{0} följs inte längre"
msgid "No media yet"
msgstr "Ingen media ännu"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Inga meddelanden ännu"
@@ -7378,12 +7544,12 @@ msgstr "Inget namn"
msgid "No notifications yet!"
msgstr "Inga notiser ännu!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Ingen"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Ingen"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Inga resultat"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Inga resultat"
@@ -7509,10 +7675,6 @@ msgstr "Intima bilder eller videoklipp delade utan samtycke"
msgid "Non-sexual Nudity"
msgstr "Icke-sexuell nakenhet"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Ingen"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "Ej tillgängligt på denna plattform."
msgid "Not followed by anyone you’re following"
msgstr "Följs inte av någon som du följer"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Hittades inte"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Inte redo att publicera? Spara dina idéer som utkast tills tiden är inne."
@@ -7548,44 +7710,31 @@ msgstr "Obs: Det här inlägget visas bara för inloggade användare."
msgid "Nothing saved yet"
msgstr "Inget sparat ännu"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Notisinställningar"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Notisljud"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Notiser"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Notiser för allt annat, t.ex. när någon använder ett av dina startpaket vid registrering."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "nyss"
@@ -7601,7 +7750,7 @@ msgstr "Numret bör vara ett mobilnummer"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Av"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "på<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Återställning av kom-igång-guide"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
-msgstr ""
+msgstr "En av de valda mottagarna tillåter inte gruppchattar."
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
-msgstr ""
+msgstr "En av de valda mottagarna har blockerat dig och kan inte nås via meddelanden."
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "En eller flera gif-bilder saknar alternativtext."
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "En eller flera bilder saknar alternativtext."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr "En eller flera av de filer du valt är för stora. Maxstorlek är {VIDEO_MAX_SIZE_MB} MB."
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Ett eller flera inlägg är för långa för att sparas som utkast. {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {Maximalt antal tecken är #.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Ett eller flera videoklipp saknar alternativtext."
@@ -7685,6 +7835,26 @@ msgstr "Ett eller flera videoklipp saknar alternativtext."
msgid "Only {0} can reply."
msgstr "Endast {0} får svara."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr "Endast {0} av {1} {2, plural, one {bild} other {bilder}} lades till. Gränsen är {MAX_GALLERY_IMAGES} bilder"
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr "Endast administratörer kan godkänna medlemsförfrågningar."
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr "Endast administratörer kan avfärda medlemsförfrågningar."
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr "Endast följare kan gå med i den här gruppchatten."
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Bara följare som jag följer"
msgid "Only image files are supported"
msgstr "Endast bildfiler stöds"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr "Endast personer som {0} följer kan gå med."
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr "Endast personer som chattägaren följer kan gå med"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Endast WebVTT-filer (.vtt) stöds"
@@ -7712,7 +7892,7 @@ msgstr "Hoppsan, något gick fel!"
msgid "Oops!"
msgstr "Hoppsan!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Öppna avatarskapare"
@@ -7720,12 +7900,17 @@ msgstr "Öppna avatarskapare"
msgid "Open camera"
msgstr "Öppna kamera"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr "Öppna chatt"
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "Öppna medlemsalternativ för {displayName}"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Öppna konversationsalternativ"
@@ -7739,16 +7924,16 @@ msgstr "Öppna sidpanel"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Öppna emoji-väljaren"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Öppna dialogruta med information om flöde"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Öppna meny för flödesalternativ"
@@ -7760,13 +7945,17 @@ msgstr "Öppna fullständig emoji-lista"
msgid "Open Germ DM"
msgstr "Öppna Germ DM"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr "Öppna gruppchatt"
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "Öppna inställningar för gruppchatt"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Öppna länk till {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Öppna paket"
msgid "Open post options menu"
msgstr "Öppna meny för inläggsalternativ"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Öppna profil"
@@ -7817,6 +8006,10 @@ msgstr "Öppna Storybook-sida"
msgid "Open system log"
msgstr "Öppna systemlogg"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr "Öppna den här gruppchatten"
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Öppnar ytterligare detaljer för en loggpost"
msgid "Opens alt text dialog"
msgstr "Öppnar dialogruta för alternativtext"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Öppnar kameran på enheten"
@@ -7858,22 +8051,24 @@ msgstr "Öppnar inläggsverktyget"
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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr "Öppnar enhetens galleri där du kan välja upp till {MAX_GALLERY_IMAGES, plural, other {# bilder}}, ett enskilt videoklipp eller en enskild gif-bild."
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Öppnar guiden för att skapa ett nytt Bluesky-konto"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "Öppnar guide för att logga in på ditt befintliga Bluesky-konto"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Öppnar bild i full vy"
@@ -7890,7 +8085,7 @@ msgstr "Öppnar bildväljaren"
msgid "Opens link {0}"
msgstr "Öppnar länken {0}"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Öppnar dialogruta för livesändningsstatus"
@@ -7919,9 +8114,9 @@ msgstr "Öppnar inläggsverktyget"
msgid "Opens this draft in the composer"
msgstr "Öppnar det här utkastet i inläggsverktyget"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Öppnar den här profilen"
@@ -7997,12 +8192,12 @@ msgstr "Vårt blogginlägg"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Vårt modereringsteam har tagit emot din anmälan."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Våra moderatorer har granskat anmälningarna och beslutat att ta bort din åtkomst till chattar på Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Våra moderatorer har granskat anmälningarna och beslutat att ta bort d
msgid "Owner"
msgstr "Ägare"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Sidan hittades inte"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Sidan hittades inte"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Pausa video"
msgid "People"
msgstr "Personer"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "Personer som {ownerName} följer kan gå med direkt"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "Personer som {ownerName} följer kan begära att få gå med"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Personer som följs av @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Personer som följer @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Personer jag följer"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "Personer jag följer kan gå med direkt"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "Personer jag följer kan begära att få gå med"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Bilder avsedda för vuxna."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Fäst flöde"
@@ -8152,7 +8348,7 @@ msgstr "Fäst flöde"
msgid "Pin to home"
msgstr "Fäst på hem"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Fäst på Hem"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Fäst"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "Fäste {0} på Hem"
@@ -8236,7 +8432,7 @@ msgstr "Välj ditt användarnamn."
msgid "Please choose your password."
msgstr "Välj ditt lösenord."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Klicka på länken i e-postmeddelandet vi just skickade till dig för att bekräfta din nya e-postadress. Det här är ett viktigt steg för att du ska kunna fortsätta använda alla funktioner på Bluesky."
@@ -8244,7 +8440,7 @@ msgstr "Klicka på länken i e-postmeddelandet vi just skickade till dig för at
msgid "Please complete the verification captcha."
msgstr "Slutför captcha-verifieringen."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Bekräfta din e-postadress för att ladda upp videoklipp."
@@ -8265,14 +8461,14 @@ msgstr "Ange ett lösenord. Det måste vara minst 8 tecken långt."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Ange ett unikt namn för applösenordet eller använd ett slumpmässigt genererat av oss."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Ange en giltig kod."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Ange en giltig e-postadress."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Se till att ange en giltig, icke-tillfällig e-postadress. Du kan behöva komma åt den här e-posten i framtiden."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Ange den kod vi skickade till <0>{0}0> nedan."
@@ -8293,7 +8489,7 @@ msgstr "Ange den kod vi skickade till <0>{0}0> nedan."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Ange koden du fick och det nya lösenordet du vill använda."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Ange den säkerhetskod vi skickade till din tidigare e-postadress."
@@ -8306,7 +8502,7 @@ msgstr "Ange din e-postadress."
msgid "Please enter your invite code."
msgstr "Ange din inbjudningskod."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Ange din nya e-postadress."
@@ -8323,7 +8519,7 @@ msgstr "Ange ditt användarnamn"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Förklara varför du anser att den här etiketten har använts på ett felaktigt sätt av {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Förklara varför du anser att dina chattar felaktigt har inaktiverats"
@@ -8366,7 +8562,7 @@ msgstr "Använd mobilappen för att importera dina kontakter."
msgid "Please use the native app to sync your contacts."
msgstr "Använd mobilappen för att synkronisera dina kontakter."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Verifiera din e-post"
@@ -8383,7 +8579,7 @@ msgstr "Politik"
msgid "Porn"
msgstr "Porr"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Publicera"
@@ -8403,12 +8599,12 @@ msgstr "Publicera ett foto"
msgid "Post a video"
msgstr "Publicera ett videoklipp"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Publicera alla"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Publicera ändå"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Inlägg blockerat"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Inlägg av @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Inlägg raderat"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Inlägget kunde inte laddas upp. Kontrollera din internetanslutning och försök igen."
@@ -8454,7 +8650,7 @@ msgstr "Inlägg dolt av dig"
msgid "Post interaction settings"
msgstr "Interaktionsinställningar för inlägg"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Interaktionsinställningar för inlägg"
@@ -8464,8 +8660,8 @@ msgstr "Interaktionsinställningar för inlägg"
msgid "Post language selection"
msgstr "Val av inläggsspråk"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Publicera länk"
@@ -8491,7 +8687,6 @@ msgstr "Inlägg lossat"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Inlägg kan ignoreras baserat på textinnehåll, taggar eller bådadera.
msgid "Posts hidden"
msgstr "Inlägg dolda"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Inlägg, Svar"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Potentiellt vilseledande länk"
@@ -8528,6 +8719,7 @@ msgstr "Tryck för att försöka återansluta"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Tryck för att försöka igen"
@@ -8536,7 +8728,7 @@ msgstr "Tryck för att försöka igen"
msgid "Press to view followers of this account that you also follow"
msgstr "Tryck för att visa personer både du och det här kontot följer"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Förhandsvisning"
@@ -8559,21 +8751,20 @@ msgstr "Integritet"
msgid "Privacy and security"
msgstr "Integritet och säkerhet"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Integritet och säkerhet"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Integritets- och säkerhetsinställningar"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Integritetspolicy"
msgid "Privacy violation of a minor"
msgstr "Kränkning av minderårigs integritet"
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "Bearbetar gif-bild…"
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Bearbetar videoklipp…"
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Bearbetar…"
@@ -8602,8 +8793,8 @@ msgstr "Bearbetar…"
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Publicera inlägg"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
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:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Publicera samtliga svar"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Publicera samtliga svar"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Push"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Pushnotiser"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr "Push, Från alla"
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr "Push, Från personer du följer"
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "QR-koden har laddats ner!"
msgid "QR code saved to your camera roll!"
msgstr "QR-koden har sparats i din kamerarulle!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Notiser för citat"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Citatinlägg inaktiverade"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Citat"
@@ -8733,11 +8920,11 @@ msgstr "Förfrågningsgränsen har överskridits. Försök igen senare."
msgid "Re-attach quote"
msgstr "Sätt tillbaka citat"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Återaktivera inbjudningslänk"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Återaktivera länk"
@@ -8745,8 +8932,8 @@ msgstr "Återaktivera länk"
msgid "React with {emoji}"
msgstr "Reagera med {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Reaktioner"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "läs om hur du använder sökfilter"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Läs blogginlägget"
@@ -8812,11 +8999,11 @@ msgstr "Äkta människor."
msgid "Reason for appeal"
msgstr "Skäl för omprövningsbegäran"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Ta emot notiser i appen"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Ta emot pushnotiser"
@@ -8841,6 +9028,10 @@ msgstr "Rekommenderat"
msgid "Reconnect"
msgstr "Återanslut"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr "Uppdatera sidan för att se den."
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Avvisa"
msgid "Reject chat request"
msgstr "Avvisa chattförfrågan"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Ladda om konversationer"
@@ -8896,17 +9087,17 @@ msgstr "Ta bort konto"
msgid "Remove all contacts"
msgstr "Ta bort alla kontakter"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Ta bort bilaga"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Ta bort avatar"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Ta bort banderoll"
@@ -8914,8 +9105,9 @@ msgstr "Ta bort banderoll"
msgid "Remove caption file"
msgstr "Ta bort undertextfil"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Ta bort inbäddning"
@@ -8933,8 +9125,8 @@ msgstr "Ta bort flöde?"
msgid "Remove from chat"
msgstr "Ta bort från chatt"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Ta bort från sparade inlägg"
msgid "Remove from your feeds?"
msgstr "Ta bort från dina flöden?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Ta bort bild"
@@ -9009,11 +9201,11 @@ msgstr "Ta bort verifiering"
msgid "Remove your verification for this account?"
msgstr "Ta bort din verifiering av det här kontot?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Borttaget av författaren"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Borttaget av dig"
@@ -9035,7 +9227,7 @@ msgstr "Togs bort från sparade inlägg"
msgid "Removed from starter pack"
msgstr "Togs bort från startpaket"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Svarade dig"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Svar"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Svara"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Svara ({0, plural, one {# svar} other {# svar}})"
@@ -9125,10 +9316,6 @@ msgstr "Svaret har dolts av trådskaparen"
msgid "Reply Hidden by You"
msgstr "Svaret har dolts av dig"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Notiser för svar"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Svarsinställningarna sätts av trådens skapare"
@@ -9146,9 +9333,9 @@ msgstr "Synlighet för svar har uppdaterats"
msgid "Reply was successfully hidden"
msgstr "Svaret doldes utan problem"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Anmäl"
@@ -9164,13 +9351,13 @@ msgstr "Anmäl konto"
msgid "Report conversation"
msgstr "Anmäl konversation"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Dialogruta för anmälan"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Anmäl flöde"
@@ -9179,7 +9366,7 @@ msgstr "Anmäl flöde"
msgid "Report list"
msgstr "Anmäl lista"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Anmäl meddelande"
@@ -9199,8 +9386,8 @@ msgstr "Anmäl startpaket"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Anmälan skickad"
@@ -9213,7 +9400,7 @@ msgstr "Anmäl den här konversationen"
msgid "Report this feed"
msgstr "Anmäl det här flödet"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "Anmäl den här gruppchatten"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Anmäl den här listan"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Anmäl där här livesändningen"
@@ -9256,10 +9443,6 @@ msgstr "Återpublicera"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Återpublicera ({0, plural, one {# återpublicering} other {# återpubliceringar}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Notiser för återpubliceringar"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Återpublicerat av dig"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Återpubliceringar"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Återpubliceringar av det här inlägget"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Återpubliceringar av dina återpubliceringar"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Notiser för återpubliceringar av dina återpubliceringar"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr "Begär att få åtkomst till gruppchatten"
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr "Förfrågan godkänd."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Begär kod"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr "Förfrågan avfärdad."
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr "Begär att få gå med"
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr "Förfrågan skickad"
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "Förfrågningar"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr "Medlemsförfrågningar"
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Kräv alternativtext innan publicering"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Kräv en kod som skickas via e-post för att logga in på ditt konto."
@@ -9328,7 +9534,11 @@ msgstr "Obligatoriskt för den här leverantören"
msgid "Required in your region"
msgstr "Obligatoriskt i din region"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr "Återkalla förfrågan"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Skicka igen"
@@ -9393,15 +9603,16 @@ msgstr "Försöker igen med den senaste misslyckade åtgärden"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Försöker igen med den senaste misslyckade åtgärden"
msgid "Retry"
msgstr "Försök igen"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Försök läsa in alternativ för anmälan på nytt"
@@ -9426,14 +9637,14 @@ msgstr "Försök läsa in alternativ för anmälan på nytt"
msgid "Return to previous page"
msgstr "Gå tillbaka till föregående sida"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Går tillbaka till startsidan"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Går tillbaka till föregående sida"
@@ -9454,7 +9665,7 @@ msgstr "Ledsna gif-bilder"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Spara födelsedatum"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Spara ändringar"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Spara ändringar?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Spara utkast"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Spara utkast?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Spara QR-kod"
msgid "Save these options for next time"
msgstr "Spara mina val till nästa gång"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Spara till mina flöden"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Sparat"
msgid "Saved Feeds"
msgstr "Sparade flöden"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Sparade inlägg"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Sparat i dina flöden"
@@ -9551,8 +9764,8 @@ msgstr "Sparat i dina flöden"
msgid "Say hello!"
msgstr "Säg hej!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "Säg hej till någon"
@@ -9576,18 +9789,18 @@ msgstr "Rulla åt höger"
msgid "Scroll to top"
msgstr "Gå till toppen"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Sök"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Sök i @{0}s inlägg"
@@ -9667,7 +9880,7 @@ msgstr "Sök i mina inlägg"
msgid "Search posts"
msgstr "Sök inlägg"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Sök profiler"
msgid "Search..."
msgstr "Sök…"
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Söker efter profiler"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Säkerhetssteg krävs"
@@ -9759,7 +9972,7 @@ msgstr "Välj {langName}"
msgid "Select a color"
msgstr "Välj en färg"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Välj orsak"
@@ -9828,7 +10041,7 @@ msgstr "Välj gif-bild"
msgid "Select GIF \"{0}\""
msgstr "Välj gif-bild ”{0}”"
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "Välj medlemmar till gruppchatten"
@@ -9850,7 +10063,7 @@ msgstr "Välj språk…"
msgid "Select languages"
msgstr "Välj språk"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Välj modereringstjänst"
@@ -9904,11 +10117,11 @@ msgstr "Välj dina intressen bland alternativen nedan"
msgid "Select your preferred language for translations in your feed."
msgstr "Välj önskat språk för översättningar i ditt flöde."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Välj önskade notiskanaler"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "Val av flera medietyper stöds inte."
@@ -9921,9 +10134,9 @@ msgstr "Självskadebeteende eller farligt beteende"
msgid "Send code"
msgstr "Skicka kod"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Skicka e-postmeddelande"
@@ -9939,7 +10152,7 @@ msgstr "Rapportera fel"
msgid "Send feedback"
msgstr "Skicka feedback"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Skicka meddelande"
@@ -9952,7 +10165,7 @@ msgstr "Skicka inlägg till {name}"
msgid "Send post to..."
msgstr "Skicka inlägg till…"
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Skicka anmälan till {title}"
@@ -9960,7 +10173,7 @@ msgstr "Skicka anmälan till {title}"
msgid "Send the message from your phone"
msgstr "Skicka meddelandet från din telefon"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Skicka via direktmeddelande"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "Skickat {0}"
@@ -10015,14 +10228,14 @@ msgstr "Ange ditt födelsedatum nedan så är du igång och kan börja skriva in
msgid "Sets email for password reset"
msgstr "Ställer in e-postadress för återställning av lösenord"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Inställningar"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Inställningar för aktivitet från andra"
@@ -10030,39 +10243,39 @@ msgstr "Inställningar för aktivitet från andra"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Inställningar för att tillåta andra att bli notifierade om dina inlägg"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Notisinställningar för gillamarkeringar"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Notisinställningar för omnämnanden"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Notisinställningar för nya följare"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Notisinställningar för allt annat"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Notisinställningar för gillamarkeringar på dina återpubliceringar"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Notisinställningar för återpubliceringar av dina återpubliceringar"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Notisinställninngar för citat"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Notisinställningar för svar"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Notisinställningar för återpubliceringar"
@@ -10079,10 +10292,12 @@ msgstr "Sexuella handlingar eller erotisk nakenhet."
msgid "Sexually Suggestive"
msgstr "Sexuellt suggestivt"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Dela författarens DID"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Dela bild"
@@ -10124,7 +10339,7 @@ msgstr "Dela inläggets at://-URI"
msgid "Share QR code"
msgstr "Dela QR-kod"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Dela det här flödet"
@@ -10151,7 +10366,7 @@ msgstr "Dela via…"
msgid "Share your contacts to find friends"
msgstr "Dela dina kontakter för att hitta vänner"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Testare för delade inställningar"
@@ -10167,16 +10382,16 @@ msgstr "Visa alternativtext"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Visa ändå"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "Visa automatiseringsetikett"
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Visa varning och filtrera i flöden"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Visa att du sänder live"
@@ -10297,15 +10512,17 @@ msgstr "Visar innehållet"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Logga in eller skapa ett konto"
msgid "Sign in or create your account to join the conversation!"
msgstr "Logga in eller skapa ett konto för att delta i konversationen!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr "Logga in för att godkänna inbjudan."
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Logga in på ett olistat konto"
@@ -10337,6 +10558,10 @@ msgstr "Logga in på ett olistat konto"
msgid "Sign in to Bluesky or create a new account"
msgstr "Logga in på Bluesky eller skapa ett nytt konto"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr "Logga in för att begära att få åtkomst till den här gruppchatten."
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Logga in för att visa inlägg"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Logga ut"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Logga ut"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Logga ut?"
@@ -10391,7 +10616,7 @@ msgstr "Hoppa över"
msgid "Skip contact sharing and continue to the app"
msgstr "Hoppa över kontaktdelning och fortsätt till appen"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Hoppa över tomma inlägg?"
@@ -10405,7 +10630,7 @@ msgstr "Hoppa över introduktionen och börja använda ditt konto"
msgid "Skip to next step"
msgstr "Hoppa till nästa steg"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "slide"
@@ -10413,7 +10638,7 @@ msgstr "slide"
msgid "Smaller"
msgstr "Mindre"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Skjuter upp påminnelsen"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "Någon lämnade gruppen"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Någon reagerade med {0}"
@@ -10487,17 +10712,22 @@ msgstr "Någon togs bort"
msgid "Someone was removed from the group"
msgstr "Någon togs bort från gruppen"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr "Något nytt finns här"
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Något står inte helt rätt till med den data du försöker anmäla. Vänligen kontakta supporten."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Något gick fel"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Något gick fel!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Något gick fel. Försök igen om en stund."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Något gick fel. Försök igen."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Är något på tok? Hör av dig till oss."
@@ -10568,7 +10798,7 @@ msgstr "Sport"
msgid "Start a conversation, and it will appear here."
msgstr "Starta en konversation, så visas den här."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Starta en ny chatt"
@@ -10582,17 +10812,17 @@ msgstr "Börja med att lägga till personer"
msgid "Start adding people!"
msgstr "Börja med att lägga till personer!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Starta chatt"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Starta chatt med {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Startpaket"
@@ -10654,12 +10884,12 @@ msgstr "Datan har rensats. Starta om appen nu."
msgid "Stored as part of a secure code for matching with others"
msgstr "Lagras som en säker kod för att hitta matchningar med andra användare"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Storybook"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 "Streamar du på Twitch? Ställ in din livestatus på Bluesky för att lägga till ett märke vid din avatar. De som trycker på märket tas direkt till din stream."
@@ -10671,8 +10901,8 @@ msgstr "Streamar du på Twitch? Ställ in din livestatus på Bluesky för att l
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Skicka"
@@ -10684,9 +10914,9 @@ msgstr "Skicka omprövningsbegäran"
msgid "Submit Appeal"
msgstr "Skicka omprövningsbegäran"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Skicka anmälan"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Prenumerera"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr "Prenumerera med {0}"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr "Prenumerera på {publicationTitle} med {0}"
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Klart"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Klart!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr "Du har gått med i gruppchatten!"
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Verifiering lyckades"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Föreslagna"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Solnedgång"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,20 +11014,20 @@ msgstr "Support"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Den här funktionen har inte aktiverats för ditt land ännu. Kom tillbaka senare."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
-msgstr ""
+msgstr "Avstängda konton kan inte delta i en gruppchatt."
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
-msgstr ""
+msgstr "Avstängda konton kan inte delta i chatten."
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Byt konto"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Byt mellan konton"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "Byt till {0}"
@@ -10828,7 +11062,7 @@ msgstr "Endast taggar"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Tryck nedan för att ge Bluesky åtkomst till din GPS-position. Vi använder sedan den informationen för att mer exakt kunna avgöra vilket innehåll och vilka funktioner som är tillgängliga i din region."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr "Tryck för detaljer"
@@ -10854,33 +11088,51 @@ msgstr "Tryck för att bekräfta att du förstår och godkänner uppdateringarna
msgid "Tap to close context menu"
msgstr "Tryck för att stänga kontextmeny"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr "Tryck för att kopiera den här inbjudningslänken"
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Tryck för att avvisa"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr "Tryck för att gå med i den här gruppchatten direkt"
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr "Tryck för att öppna den här gruppchatten"
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Tryck för att ta bort"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "Tryck för att ta bort din reaktion {0}"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr "Tryck för att begära att få åtkomst till den här gruppchatten"
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Tryck för att försöka igen"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "Tryck för att visa reaktioner med {0}"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Tryck för att visa alla reaktioner"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Tryck för att visa reaktioner"
@@ -10924,7 +11176,7 @@ msgstr "Villkor"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Textinnehåll och taggar"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Textinmatningsfält"
@@ -11049,6 +11301,11 @@ msgstr "Följande inställningar används som standard när du skapar nya inläg
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "Enligt lagen i din region måste du verifiera att du är vuxen för att få tillgång till vissa funktioner. Tryck för att läsa mer."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr "Gränsen för antalet medlemmar har nåtts."
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "Författaren till inlägget du svarar på har angett att det är skrivet på {suggestedLanguageName}. Vill du svara på <0>{suggestedLanguageName}0>?"
@@ -11057,10 +11314,10 @@ msgstr "Författaren till inlägget du svarar på har angett att det är skrivet
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Integritetspolicyn har flyttats till <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
-msgstr "Det valda videoklippet är större än {videoSize} MB. Försök igen med en mindre fil."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
+msgstr "Det valda videoklippet är större än {VIDEO_MAX_SIZE_MB} MB. Försök igen med en mindre fil."
#: src/lib/hooks/useCleanError.ts:41
#: src/lib/strings/errors.ts:19
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "Det finns ingen inbjudningslänk för den här gruppchatten."
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "Ett problem uppstod under inläsningen av gif-bilderna. Kontrollera din anslutning och försök igen."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "Ett problem uppstod med din internetanslutning. Försök igen"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "Ett problem uppstod med din internetanslutning. Försök igen"
msgid "There was an issue contacting the server"
msgstr "Ett problem uppstod med anslutningen till servern"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Ett problem uppstod med anslutningen till servern. Kontrollera din internetanslutning och försök igen."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Ett problem uppstod med att hämta notiser. Tryck här för att försöka igen."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Ett problem uppstod med att hämta inlägg. Tryck här för att försöka igen."
@@ -11161,7 +11420,7 @@ msgstr "Ett problem uppstod med att hämta din serviceinformation"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Ett problem uppstod med att ta bort det här flödet. Kontrollera din internetanslutning och försök igen."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Denna omprövningsbegäran kommer att skickas till <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Denna omprövningsbegäran kommer att skickas till Blueskys modereringstjänst."
@@ -11263,7 +11522,7 @@ msgstr "Denna omprövningsbegäran kommer att skickas till Blueskys modereringst
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "Den här författaren har valt att bara visa sina inlägg för inloggade."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "Med den här knappen kan andra öppna Germ DM-appen för att skicka ett meddelande till dig. Du kan ställa in om knappen ska visas eller inte i Germ DM-appen. Du kan också koppla från ditt Bluesky-konto från Germ DM helt och hållet genom att trycka på knappen nedan."
@@ -11271,7 +11530,12 @@ msgstr "Med den här knappen kan andra öppna Germ DM-appen för att skicka ett
msgid "This chat has ended"
msgstr "Den här chatten är avslutad"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr "Den här chatten är full"
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "Den här chatten är låst"
@@ -11310,7 +11574,11 @@ msgstr "Det här innehållet är inte tillgängligt eftersom en av de involverad
msgid "This content is not viewable without a Bluesky account."
msgstr "Det här innehållet kan inte visas utan ett Bluesky-konto."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr "Den här konversationen är låst."
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Den här konversationen är med ett raderat eller avaktiverat konto. Try
msgid "This draft will be permanently deleted."
msgstr "Utkastet kommer att raderas permanent."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Den här e-postadressen är redan associerad med ditt konto."
@@ -11360,7 +11628,7 @@ msgstr "Det här flödet är inte längre online. Vi visar <0>Upptäck0> istä
msgid "This handle is reserved. Please try a different one."
msgstr "Det här användarnamnet är reserverat. Försök med ett annat."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "Den här bilden kunde inte användas. Försök med ett annat format såsom .jpg eller .png."
@@ -11368,6 +11636,18 @@ msgstr "Den här bilden kunde inte användas. Försök med ett annat format sås
msgid "This information is private and not shared with other users."
msgstr "Den här informationen är privat och delas inte med andra användare."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr "Den här inbjudningslänken har inaktiverats."
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr "Den här inbjudningslänken har gått ut"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr "Den här inbjudningslänken är ogiltig"
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "Det här är ett tomt tillstånd"
@@ -11377,9 +11657,9 @@ msgstr "Det här är ett tomt tillstånd"
msgid "This is not a valid link"
msgstr "Det här är inte en giltig länk"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
-msgstr "Etiketten talar om för världen att kontot är automatiserat. Är den är aktiverad visas den bredvid visningsnamnet i kontots profil och inlägg. Etiketten kan när som helst slås på eller av."
+msgstr "Etiketten talar om för världen att kontot är automatiserat. Är den aktiverad visas den bredvid visningsnamnet i kontots profil och inlägg. Etiketten kan när som helst slås på eller av."
#: src/components/moderation/ModerationDetailsDialog.tsx:184
msgid "This label was applied by the author."
@@ -11410,13 +11690,13 @@ msgstr "Namnet eller beskrivningen i den här listan – som är skapad av dig
msgid "This list is empty."
msgstr "Den här listan är tom."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr "Det här meddelandet är dolt eftersom användaren blockerar dig."
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr "Det här meddelandet är dolt eftersom du blockerar användaren."
@@ -11454,7 +11734,7 @@ msgstr "Det här inlägget har raderats av författaren"
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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Författaren till det här inlägget har inaktiverat citatinlägg."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Det här svaret kommer att läggas i en dold sektion längst ner i tråden. Notiser för efterföljande svar stängs av både för dig själv och andra."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "Den här vyn är endast tillgänglig för gruppkonversationer."
@@ -11494,18 +11775,18 @@ msgstr "Den här användaren har inget visningsnamn och kan därför inte verifi
msgid "This user doesn't have any followers."
msgstr "Den här användaren har inga följare."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Den här användaren har blockerat dig och kan inte nås via meddelanden."
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr "Den här användaren har blockerat dig. Du kan inte se användarens innehåll."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
-msgstr ""
+msgstr "Den här användaren har inaktiverat chatten och kan inte nås via meddelanden."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
@@ -11574,7 +11855,7 @@ msgstr "Trådinställningar"
msgid "Threaded"
msgstr "Trädvy"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Trådinställningar"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "För att inaktivera 2FA via e-post, verifiera att du har tillgång till e-postadressen."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "För att inaktivera 2FA via e-post, verifiera att du har tillgång till <0>{0}0>"
@@ -11646,12 +11927,12 @@ msgstr "Topp"
msgid "Top replies first"
msgstr "Populära svar först"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Ämne"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Trendande videoklipp"
msgid "Trolling"
msgstr "Avsiktligt störande eller provocerande beteende (”trolling”)"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "Förtroende skapas genom relationer, gemenskaper och delade sammanhang. Därför inför vi även <0>betrodda verifierare0> – organisationer med möjlighet att utfärda verifieringar direkt."
@@ -11763,13 +12044,17 @@ msgstr "Det gick inte att ansluta till din tjänst. Kontrollera din internetansl
msgid "Unable to delete"
msgstr "Det gick inte att radera"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
-msgid "Unable to find a selected recipient."
-msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr "Kunde inte hämta medlemsförfrågningar."
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr "Kunde inte hitta en vald mottagare."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
-msgstr ""
+msgstr "Kunde inte att hitta den valda mottagaren."
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
@@ -11791,7 +12076,7 @@ msgstr "Otillgängligt"
msgid "Unavailable feed information"
msgstr "Otillgänglig flödesinformation"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Häv blockering av lista"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Ångra"
@@ -11872,7 +12157,7 @@ msgstr "Sluta följ konto"
msgid "Unfollows the user"
msgstr "Slutar följa användaren"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Tyvärr stöder ingen av de etikettsättare du prenumererar på den här typen av anmälan."
@@ -11904,13 +12189,13 @@ msgstr "Omarkerat vuxeninnehåll"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Vuxeninnehåll som inte har markerats, är kränkande eller delas utan samtycke"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Sluta gilla ({0, plural, one {# gillamarkering} other {# gillamarkeringar}})"
@@ -11918,7 +12203,7 @@ msgstr "Sluta gilla ({0, plural, one {# gillamarkering} other {# gillamarkeringa
msgid "Unlock chat"
msgstr "Lås upp chatt"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr "Lås upp den här gruppchatten"
@@ -11955,7 +12240,7 @@ msgstr "Sluta ignorera konversation"
msgid "Unmute list"
msgstr "Sluta ignorera lista"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "Sluta ignorera den här gruppchatten"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Lossa"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Lossa flöde"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Lossa från hem"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Lossa modereringslista"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "Lossade {0} från Hem"
@@ -12030,11 +12315,11 @@ msgstr "Sluta prenumerera på den här etikettsättaren"
msgid "Unsubscribed from list"
msgstr "Avslutade prenumeration på lista"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "Urklippsinnehåll stöds inte"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Videotypen stöds inte: {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "Uppdatera"
msgid "Update <0>{displayName}0> in Lists"
msgstr "Uppdatera <0>{displayName}0> i Listor"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr "Uppdatera appen"
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "Uppdatera e-post"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Uppdatera inbjudningslänk"
@@ -12065,11 +12354,19 @@ msgstr "Uppdatera inbjudningslänk"
msgid "Update to {domain}"
msgstr "Uppdatera till {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr "Uppdatera din app"
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr "Uppdatera din app för att se den."
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "Uppdatera din app till den senaste versionen för att gå med!"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "Uppdatera din e-post"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Det gick inte att uppdatera synlighet för svar"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Ladda upp ett foto istället"
@@ -12098,39 +12395,40 @@ msgstr "Ladda upp ett foto istället"
msgid "Upload a text file to:"
msgstr "Ladda upp en textfil till:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Ladda upp från Kamera"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Ladda upp från Filer"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Ladda upp från Bibliotek"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "Laddar upp gif-bild…"
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Laddar upp bilder…"
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Laddar upp miniatyrbild av länk…"
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Laddar upp video…"
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "användare"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Användare blockerad"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Användarlista av {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "Användarlista av {0}"
@@ -12255,12 +12553,12 @@ msgstr "användare som <0>@{0}0> följer"
msgid "users following <0>@{0}0>"
msgstr "användare som följer <0>@{0}0>"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "Användare jag följer"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Användare jag följer"
@@ -12277,7 +12575,7 @@ msgstr "Verifiering misslyckades. Försök igen."
msgid "Verification settings"
msgstr "Verifieringsinställningar"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Verifieringsinställningar"
@@ -12304,8 +12602,8 @@ msgstr "Verifiera igen"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Verifiera kod"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Verifiera DNS-post"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "Verifiera e-postkod"
@@ -12349,7 +12647,7 @@ msgstr "Verifiera det här kontot?"
msgid "Verify your age"
msgstr "Verifiera din ålder"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Version {0}"
msgid "Video"
msgstr "Videoklipp"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Bearbetning av videoklipp misslyckades"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Videoflöde"
@@ -12419,7 +12717,7 @@ msgstr "Videoklippet hittades inte."
msgid "Video settings"
msgstr "Inställningar för videoklipp"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Videoklipp uppladdat"
@@ -12432,18 +12730,18 @@ msgstr "Videoklipp: {0}"
msgid "Videos"
msgstr "Videoklipp"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
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:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Visa"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr "Visa {0}"
@@ -12455,7 +12753,7 @@ msgstr "Visa {0}s avatar"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Visa {0}s profil"
msgid "View {0}’s profile"
msgstr "Visa {0}s profil"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "Visa {displayName}s profil"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr "Visa {publicationTitle}"
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr "Visa @{0}s profil"
@@ -12503,9 +12801,17 @@ msgstr "Visa detaljer"
msgid "View full thread"
msgstr "Visa hela tråden"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
-msgstr "Visa inkommande gruppchattsförfrågningar"
+msgstr "Visa väntande gruppchattsförfrågningar"
+
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr "Visa väntande förfrågningar"
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr "Visa väntande medlemsförfrågningar för den här gruppchatten"
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
@@ -12522,7 +12828,7 @@ msgstr "Visa mer"
msgid "View more trending videos"
msgstr "Visa fler trendande videoklipp"
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Visa inlägg"
@@ -12539,10 +12845,10 @@ msgstr "Visa profil"
msgid "View profile banner"
msgstr "Visa profilbanderoll"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr "Visa publikation"
@@ -12550,7 +12856,7 @@ msgstr "Visa publikation"
msgid "View the avatar"
msgstr "Visa avataren"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "Visa inbjudningslänken för den här gruppchatten"
@@ -12563,7 +12869,7 @@ msgstr "Visa etiketteringstjänsten från @{0}"
msgid "View this user's verifications"
msgstr "Visa den här användarens verifieringar"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Visa användare som gillar det här flödet"
@@ -12596,8 +12902,8 @@ msgstr "Visa de konton du har ignorerat"
msgid "View your verifications"
msgstr "Visa dina verifieringar"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Visar hela bilden"
@@ -12640,8 +12946,8 @@ msgstr "Varna för innehåll"
msgid "Warn content and filter from feeds"
msgstr "Varna för innehåll och filtrera i flöden"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Titta nu"
@@ -12665,10 +12971,14 @@ msgstr "Vi kunde inte hitta några resultat för den taggen."
msgid "We couldn't find any results for that topic."
msgstr "Vi kunde inte hitta några resultat för det ämnet."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Vi kunde inte läsa in den här konversationen"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr "Vi kunde inte läsa in den här konversationens medlemsförfrågningar"
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "Vi kunde inte läsa in den här konversationens inställningar"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "Vi rekommenderar att du väljer minst två intressen."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Vi har skickat ett e-postmeddelande till <0>{0}0> med en länk. Klicka på den för att slutföra verifieringsprocessen."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Vi kunde inte avgöra om du har behörighet att ladda upp videoklipp. Försök igen."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "Vi kommer att meddela dig när vi hittar dina vänner."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "Vi kommer skicka ett e-postmeddelande till <0>{0}0> med en länk. Klicka på den för att slutföra verifieringsprocessen."
@@ -12779,12 +13089,12 @@ msgstr "Vi har problem med att initiera ålderskontrollen för ditt konto. <0>Ko
msgid "We're having network issues, try again"
msgstr "Vi har nätverksproblem, försök igen"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "Vi har nätverksproblem, försök igen"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Vi inför ett nytt lager av verifiering på Bluesky – en bockmarkering som är lätt att se."
@@ -12814,12 +13124,12 @@ msgstr "Tyvärr kunde inte din sökning slutföras. Försök igen om några minu
msgid "We're sorry, you cannot access this screen at this time."
msgstr "Tyvärr kan du inte komma åt den här vyn just nu."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Beklagar! Inlägget du svarar på har raderats."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Beklagar! Vi kan inte hitta den sida du letade efter."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Vad vill du att ditt startpaket ska heta?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Vad händer?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "När du trycker på bocken ser du vilka organisationer som står bakom verifieringen."
@@ -12878,7 +13188,7 @@ msgstr "När du trycker på bocken ser du vilka organisationer som står bakom v
msgid "Who can interact with this post?"
msgstr "Vem får interagera med det här inlägget?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "Vem får gå med i den här gruppchatten och hur?"
@@ -12887,13 +13197,13 @@ msgstr "Vem får gå med i den här gruppchatten och hur?"
msgid "Who can reply"
msgstr "Vem får svara?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Vem kan verifiera?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Hoppsan!"
@@ -12939,19 +13249,19 @@ msgstr "Varför borde det här startpaketet granskas?"
msgid "Why should this user be reviewed?"
msgstr "Varför borde den här användaren granskas?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
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/components/dms/AfterReportConversationDialog.tsx:47
msgid "Would you like to block this user and/or leave this conversation?"
-msgstr ""
+msgstr "Vill du blockera den här användaren och/eller lämna den här konversationen?"
#: src/view/com/composer/drafts/DraftsButton.tsx:110
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:1320
+#: src/view/com/composer/Composer.tsx:1373
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?"
@@ -12960,12 +13270,12 @@ msgstr "Vill du spara det här som ett utkast så att du kan fortsätta på det
msgid "Write a post"
msgstr "Skriv ett inlägg"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Skriv inlägg"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Skriv ditt svar"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Fel DID returnerades från servern. Mottaget: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "Fel typ av konversation"
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "Du använder Bluesky från en region där vi enligt lag måste verifiera din ålder innan du får tillgång till appen."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr "Du blockerar {0}"
@@ -13068,7 +13379,7 @@ msgstr "Du sänder live"
msgid "You are no longer live"
msgstr "Du sänder inte längre live"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Du har inte behörighet att ladda upp videoklipp."
@@ -13117,12 +13428,12 @@ msgstr "Du kan när som helst ändra dig och radera dina uppgifter"
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Du kan välja om chattnotiser har ljud i chattinställningarna i appen"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Du kan fortsätta pågående konversationer oavsett vilken inställning du väljer."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Du kan nu välja att få notiser när specifika personer publicerar inlägg. Om det är någon du vill få snabba uppdateringar från – gå till personens profil och leta efter den nya klockikonen bredvid följknappen."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr "Du kan lägga till max {MAX_GALLERY_IMAGES, plural, other {# bilder}} per inlägg"
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "Du kan bara spara utkast med upp till 1000 tecken."
@@ -13139,11 +13455,11 @@ msgstr "Du kan bara spara utkast med upp till 1000 tecken."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "Du kan bara spara utkast med upp till 1000 tecken. Vill du slänga det här inlägget innan du går till dina utkast?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
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:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Du kan endast välja ett videoklipp åt gången."
@@ -13155,10 +13471,10 @@ msgstr "Du kan återaktivera ditt konto för att fortsätta logga in. Din profil
msgid "You can read chat history but can’t send new messages."
msgstr "Du kan läsa chatthistoriken men inte skicka nya meddelanden."
-#. 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: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."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr "Du kan välja upp till {MAX_GALLERY_IMAGES, plural, other {# bilder}} totalt."
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,9 +13482,9 @@ msgstr "Du kan välja upp till {MAX_IMAGES, plural, other {# bilder}} totalt."
msgid "You can update this later from your settings."
msgstr "Du kan ändra det här senare i dina inställningar."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
-msgstr ""
+msgstr "Du kan inte skapa en gruppchatt ännu."
#: src/lib/hooks/useCleanError.ts:54
#: src/lib/strings/errors.ts:28
@@ -13197,6 +13513,10 @@ msgstr "Du har inga sparade flöden."
msgid "You got here first"
msgstr "Du kom hit först"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr "Du har tidigare tagits bort från den här gruppen och kan inte gå med i den genom länken."
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
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?"
@@ -13336,7 +13656,7 @@ msgstr "Du måste följa minst sju andra personer för att generera ett startpak
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "Du måste tillåta åtkomst till ditt mediebibliotek."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Du vill nog starta om appen nu."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "Du reagerade med {0}"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "Du ändrade ditt födelsedatum nyligen"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Du kommer att loggas ut från alla dina konton."
@@ -13390,7 +13710,7 @@ msgstr "Du kommer att få notiser om den här tråden i fortsättningen"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Du kommer att få ett e-postmeddelande med en ”återställningskod”. Ange koden här och ange sedan ditt nya lösenord."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "Du kommer inte att kunna gå med igen utan en inbjudan."
@@ -13463,7 +13783,7 @@ msgstr "Du har nått slutet av det aktiva innehållet."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Du har nått slutet av ditt flöde! Hitta några fler konton att följa."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "Du har nått det maximala antalet utkast"
@@ -13475,11 +13795,11 @@ msgstr "Du har nått maxgränsen för antalet tillåtna begäranden. Försök ig
msgid "You've reached the start of the active content."
msgstr "Du har nått början av det aktiva innehållet."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Du har nått din dagliga gräns för videouppladdningar (för många byte)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr "Ditt konto har raderats. Ha det! ✌️"
msgid "Your account has been suspended"
msgstr "Ditt konto har stängts av"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Ditt konto är ännu inte tillräckligt gammalt för att ladda upp videoklipp. Försök igen senare."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr "Ditt konto är för nytt"
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr "Ditt konto måste vara minst 7 dagar gammalt för att skapa en ny gruppchatt."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Ditt kontos dataarkiv innehåller alla publika dataposter och kan laddas ner som en car-fil. Filen innehåller inte inbäddade medier såsom bilder, eller din privata data som måste hämtas separat."
@@ -13519,7 +13847,7 @@ msgstr "Din omprövningsbegäran har skickats. Du kommer att meddelas via e-post
msgid "Your birth date"
msgstr "Ditt födelsedatum"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Dina chattar har inaktiverats"
@@ -13561,7 +13889,7 @@ msgstr "Din e-post"
msgid "Your email appears to be invalid."
msgstr "Din e-postadress verkar vara ogiltig."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "Din e-post har inte verifierats än. Se till att verifiera din e-post för att kunna använda alla funktioner på Bluesky."
@@ -13582,7 +13910,7 @@ msgstr "Ditt följflöde är tomt! Följ fler användare för att se vad som hä
msgid "Your full handle will be <0>@{0}0>"
msgstr "Ditt fullständiga användarnamn blir <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "Din plats har uppdaterats."
msgid "Your muted words"
msgstr "Dina ignorerade ord"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "Ditt namn, din avatar och namnet på gruppchatten kommer att vara synliga för alla."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr "Ditt namn, din avatar, gruppchattens namn och antalet medlemmar kommer vara synliga för alla."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "Ditt inlägg har skickats"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "Dina inlägg har skickats"
@@ -13635,7 +13963,7 @@ msgstr "Dina inlägg har skickats"
msgid "Your preferred language"
msgstr "Ditt föredragna språk"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "Din profilbild"
@@ -13648,12 +13976,12 @@ msgstr "Din profilbild i mitten, omgiven av andra användares profilbilder i rin
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 samt 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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Ditt svar har skickats"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Din anmälan kommer att skickas till <0>{0}0>."
@@ -13661,7 +13989,7 @@ msgstr "Din anmälan kommer att skickas till <0>{0}0>."
msgid "Your selected interests help us serve you content you care about."
msgstr "Dina valda intressen hjälper oss att visa dig innehåll som du bryr dig om."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "Din tråd innehåller tomma inlägg som kommer att hoppas över. De återstående inläggen publiceras som en tråd."
diff --git a/src/locale/locales/th/messages.po b/src/locale/locales/th/messages.po
index 98eddae946..f36e58a7d0 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Thai\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# นาที} other {# นาที}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# เดือน} other {# เดือน}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr ""
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}น."
msgid "{0}s"
msgstr "{0}วินาที"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr "{following} ติดตามอยู่"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "{handle} ไม่สามารถส่งข้อความได้"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -860,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "การเข้าถึง"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "การตั้งค่าการเข้าถึง"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "เลิกปิดเสียงบัญชีแล้ว"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "เพิ่ม"
@@ -999,8 +1079,8 @@ msgstr "เพิ่มบัญชี"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "เพิ่มข้อความแสดงแทน (ไม่บ
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr ""
msgid "Add App Password"
msgstr "เพิ่มรหัสผ่านแอป"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr ""
@@ -1080,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "เพิ่มคำและแท็กที่ไม่ออกเสียง"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr ""
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "อนุญาตให้คนเข้าถึงข้อควา
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "เข้าสู่ระบบของ @{0} เรียบร้อยแล้ว"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr ""
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr ""
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "ข้อความแสดงแทนอธิบายรูปภาพสำหรับผู้ใช้ที่พิการทางสายตาและผู้มีสายตาเลือนลาง และช่วยให้บริบทแก่ทุกคน"
@@ -1387,7 +1467,7 @@ msgstr "เกิดข้อผิดพลาด"
msgid "An error occurred"
msgstr "เกิดข้อผิดพลาด"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "เกิดข้อผิดพลาดขณะบีบอัดวิดีโอ"
@@ -1432,11 +1512,11 @@ msgstr "เกิดข้อผิดพลาดขณะบันทึก QR
msgid "An error occurred while trying to follow all"
msgstr "เกิดข้อผิดพลาดขณะพยายามติดตามทั้งหมด"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "ปัญหาที่ไม่ได้รวมอยู่ในตัวเลือกเหล่านี้"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "เกิดปัญหาขณะพยายามเปิดกา
msgid "An issue occurred, please try again."
msgstr "เกิดปัญหา กรุณาลองอีกครั้ง"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr ""
msgid "App passwords"
msgstr "รหัสผ่านแอป"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "รหัสผ่านแอป"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "ส่งคำอุทธรณ์แล้ว"
@@ -1632,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "อุทธรณ์การตัดสินใจนี้"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ msgstr "คุณแน่ใจหรือว่าต้องการลบ
msgid "Are you sure you want to discard your changes?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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 "คุณแน่ใจหรือว่าต้องการออกจากการสนทนานี้? ข้อความของคุณจะถูกลบสำหรับคุณ แต่ไม่ใช่สำหรับผู้เข้าร่วมคนอื่น"
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr "คุณแน่ใจหรือว่าต้องการลบสิ่งนี้ออกจากฟีดของคุณ?"
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr ""
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr ""
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr "กลับ"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1840,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1877,7 +1963,7 @@ msgstr "วันเกิด"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "บล็อกบัญชี"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "บล็อกบัญชี?"
msgid "Block accounts"
msgstr "บล็อกบัญชี"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "บล็อกบัญชีเหล่านี้?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr ""
@@ -1948,7 +2034,7 @@ msgctxt "button"
msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "ถูกบล็อก"
@@ -1964,13 +2050,13 @@ msgstr "ถูกบล็อก"
msgid "Blocked accounts"
msgstr "บัญชีที่ถูกบล็อก"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "บัญชีที่ถูกบล็อก"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "บัญชีที่ถูกบล็อกไม่สามารถตอบในกระทู้ของคุณ, กล่าวถึงคุณ, หรือมีปฏิสัมพันธ์กับคุณได้"
@@ -2029,7 +2115,7 @@ msgstr "Bluesky สนุกยิ่งขึ้นเมื่อมีเพ
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky จะเลือกชุดบัญชีที่แนะ
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 "Bluesky จะไม่แสดงโปรไฟล์และโพสต์ของคุณให้กับผู้ใช้ที่ออกจากระบบ แอปอื่นอาจไม่ให้เกียรติกับคำขอนี้ สิ่งนี้ไม่ได้ทำให้บัญชีของคุณเป็นส่วนตัว"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2137,23 +2223,30 @@ msgstr "ธุรกิจ"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "โดย {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr ""
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr ""
@@ -2192,8 +2285,8 @@ msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr ""
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "ยกเลิก"
@@ -2248,9 +2341,9 @@ msgstr "ยกเลิกการเปิดใช้งานใหม่แ
msgid "Cancel search"
msgstr "ยกเลิกการค้นหา"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "ไม่สามารถโต้ตอบกับผู้ใช้ที่ถูกบล็อก"
@@ -2264,7 +2357,7 @@ msgstr "คำบรรยาย (.vtt)"
msgid "Captions & alt text"
msgstr "คำบรรยาย & ข้อความสำรอง"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr "เปลี่ยนแฮนด์เดิล"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "แชท"
@@ -2361,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "ปิดเสียงแชทแล้ว"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "ตั้งค่าแชท"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "ตั้งค่าแชท"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "เปิดเสียงแชทแล้ว"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "เลือกสีนี้เป็นอวาตาร์ของคุณ"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr "คลิกที่นี่"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2567,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "คลิกเพื่อพยายามส่งข้อความที่ล้มเหลวอีกครั้ง"
@@ -2594,28 +2694,30 @@ msgstr "คลิกเพื่อพยายามส่งข้อควา
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "คลิกเพื่อพยายามส่งข้อควา
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "ปิดกล่องโต้ตอบที่เปิดอยู
msgid "Close alert"
msgstr "ปิดการแจ้งเตือน"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "ปิดลิ้นชักด้านล่าง"
@@ -2657,8 +2763,9 @@ msgstr "ปิดลิ้นชักด้านล่าง"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "ปิดกล่องโต้ตอบ"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "ปิดภาพ"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "ปิดกล่องโต้ตอบนี้"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "ปิดการแจ้งเตือนการอัปเดตรหัสผ่าน"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "การ์ตูน"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "แนวทางชุมชน"
@@ -2740,12 +2855,12 @@ msgstr "ทำให้สำเร็จตามความท้าทาย
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr ""
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2753,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr "สร้างการตอบกลับ"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr ""
@@ -2780,7 +2895,7 @@ msgstr "ตั้งค่าใน <0>การตั้งค่าการ
msgid "Confirm"
msgstr "ยืนยัน"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr ""
msgid "Content and media"
msgstr ""
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr ""
@@ -2889,7 +3004,7 @@ msgstr "แบ็คดรอปเมนูบริบท คลิกเพ
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "ดำเนินการต่อเธรด..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "ดำเนินการต่อไปยังขั้นตอนถัดไป"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "การสนทนาถูกลบ"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "การสนทนาถูกลบ"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "คัดลอกเวอร์ชันบิลด์ไปยังคลิปบอร์ดแล้ว"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr ""
msgid "Copy host"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "คัดลอกข้อความ"
@@ -3052,7 +3175,7 @@ msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "นโยบายลิขสิทธิ์"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "ไม่สามารถออกจากการสนทนาได้"
@@ -3094,6 +3217,10 @@ msgstr "ไม่สามารถออกจากการสนทนาไ
msgid "Could not load feed"
msgstr "ไม่สามารถโหลดฟีดได้"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "สร้าง"
@@ -3159,7 +3286,7 @@ msgstr "สร้าง QR โค้ดสำหรับชุดเริ่
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "สร้างชุดเริ่มต้น"
@@ -3174,13 +3301,14 @@ msgstr "สร้างชุดเริ่มต้นสำหรับฉั
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "สร้างบัญชี"
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "สร้างอวตารแทน"
@@ -3206,7 +3334,7 @@ msgstr "สร้างอวตารแทน"
msgid "Create another"
msgstr "สร้างอันใหม่"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "สร้างบัญชีใหม่"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "สร้างรายงานสำหรับ {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "สร้างเมื่อ {0}"
@@ -3341,7 +3470,7 @@ msgstr "ค่าเริ่มตัน"
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "ลบบันทึกการประกาศแชท"
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "ลบสำหรับฉัน"
@@ -3399,11 +3528,11 @@ msgstr "ลบสำหรับฉัน"
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "ลบข้อความ"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "ลบข้อความสำหรับฉัน"
@@ -3413,7 +3542,7 @@ msgstr "ลบบัญชีของฉัน"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "ลบโพสต์"
@@ -3434,12 +3563,12 @@ msgstr "ลบลิสต์นี้หรือไม่?"
msgid "Delete this post?"
msgstr "ลบโพสต์นี้หรือไม่?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "ถูกลบ"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr ""
@@ -3507,13 +3636,13 @@ msgstr "กล่องโต้ตอบ: ปรับว่าใครสา
msgid "Dim"
msgstr "สว่าง"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3521,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3534,8 +3663,8 @@ msgstr "ปิดการยืนยันตัวตนสองชั้น
msgid "Disable haptic feedback"
msgstr "ปิดการตอบสนองแบบสั่น"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "ปิดใช้งาน"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "ละทิ้ง"
msgid "Discard changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "ละทิ้งร่างข้อความหรือไม่?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "ค้นพบฟีดใหม่"
msgid "Dismiss"
msgstr "ปิด"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "ปิดข้อผิดพลาด"
@@ -3673,7 +3802,7 @@ msgstr "ไม่มีเนื้อหาที่เปิดเผย"
msgid "Domain verified!"
msgstr "ยืนยันโดเมนแล้ว!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3681,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "เสร็จสิ้น"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3741,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr "ดาวน์โหลด Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "ดาวน์โหลดไฟล์ CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "ดาวน์โหลดไฟล์ CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "เช่น ผู้ใช้ที่ตอบกลับด้ว
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "แก้ไข"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "แก้ไขรูปประจำตัว"
@@ -3847,14 +3978,14 @@ msgstr "แก้ไขรูปประจำตัว"
msgid "Edit Feeds"
msgstr "แก้ไขฟีด"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "แก้ไขรูปภาพ"
@@ -3868,7 +3999,16 @@ msgstr "แก้ไขการตั้งค่าการโต้ตอบ
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "แก้ไขฟีดของฉัน"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "แก้ไขบุคคล"
@@ -3925,7 +4060,7 @@ msgstr "แก้ไขโปรไฟล์"
msgid "Edit starter pack"
msgstr "แก้ไขชุดเริ่มต้น"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "แก้ไขผู้ที่สามารถตอบกลับได้"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "แก้ไขชุดเริ่มต้นของคุณ"
@@ -3971,7 +4106,7 @@ msgstr "ที่อยู่อีเมล"
msgid "Email Resent"
msgstr "ส่งข้อความอีเมลอีกรอบ"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -4006,8 +4141,8 @@ msgstr "ฝังโพสต์เว็บไซต์ของคุณ แ
msgid "Embedded video player"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr ""
@@ -4025,7 +4160,7 @@ msgstr "อนุญาตให้เข้าถึงเนื้อหาผ
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4038,13 +4173,12 @@ msgstr "อนุญาตให้นำไฟล์ด้านนอกเข
msgid "Enable media players for"
msgstr "อนุญาตตัวเล่นสื่อสำหรับ"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr "ป้อนรหัสผ่าน"
msgid "Enter a word or tag"
msgstr "ป้อนคำหรือแท็ก"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4143,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr ""
@@ -4185,23 +4319,23 @@ msgstr "คนที่สามารถตอบกลับได้"
msgid "Everybody can reply to this post."
msgstr "คนที่สามารถตอบกลับได้ในโพสค์นี้"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "ทุกคน"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "ทุกคน"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "ทุกคน"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "ไม่รวมผู้ใช้ที่คุณติดตาม
msgid "Exit fullscreen"
msgstr "ออกจากโหมดเต็มหน้าจอ"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "ขยายข้อความอธิบายภาพ"
@@ -4226,7 +4360,7 @@ msgstr "ขยายข้อความอธิบายภาพ"
msgid "Expand list of users"
msgstr "ขยายรายชื่อผู้ใช้"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "ขยายหรือลดขนาดโพสต์ทั้งหมดที่คุณตอบกลับ"
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -4277,9 +4411,9 @@ msgstr "สื่อที่ชัดเจนหรืออาจทำให
msgid "Explicit sexual images."
msgstr "ภาพเปลือยชัดเจน"
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4289,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "การตั้งค่าสื่อภายนอก"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr ""
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "การลบข้อความล้มเหลว"
@@ -4394,24 +4529,24 @@ msgstr "การลบโพสต์ล้มเหลว โปรดลอ
msgid "Failed to delete starter pack"
msgstr "การลบตัวเริ่มต้นล้มเหลว"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "การโหลดฟีตที่ตั้งค่าล้มเหลว"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "การแนะนำฟีตล้มเหลว"
msgid "Failed to load suggested follows"
msgstr "การแนะนำคนที่คุณควรติดตามล้มเหลว"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "การปักหมุดโพสต์ล้มเหลว"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "การยื่นคำอุทธรณ์ล้มเหลว โปรดลองอีกครั้ง"
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "การเปลี่ยนสถานะด้วยการปิดเธรดล้มเหลว โปรดลองอีกครั้ง"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4614,7 +4751,7 @@ msgstr "การอัปเดตฟีตล้มเหลว"
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "การอัปเดตการตั้งค่าล้มเหลว"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "ฟีด"
@@ -4649,7 +4786,7 @@ msgstr "ฟีด"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "ฟีดโดย {0}"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr ""
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "ฟีด"
@@ -4739,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "กำลังสรุปผล"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "ค้นหาบัญชีเพื่อคิดตาม"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr ""
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "ติดตามโดย <0>{0}0> และ <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "ติดตามโดย <0>{0}0>, <1>{1}1> และ {2, plural, one {# other} other {# others}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "ผู้ติดตามของ @{0} ที่คุณรู้จัก"
@@ -4995,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr "การตั้งค่าฟีดการติดตาม"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "การตั้งค่าฟีดการติดตาม"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "ติดตามคุณ"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "ติดตามคุณ"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "แบบอักษร"
@@ -5069,7 +5207,7 @@ msgstr "ลืมเหรอ?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr "จาก <0/>"
msgid "Generate a starter pack"
msgstr "สร้างชุดเริ่มต้น"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "รับความช่วยเหลือ"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "ทำให้โปรไฟล์ของคุณมีความน่าสนใจขึ้น"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "กลับ"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "กลับ"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "กลับไปยังก่อนหน้า"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "กลับเข้าสู่หน้าหลัก"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "กลับเข้าสู่หน้าหลัก"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "กลับเข้าสู่หน้าหลัก"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "ไปที่การสนทนา {0}"
@@ -5299,12 +5440,12 @@ msgstr "ถัดไป"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "ไปที่หน้าโปรไฟล์"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr ""
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "แฮชแท็ก"
@@ -5458,8 +5615,8 @@ msgstr ""
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "การช่วยเหลือ"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "ทำให้คนทราบว่าคุณไม่ใช่หุ่นยนต์โดยการอัพโหลตรูปภาพหรือการสร้างอวาตาร์"
@@ -5652,18 +5809,18 @@ msgstr "อื้มมมม... ดูเหมือนว่าเราม
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "อื้มมมม... ดูเหมือนว่าเราไม่สามารถโหลดเซอร์วิสการตรวจสอบได้"
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "รอสักครู่! เรากำลังเปิดให้เข้าถึงวิดีโออย่างค่อยเป็นค่อยไป และคุณยังอยู่ในคิว แล้วกลับมาอีกครั้งจ้า"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "หน้าหลัก"
@@ -5721,7 +5878,7 @@ msgstr "ฉันเข้าใจแล้ว"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "หากข้อความแทนภาพยาว จะทำการเปลี่ยนสถานะการขยายข้อความแทนภาพ"
@@ -5757,7 +5914,7 @@ msgstr "หากคุณลบลิสต์นี้ คุณจะไม
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5765,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr "หากคุณลบโพสค์นี้ คุณจะไม่สามารถนำกลับคืนมาได้"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5773,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "หากคุณต้องการเปลี่ยนรหัสผ่าน เราจะส่งรหัสยืนยันเพื่อยืนยันบัญชีของคุณ"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr ""
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "หากคุณพยายามเปลี่ยนแฮนด์เดิ้ลของคุณ ให้ทำการเปลี่ยนก่อนที่คุณจะหยุดใช้งานบัญชีนี้"
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "รูปภาพ"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "รหัสยืนยัน 2FA ไม่ถูกต้อง"
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr ""
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "รหัสยืนยันนี้ไม่ถูกต้อง"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "ตอนนี้มีแค่คุณแล้ว! เพิ่มผู้คนในชุดเริ่มต้นของคุณโดยการค้นหาด้านบนนี้"
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr ""
@@ -6083,6 +6257,11 @@ msgstr ""
msgid "Jobs"
msgstr "งาน"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "งาน"
msgid "Join Bluesky"
msgstr "เข้าร่วม Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "เข้าร่วมการสนทนา"
msgid "Journalism"
msgstr "วารสาร"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "มาร์คในบัญชีของคุณ"
msgid "Labels on your content"
msgstr "มาร์คในเนื้อหาของคุณ"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "ตั้งค่าภาษา"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "ล่าสุด"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับข้อควรระวัง"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับสิ่งที่เป็นสาธารณะบน Bluesky"
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "เรียนรู้เพิ่มเติม"
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "ออก"
@@ -6276,7 +6464,7 @@ msgstr "ออกจากแชท"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "ออกจากการสนทนา"
@@ -6284,13 +6472,13 @@ msgstr "ออกจากการสนทนา"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "ออกจากการสนทนา"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "แสง"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -6346,11 +6534,7 @@ msgstr "ชอบ 10 โพสต์"
msgid "Like 10 posts to train the Discover feed"
msgstr "ชอบ 10 โพสต์"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "ชอบฟีตนี้"
@@ -6358,8 +6542,8 @@ msgstr "ชอบฟีตนี้"
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "ชอบโดย"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "ถูกใจ"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "ชอบในโพสต์นี้"
@@ -6409,11 +6589,11 @@ msgstr "ชอบในโพสต์นี้"
msgid "Linear"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "ลิสต์"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "ลิสต์เปิดเสียง"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "ลิสต์"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "กำลังโหลด..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "บันทึก"
@@ -6662,7 +6842,7 @@ msgstr "ดูเหมือนว่าคุณจะพลาดฟีตท
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
@@ -6698,13 +6877,12 @@ msgstr ""
msgid "Mark as read"
msgstr "ทำเครื่องหมายว่าอ่านแล้ว"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr ""
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "ผู้ใช้ที่ถูกกล่าวถึง"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr ""
@@ -6775,22 +6949,22 @@ msgstr "ส่งข้อความถึง {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "ข้อความถูกลบ"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "ข้อความถูกลบ"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6813,19 +6987,19 @@ msgstr "ข้อความยาวเกินไป"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "ข้อความ"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "การกรอง"
@@ -6894,7 +7064,7 @@ msgstr "การกรองถูกอัพเดต"
msgid "Moderation lists"
msgstr "ลิสต์ที่กรอง"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "ลิสต์ที่กรอง"
@@ -6903,7 +7073,7 @@ msgstr "ลิสต์ที่กรอง"
msgid "moderation settings"
msgstr "การตั้งค่าการกรอง"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "สถานะการกรอง"
@@ -6949,7 +7119,7 @@ msgstr "วีดีโอ"
msgid "Music"
msgstr "เพลง"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "ปิดการมองเห็น"
@@ -6994,7 +7164,7 @@ msgstr "รายชื่อที่ปิดการมองเห็น"
msgid "Mute these accounts?"
msgstr "ต้องการปิดการมองเห็นบัญชีนี้หรือไม่?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "ปิดการมองเห็นเธรต"
msgid "Mute words & tags"
msgstr "ปิดการมองเห็นคำและแท็ก"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "ปิดการมองเห็นบัญชี"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "ปิดการมองเห็นบัญชี"
@@ -7108,8 +7278,8 @@ msgstr "ไปยังหน้าถัดไป"
msgid "Navigates to your profile"
msgstr "สำรวจโปรไฟล์ของคุฯ"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "แชทใหม่"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7174,29 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "โพสต์ใหม่"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "โพสต์ใหม่"
@@ -7262,8 +7428,8 @@ msgstr "ข่าวสาร"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "ไม่ติดตาม {0} อีกต่อไป"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "ยังไม่มีข้อความ"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "ยังไม่มีการแจ้งเตือน!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "ไม่มีผลลัพธ์"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "ไม่มีผลลัพธ์"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "การเปลือยกายที่ไม่เกี่ยวข้องกับเพศ"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "ไม่พบ"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "การตั้งค่าการแจ้งเตือน"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "เสียงการแจ้งเตือน"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "การแจ้งเตือน"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "ตอนนี้"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "ปิด"
@@ -7623,7 +7772,8 @@ msgstr "ตกลง"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "เปิด<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "รีเซ็ตออนบอร์ด"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr ""
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "ภาพหนึ่งหรือมากกว่าขาดข้อความแทน"
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr ""
@@ -7685,6 +7835,26 @@ msgstr ""
msgid "Only {0} can reply."
msgstr "{0} สามารถตอบกลับได้เท่านั้น"
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr ""
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "สามารถลงได้แค่ไฟล์ WebVTT (.vtt) เท่านั้น"
@@ -7712,7 +7892,7 @@ msgstr "อุ้ย~ เกิดข้อผิดพลาดจ้า"
msgid "Oops!"
msgstr "อ๊ะ!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "เปิดการสร้างอวาตาร์"
@@ -7720,12 +7900,17 @@ msgstr "เปิดการสร้างอวาตาร์"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "เปิดการตั้งค่าการสนทนา"
@@ -7739,16 +7924,16 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "เปิดการเลือกอีโมจิ"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "เปิดการตั้งค่าฟีต"
@@ -7760,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr ""
@@ -7790,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr "เปิดเมนูการตั้งค่าโพสต์"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr "เปิดหน้าสตอรี่บุ๊ค"
msgid "Open system log"
msgstr "เปิด system log"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "เปิดรายละเอียดเพิ่มเติมส
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "เปิดกล้องในอุปกรณ์"
@@ -7858,22 +8051,24 @@ msgstr "เปิด composer"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "เปิดขั้นตอนเพื่อสร้างบัญชี Bluesky ใหม่"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr "เปิดเพื่อสร้างบัญชี Bluesky ที่มีอยู่แล้ว"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "เปิดโปรไฟล์นี้"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "ผู้ดูแลระบบของเราได้ตรวจสอบรายงานและตัดสินใจที่จะปิดการเข้าถึงแชทของคุณบน Bluesky"
@@ -8010,16 +8205,17 @@ msgstr "ผู้ดูแลระบบของเราได้ตรวจ
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "ไม่พบหน้านี้"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "ไม่พบหน้านี้"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "พักวีดีโอ"
msgid "People"
msgstr "ผู้คน"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "ผู้คนที่ติดตามโดย @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "ผู้คนที่ติดตาม @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "ภาพที่เหมาะสำหรับเนื้อหาผู้ใหญ่ (18+)"
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr ""
@@ -8152,7 +8348,7 @@ msgstr ""
msgid "Pin to home"
msgstr "ปักหมุดไปที่หน้าแรก"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "ปักหมุดไปที่หน้าแรก"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "ปักหมุดแล้ว"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr ""
@@ -8236,7 +8432,7 @@ msgstr "กรุณาเลือกแฮนเดิลของคุณ"
msgid "Please choose your password."
msgstr "โปรดเลือกรหัสผ่านของคุณ"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "โปรดทำการยืนยัน Captcha ให้เสร็จ"
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "กรุณากรอกอีเมลของคุณ"
msgid "Please enter your invite code."
msgstr "กรุณาใส่โค้ดเชิญ"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "กรุณาอธิบายว่าทำไมการตั้งชื่อไม่ถูกต้องโดย {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "กรุณาอธิบายว่าทำไมคุณคิดว่าแชทของคุณถูกปิดใช้งานแบบไม่ถูกต้อง"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "การเมือง"
msgid "Porn"
msgstr "สื่ออนาจาร"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "โพสต์"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "โพสต์โดย {0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "โพสต์ถูกลบแล้ว"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr ""
@@ -8454,7 +8650,7 @@ msgstr "โพสต์ถูกซ่อนโดยคุณ"
msgid "Post interaction settings"
msgstr "การตั้งค่าการโต้ตอบโพสต์"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8464,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "ถอนหมุดโพสต์แล้ว"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "โพสต์สามารถถูกปิดเสียงตา
msgid "Posts hidden"
msgstr "โพสต์ที่ซ่อนอยู่"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "คลิกเพื่อพยายามเชื่อมต่อ
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "กดเพื่อลองใหม่"
@@ -8536,7 +8728,7 @@ msgstr "กดเพื่อลองใหม่"
msgid "Press to view followers of this account that you also follow"
msgstr "กดเพื่อดูผู้ติดตามในบัญชีนี้ที่คุณติดตามเหมือนกัน"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "ความเป็นส่วนตัว"
msgid "Privacy and security"
msgstr ""
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "นโยบายความเป็นส่วนตัว"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr ""
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "ดำเนินการ..."
@@ -8602,8 +8793,8 @@ msgstr "ดำเนินการ..."
msgid "profile"
msgstr "ข้อมูลส่วนตัว"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "ดาวน์โหลด QR โค้ดเรียบร้อย
msgid "QR code saved to your camera roll!"
msgstr "บันทึก QR โค้ดลงในคลังภาพของคุณแล้ว!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "ยกเลิกการโควท"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "โควท"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "แนบโพสต์ที่โควทอีกครั้ง"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr ""
msgid "Reconnect"
msgstr "เชื่อมต่อใหม่"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "โหลดการสนทนาใหม่"
@@ -8896,17 +9087,17 @@ msgstr "ลบบัญชี"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "ลบไฟล์แนบ"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "ลบอวาตาร์"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "ลบแบนด์เนอร์"
@@ -8914,8 +9105,9 @@ msgstr "ลบแบนด์เนอร์"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "ลบการฝังข้อมูล"
@@ -8933,8 +9125,8 @@ msgstr "ลบฟีตหรือไม่?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "ลบรูปภาพ"
@@ -9009,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "ลบโดยผู้สร้าง"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "ลบโดยคุณ"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "การตอบกลับ"
@@ -9104,14 +9295,14 @@ msgstr "ปิดการตอบกลับแล้ว"
msgid "Replies to this post are disabled."
msgstr "การตอบกลับโพสต์นี้ถูกปิด"
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "การตอบกลับ"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9125,10 +9316,6 @@ msgstr "การตอบกลับถูกซ่อนโดยผู้ส
msgid "Reply Hidden by You"
msgstr "การตอบกลับถูกซ่อนโดยคุณ"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "การตั้งค่าการตอบกลับถูกเลือกโดยผู้เขียนกระทู้"
@@ -9146,9 +9333,9 @@ msgstr "การมองเห็นการตอบกลับได้ร
msgid "Reply was successfully hidden"
msgstr "การตอบกลับถูกซ่อนเรียบร้อยแล้ว"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "รายงาน"
@@ -9164,13 +9351,13 @@ msgstr "รายงานบัญชี"
msgid "Report conversation"
msgstr "รายงานการสนทนา"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "รายงานการสนทนา"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "รายงานฟีด"
@@ -9179,7 +9366,7 @@ msgstr "รายงานฟีด"
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "รายงานข้อความ"
@@ -9199,8 +9386,8 @@ msgstr "รายงานชุดเริ่มต้น"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "รายงานฟีดนี้"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "รายงานลิสต์นี้"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "รีโพสต์"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr ""
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "รีโพสต์โดยคุณ"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "รีโพสต์ของโพสต์นี้"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "ต้องมีข้อความแทนภาพก่อนโพสต์"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9328,7 +9534,11 @@ msgstr "จำเป็นสำหรับผู้ให้บริการ
msgid "Required in your region"
msgstr "จำเป็นในภูมิภาคของคุณ"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9393,15 +9603,16 @@ msgstr "ลองทำกิจกรรมล่าสุดซึ่งเก
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "ลองทำกิจกรรมล่าสุดซึ่งเก
msgid "Retry"
msgstr "ลองใหม่อีกครั้ง"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9426,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr "กลับไปยังหน้าก่อนหน้า"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "กลับไปยังหน้าแรก"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "กลับไปยังหน้าก่อนหน้า"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "บันทึกการเปลี่ยนแปลง"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "บันทึกคิวอาร์โค้ด"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "บันทึกที่ฟีตของฉัน"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "บันทึกฟีต"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "บันทึกไปที่ฟีตของคุณ"
@@ -9551,8 +9764,8 @@ msgstr "บันทึกไปที่ฟีตของคุณ"
msgid "Say hello!"
msgstr "ทักทายสิ!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "เลื่อนไปข้างบนสุด"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "ค้นหา"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9667,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "ค้นหาโปรไฟล์"
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "เลือกสี"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "เลือก GIF"
msgid "Select GIF \"{0}\""
msgstr "เลือก GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "กำลังเลือกภาษา..."
msgid "Select languages"
msgstr "เลือกภาษา"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9904,11 +10117,11 @@ msgstr "เลือกสิ่งที่สนใจจากตัวเล
msgid "Select your preferred language for translations in your feed."
msgstr "เลือกภาษาที่คุณต้องการสำหรับการแปลในฟีดของคุณ"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "ส่งอีเมล"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "ส่งข้อเสนอแนะ"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "ส่งข้อความ"
@@ -9952,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr "ส่งโพสต์ถึง..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9960,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "ส่งในข้อความส่วนตัว"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "ตั้งอีเมลเพื่อการรีเซตรหัสผ่าน"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "การตั้งค่า"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "กิจกรรมทางเพศ หรือการเปล
msgid "Sexually Suggestive"
msgstr "การชักชวนทางเพศ"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr "แชร์รหัส QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10151,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "โปรแกรมทดสอบการตั้งค่าแชร์"
@@ -10167,16 +10382,16 @@ msgstr "แสดงข้อความแทน"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "แสดงอยู่ดี"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "แสดงคำเตือนและกรองจากฟีด"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr "เข้าสู่ระบบหรือสร้างบัญชีของคุณเพื่อเข้าร่วมการสนทนา!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "เข้าสู่ระบบด้วยบัญชีที่ไม่อยู่ในลิสต์"
@@ -10337,6 +10558,10 @@ msgstr "เข้าสู่ระบบด้วยบัญชีที่ไ
msgid "Sign in to Bluesky or create a new account"
msgstr "เข้าสู่ระบบ Bluesky หรือสร้างบัญชีใหม่"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "ออกจากระบบ"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "ออกจากระบบ"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "ออกจากระบบ?"
@@ -10391,7 +10616,7 @@ msgstr "ข้าม"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "เล็ก"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "เกิดข้อผิดพลาดบางอย่าง"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "เกิดข้อผิดพลาดบางอย่าง!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr ""
@@ -10568,7 +10798,7 @@ msgstr "กีฬา"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "เริ่มแชทใหม่"
@@ -10582,17 +10812,17 @@ msgstr ""
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "เริ่มแชทกับ {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "ชุดเริ่มต้น"
@@ -10654,12 +10884,12 @@ msgstr "ล้างพื้นที่เก็บข้อมูลแล้
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "ส่ง"
@@ -10684,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "สมัครสมาชิก"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "สำเร็จ!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "สนับสนุน"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr ""
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10828,7 +11062,7 @@ msgstr "แท็กเท่านั้น"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "กดเพื่อลบ"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "เงื่อนไข"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "ข้อความและแท็ก"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "ช่องใส่ข้อความ"
@@ -11049,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "นโยบายความเป็นส่วนตัวได้ถูกย้ายไป <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "เกิดปัญหาในการติดต่อเซิร์ฟเวอร์"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr ""
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "เกิดปัญหาในการดึงการแจ้งเตือน คลิกที่นี่เพื่อลองอีกครั้ง"
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "เกิดปัญหาในการดึงโพสต์ คลิกที่นี่เพื่อลองอีกครั้ง"
@@ -11161,7 +11420,7 @@ msgstr ""
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "คำร้องนี้จะถูกส่งไปยัง <0>{sourceName}0>"
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "คำร้องนี้จะถูกส่งไปยังบริการการควบคุมของ Bluesky"
@@ -11263,7 +11522,7 @@ msgstr "คำร้องนี้จะถูกส่งไปยังบร
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr ""
msgid "This content is not viewable without a Bluesky account."
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11318,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr ""
msgid "This handle is reserved. Please try a different one."
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr ""
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr ""
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr ""
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr ""
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "การตั้งค่าเธรด"
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr ""
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr ""
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11646,12 +11927,12 @@ msgstr ""
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11763,11 +12044,15 @@ msgstr "ไม่สามารถติดต่อบริการของ
msgid "Unable to delete"
msgstr "ไม่สามารถลบได้"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr "เลิกติดตามบัญชี"
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr ""
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11918,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "เปิดเสียงการสนทนา"
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "เลิกปักหมุด"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "เลิกปักหมุดจากหน้าแรก"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "เลิกปักหมุดจากลิสต์การModerate"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr ""
@@ -12030,11 +12315,11 @@ msgstr "เลิกสมัครรับข้อมูลจากผู้
msgid "Unsubscribed from list"
msgstr "เลิกสมัครรับข้อมูลจากลิสต์แล้ว"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "อัปเดต <0>{displayName}0> ในลิสต์"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "การอัปเดตการมองเห็นการตอบกลับล้มเหลว"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "อัปโหลดรูปภาพแทน"
@@ -12098,39 +12395,40 @@ msgstr "อัปโหลดรูปภาพแทน"
msgid "Upload a text file to:"
msgstr "อัปโหลดไฟล์ข้อความไปที่:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "อัปโหลดจากกล้อง"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "อัปโหลดจากไฟล์"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "อัปโหลดจากไลบรารี"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr ""
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr ""
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "ลิสต์ผู้ใช้โดย {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "ผู้ใช้ที่ติดตามโดย <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "ตรวจสอบระเบียน DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12349,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr "วิดีโอ"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "การประมวลผลวิดีโอไม่สำเร็จ"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12419,7 +12717,7 @@ msgstr "ไม่พบวิดีโอ"
msgid "Video settings"
msgstr "การตั้งค่าวิดีโอ"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr ""
@@ -12432,18 +12730,18 @@ msgstr "วิดีโอ: {0}"
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "ดูอวตาร์ของ {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "ดูโปรไฟล์ของ {0}"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "ดูรายละเอียด"
msgid "View full thread"
msgstr "ดูเธรดเต็ม"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "ดูข้อมูลเกี่ยวกับป้ายกำกับเหล่านี้"
@@ -12522,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "ดูโปรไฟล์"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "ดูอวตาร์"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "ดูบริการติดป้ายกำกับที่จ
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "ดูผู้ใช้ที่ชอบฟีดนี้"
@@ -12596,8 +12902,8 @@ msgstr "ดูบัญชีที่คุณปิดเสียง"
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12640,8 +12946,8 @@ msgstr "เตือนเนื้อหา"
msgid "Warn content and filter from feeds"
msgstr "เตือนเนื้อหาและกรองจากฟีด"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "เราไม่สามารถโหลดการสนทนานี้ได้"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "เราไม่สามารถกำหนดได้ว่าคุณได้รับอนุญาตให้อัปโหลดวิดีโอหรือไม่ กรุณาลองอีกครั้ง."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "เรากำลังประสบปัญหาเครือข่าย โปรดลองอีกครั้ง"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "ขออภัย! โพสต์ที่คุณตอบกลับถูกลบไปแล้ว"
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "เราขอโทษ! เราไม่สามารถค้นหาหน้าที่ยังมีอยู่ที่คุณต้องการได้."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "คุณต้องการตั้งชื่อชุดเริ่มต้นของคุณว่าอะไร?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "มีอะไรใหม่?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12878,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr "ใครสามารถมีปฏิสัมพันธ์กับโพสต์นี้ได้บ้าง?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "ใครสามารถตอบได้"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "อุ๊ย!"
@@ -12939,7 +13249,7 @@ msgstr "ทำไมชุดเริ่มต้นนี้จึงควร
msgid "Why should this user be reviewed?"
msgstr "ทำไมผู้ใช้คนนี้จึงควรได้รับการตรวจสอบ?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "เขียนโพสต์"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "เขียนคำตอบของคุณ"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr ""
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr ""
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "คุณไม่ได้รับอนุญาตให้อัปโหลดวิดีโอ."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "คุณสามารถดำเนินการสนทนาที่กำลังดำเนินอยู่ต่อไปได้ไม่ว่าจะเลือกการตั้งค่าใด"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "คุณสามารถลงชื่อเข้าใช้ด้วยรหัสผ่านใหม่ของคุณได้แล้ว"
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "คุณสามารถเปิดใช้งานบัญชี
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "คุณยังไม่มีฟีดที่บันทึก."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "คุณถึงขีดจำกัดการอัปโหลดวิดีโอชั่วคราวแล้ว กรุณาลองอีกครั้งในภายหลัง"
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "คุณต้องติดตามผู้อื่นอย่า
msgid "You must grant access to your photo library to save a QR code"
msgstr "คุณต้องอนุญาตให้เข้าถึงคลังรูปภาพของคุณเพื่อบันทึกรหัส QR"
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr ""
@@ -13390,7 +13710,7 @@ msgstr "คุณจะเริ่มได้รับการแจ้งเ
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "คุณจะได้รับอีเมลที่มี \"รหัสรีเซ็ต\" ใส่รหัสนั้นที่นี่ จากนั้นใส่รหัสผ่านใหม่ของคุณ"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "คุณมาถึงจุดสิ้นสุดฟีดของคุณแล้ว! ค้นหาบัญชีเพิ่มเติมเพื่อติดตาม"
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "คุณถึงขีดจำกัดการอัพโหลดวิดีโอต่อวันแล้ว (ขนาดไฟล์มากเกินไป)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "คุณถึงขีดจำกัดการอัพโหลดวิดีโอต่อวันแล้ว (วิดีโอมากเกินไป)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "บัญชีของคุณยังมีอายุไม่มากพอที่จะอัพโหลดวิดีโอ กรุณาลองใหม่อีกครั้งในภายหลัง"
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "คลังข้อมูลบัญชีของคุณ ซึ่งประกอบด้วยบันทึกข้อมูลสาธารณะทั้งหมด สามารถดาวน์โหลดเป็นไฟล์ \"CAR\" ไฟล์นี้ไม่รวมสื่อที่ฝังไว้ เช่น รูปภาพ หรือข้อมูลส่วนตัวของคุณ ซึ่งต้องดึงข้อมูลแยกต่างหาก"
@@ -13519,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr "วันเกิดของคุณ"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "การแชทของคุณถูกปิดใช้งาน"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "อีเมลของคุณดูเหมือนจะไม่ถูกต้อง"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13582,7 +13910,7 @@ msgstr "ฟีดผู้ติดตามของคุณว่างเป
msgid "Your full handle will be <0>@{0}0>"
msgstr "ชื่อผู้ใช้เต็มของคุณจะเป็น <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "คำที่คุณปิดเสียง"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13661,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/tr/messages.po b/src/locale/locales/tr/messages.po
index 35fd14a781..dd28bdfa0c 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, other {# dakika}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, other {# ay}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr "{0, plural, other {# katılma talebi}}"
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr "{0, plural, other {# kişi}} tepki verdi – {1}"
@@ -109,15 +114,15 @@ msgstr "{0, plural, other {# saniye}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, other {# okunmamış öğe}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr "{0, plural, other {#dk}}"
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr "{0} takip edilen"
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr "{0} sizi engelliyor"
@@ -264,7 +269,7 @@ msgstr "50'de {0}"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} şu tepkiyi verdi: {1}"
@@ -309,16 +314,38 @@ msgstr "{0}, bir {1} listesi"
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "{0} kullanıcısının avatarı"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr "{0} kullanıcısının avatarı"
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr "{0}/{1}"
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr "{0}/{1} üye"
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}dk"
msgid "{0}s"
msgstr "{0}sn"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr "{count, plural, other {# sohbet güncellemesi}}"
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr "{count, plural, other {# talep}}"
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, other {# okunmamış öğe}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr "{count}+"
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr "{count}+ talep"
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} sizi doğruladı"
msgid "{following} following"
msgstr "{following} takip ediliyor"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr "{handle} eklenemez"
@@ -547,7 +599,7 @@ msgstr "{handle} eklenemez"
msgid "{handle} can't be messaged"
msgstr "{handle} kullanıcısına mesaj gönderilemez"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr "{handle} kişisine mesaj atılamaz"
@@ -559,6 +611,16 @@ msgstr "{hours, plural, other {# saat {minutesString}}}"
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr "{hours, plural, other {# saat}}"
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,9 +643,9 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr "{MAX_HIDDEN_REPLIES, plural, other {En fazla # yanıt gizleyebilirsiniz.}}"
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
-msgstr ""
+msgstr "{memberCount}/{memberLimit}"
#: src/features/liveNow/utils.ts:10
msgid "{minutes, plural, one {# minute} other {# minutes}}"
@@ -607,7 +669,7 @@ msgstr "{name} kullanıcısının favori akışları ve kişileri - bana katıl!
msgid "{name}'s starter pack"
msgstr "{name} kullanıcısının başlangıç paketi"
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, other {# okunmamış öğe}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr "{requestCount, plural, other {# talep}}"
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr "{requestCount}+ talep"
@@ -795,8 +857,11 @@ msgstr "Bir ağ hatası oluştu. Lütfen internet bağlantınızı kontrol edin"
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr "Bir ağ hatası oluştu. Lütfen internet bağlantınızı kontrol edin."
@@ -804,7 +869,7 @@ msgstr "Bir ağ hatası oluştu. Lütfen internet bağlantınızı kontrol edin.
msgid "A new code has been sent"
msgstr "Yeni bir kod yollandı"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Yeni bir doğrulama biçimi"
@@ -827,11 +892,11 @@ msgstr "Takip et butonunun yanında bir zil simgesi bulunan bir profil sayfasın
msgid "A screenshot of 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 "Gönderi düzenleyicisinin bir gönderi yanındaki yeni \"Taslaklar\" butonu ve gökkuşağı havai fişek efekti barındıran ekran görüntüsü. Altında, düzenleyicideki metinde \"Hey, haberleri duydunuz mu? Bluesky'da taslaklar var artık!!!\" yazıyor."
-#: src/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
-msgstr ""
+msgstr "Seçilmiş alıcılardan biri gönderen tarafından takip edilmiyor."
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr "İstismar edici ya da ayrımcı davranış"
msgid "Accept"
msgstr "Kabul et"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Kabul et"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Sohbet isteğini kabul et"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr "Katılma talebini kabul et"
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "İsteği kabul et"
@@ -860,17 +935,26 @@ msgstr "İsteği kabul et"
msgid "Accept this language suggestion"
msgstr "Bu dil önerisini kabul et"
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr "Kabul edilen yazışmalar"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr "Erişim istendi! Grup sahibi talebinizi inceleyecek."
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Erişilebilirlik"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Erişilebilirlik Ayarları"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Hesap sessizden çıkarıldı"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Çıkıntılı onay tikine sahip hesaplar <0><1/>0> başka hesapları doğrulayabilir. Bu güvenilir doğrulayıcılar Bluesky tarafından seçilir."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr "Başkalarının etkinlikleri"
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr "Etkinlik bildirimleri"
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Ekle"
@@ -999,8 +1079,8 @@ msgstr "Hesap ekle"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Alternatif metin ekle (isteğe bağlı)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Başka hesap ekle"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Başka gönderi ekle"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr "Konuya yeni bir gönderi ekle"
@@ -1035,7 +1115,7 @@ msgstr "Uygulama şifresi ekle"
msgid "Add App Password"
msgstr "Uygulama Şifresi Ekle"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr "Hesaba otomasyon işareti ekle"
@@ -1043,7 +1123,7 @@ msgstr "Hesaba otomasyon işareti ekle"
msgid "Add emoji reaction"
msgstr "Emoji tepkisi ekle"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr "Grup sohbeti üyelerini ekle"
@@ -1052,7 +1132,7 @@ msgid "Add image"
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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr "Gönderiye medya ekle"
@@ -1062,8 +1142,8 @@ msgstr "Gönderiye medya ekle"
msgid "Add members"
msgstr "Üye ekle"
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Daha fazla detay ekle (opsiyonel)"
@@ -1080,8 +1160,8 @@ msgstr "Seçilen ayarlarla sessize alınacak kelimeyi ekle"
msgid "Add muted words and tags"
msgstr "Sessize alınacak kelimeler ve etiketler ekle"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr "Üyeler listeye ekleniyor..."
msgid "Additional details (limit 1000 characters)"
msgstr "Ek ayrıntılar (1000 karakterle sınırlı)"
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Ek ayrıntılar (300 karakterle sınırlıdır)"
@@ -1228,12 +1308,12 @@ msgstr "Yaş güvencesi sorgusu yollandı"
msgid "Age assurance only takes a few minutes"
msgstr "Yaş güvencesi sadece birkaç dakika alacaktır"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "ayse@ornek.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Hepsi"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr "Tümü {0}"
@@ -1278,13 +1358,13 @@ msgstr "Doğrudan mesajlarınıza erişime izin verin"
msgid "Allow anyone to reply"
msgstr "Herkesin yanıt vermesine izin ver"
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr "Sadece şunlardan doğrudan mesajlara izin ver"
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr "Sadece şunlardan grup sohbeti davetlerine izin ver"
@@ -1338,12 +1418,12 @@ msgstr "Zaten bir hesabınız mı var?"
msgid "Already signed in as @{0}"
msgstr "Zaten @{0} olarak oturum açıldı"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Alternatif Metin"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Alternatif metin, görme engelli ve düşük görme yeteneğine sahip kullanıcılar için görselleri tanımlar ve herkes için bağlam sağlamaya yardımcı olur."
@@ -1387,7 +1467,7 @@ msgstr "Bir hata oluştu"
msgid "An error occurred"
msgstr "Bir hata oluştu"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Video sıkıştırılırken bir hata oluştu."
@@ -1432,11 +1512,11 @@ msgstr "QR kod kaydedilirken bir hata oluştu!"
msgid "An error occurred while trying to follow all"
msgstr "Tümü takip edilmeye çalışılırken bir hata oluştu"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr "Video yüklerken bir hata oluştu. {message}"
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr "Video yüklerken bir hata oluştu. Lütfen internet bağlantınızı kontrol edin ve tekrar deneyin."
@@ -1461,21 +1541,21 @@ msgstr "Birkaç Bluesky gönderisinin yeniden gönderi, beğeni ve yorum yapma s
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Bluesky'ın güvenilir doğrulayıcıları seçmesini ve güvenilir doğrulayıcıların da bireysel hesapları doğrulamasını gösteren bir çizim."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
-msgstr "Davetiye bağlantıları insanların grup sohbetine doğrudan eklenmeden katılabilmelerini sağlar. Kimin o bağlantıyı kullanabileceğini ya da onayınıza gerek olup olmadığını siz kontrol edersiniz. Bağlantıyı istediğiniz zaman devre dışı bırakabilirsiniz."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
+msgstr "Davetiye bağlantısı insanların bu gruba doğrudan eklenmeden katılabilmesini sağlar. Kimin sohbete katılacağını siz kontrol edersiniz. Bağlantıyı istediğiniz zaman devre dışı bırakabilirsiniz."
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Bu seçeneklerde yer almayan bir sorun"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
-msgstr ""
+msgstr "Grup sohbetini oluştururken bir sorun çıktı, lütfen tekrar deneyin."
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
-msgstr ""
+msgstr "Sohbeti başlatırken bir sorun çıktı, lütfen tekrar deneyin."
#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50
msgid "An issue occurred while trying to open the chat"
@@ -1490,7 +1570,7 @@ msgstr "Sohbeti açmaya çalışırken bir sorun oluştu"
msgid "An issue occurred, please try again."
msgstr "Bir sorun oluştu, lütfen tekrar deneyin."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Bir kurgu iPhone açık Bluesky uygulamasında doğrulanmış bir kullanıcıyı adının yanındaki doğrulanma tikiyle birlikte gösteriyor."
@@ -1539,13 +1619,17 @@ msgstr "Herkes"
msgid "Anyone can interact"
msgstr "Herkes etkileşime geçebilir"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr "Herkes katılabilir"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr "Herkes anında katılabilir"
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr "Herkes katılmayı talep edebilir"
@@ -1555,11 +1639,11 @@ msgstr "Herkes katılmayı talep edebilir"
msgid "Anyone who follows me"
msgstr "Beni takip eden herkes"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr "Ona sahip olan kimse artık katılamayacak ya da katılmayı talep edemeyecek. İstediğiniz zaman yeni bir tane oluşturabilirsiniz."
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Uygulama şifresi isimleri en az 4 karakter uzunluğunda olmalıdır"
msgid "App passwords"
msgstr "Uygulama şifreleri"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Uygulama Şifreleri"
@@ -1618,7 +1702,7 @@ msgstr "Canlı yayın dondurulmasına itiraz et"
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "İtiraz gönderildi"
@@ -1632,14 +1716,14 @@ msgstr "Askıya alınmaya itiraz et"
msgid "Appeal Suspension"
msgstr "Askıya Alınmaya İtiraz Et"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Bu karara itiraz et"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr "Tam olarak emin misiniz?"
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "\"{0}\" uygulama şifresini silmek istediğinizden emin misiniz?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr "Bu mesajı silmek istediğinize emin misiniz? Mesajınız sizin için silinecektir, ancak diğer katılımcılar için silinmeyecektir."
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr "{groupName} grubundan çıkmak istediğinizden emin misiniz?"
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
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: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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Bu taslağı silmek istediğinizden emin misiniz?"
@@ -1752,7 +1836,7 @@ msgstr "Otomasyonlu hesap"
msgid "Automation label"
msgstr "Otomasyon işareti"
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr "Otomasyon İşareti"
@@ -1767,12 +1851,12 @@ msgstr "Videoları ve GIFleri otomatik oynat"
msgid "Available"
msgstr "Kullanılabilir"
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr "Kullanılabilir"
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr "Kullanılabilir"
msgid "Back"
msgstr "Geri"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Sohbetlere Geri Dön"
@@ -1840,12 +1926,12 @@ msgstr "Bu sohbet isteğini kabul edebilmeniz için öncelikle e-postanızı do
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr "{name} kullanıcısının gönderilerinden bildirim alabilmeniz için öncelikle e-posta adresinizi doğrulamanız gerekiyor."
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr "Başka bir kullanıcıya mesaj atabilmeniz için öncelikle e-postanızı doğrulamanız gerekmektedir."
@@ -1877,7 +1963,7 @@ msgstr "Doğum günü"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr "{displayName} kullanıcısını engelle"
msgid "Block account"
msgstr "Hesabı engelle"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr "Hesap engellensin mi?"
@@ -1912,15 +1998,15 @@ msgstr "Hesabı Engelle?"
msgid "Block accounts"
msgstr "Hesapları engelle"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
-msgstr ""
+msgstr "Engelle ve sil"
#. After-report action for a conversation
#: src/components/dms/AfterReportConversationDialog.tsx:167
msgctxt "button"
msgid "Block and leave"
-msgstr ""
+msgstr "Engelle ve ayrıl"
#: src/screens/ProfileList/components/SubscribeMenu.tsx:119
msgid "Block list"
@@ -1936,9 +2022,9 @@ msgstr "Bu hesapları engelle?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Kullanıcıyı engelle"
@@ -1946,17 +2032,17 @@ msgstr "Kullanıcıyı engelle"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Kullanıcıyı engelle"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr "Kullanıcıyı engelle ve/veya bu yazışmayı sil"
#: src/components/dms/AfterReportConversationDialog.tsx:217
msgid "Block user and/or leave this conversation"
-msgstr ""
+msgstr "Kullanıcıyı engelle ve/veya bu yazışmadan ayrıl"
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Engellendi"
@@ -1964,13 +2050,13 @@ msgstr "Engellendi"
msgid "Blocked accounts"
msgstr "Engellenen hesaplar"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Engellenen Hesaplar"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Engellenen hesaplar, konularınıza yanıt veremez, sizi bahsedemez veya başka şekilde sizinle etkileşime giremez."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky arkadaşlarla daha güzel!"
msgid "Bluesky is more fun with friends"
msgstr "Bluesky arkadaşlarla daha eğlenceli"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr "Bluesky arkadaşlarla daha eğlenceli! Bağlantılarınızı yükleyerek burada kimlerin olduğunu görün."
@@ -2053,7 +2139,7 @@ msgstr "Bluesky, ağınızdaki kişilerden bir dizi önerilen hesap seçecektir.
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 "Bluesky, profilinizi ve gönderilerinizi oturum açmamış kullanıcılara göstermeyecektir. Diğer uygulamalar bu isteği yerine getirmeyebilir. Bu, hesabınızı özel yapmaz."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky, kayda değer ve gerçek hesapları inisiyatif alarak doğrulayacaktır."
@@ -2137,23 +2223,30 @@ msgstr "İş"
msgid "Button to go back to the home timeline"
msgstr "Ana akışa geri dönüş butonu"
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "{0} tarafından"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "<0>{0}0> tarafından geliştiriliyor"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr "<0>@{0}0>"
@@ -2181,7 +2274,7 @@ msgstr "Bir hesap oluşturarak <0>Hizmet Şartları0>'nı kabul etmiş sayıl
msgid "By you"
msgstr "Size ait"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Kamera"
@@ -2192,8 +2285,8 @@ msgstr "Kamera"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Kamera"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Kamera"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "İptal"
@@ -2248,9 +2341,9 @@ msgstr "Yeniden etkinleştirmeyi iptal et ve çıkış yap"
msgid "Cancel search"
msgstr "Aramayı iptal et"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Engellenen kullanıcıya etkileşime geçilemez"
@@ -2264,7 +2357,7 @@ msgstr "Altyazılar (.vtt)"
msgid "Captions & alt text"
msgstr "Altyazılar ve alternatif metin"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr "vitrin"
@@ -2297,7 +2390,7 @@ msgstr "Uygulama dilini değiştir"
msgid "Change Handle"
msgstr "Kullanıcı Adını Değiştir"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Moderasyon hizmetini değiştir"
@@ -2310,11 +2403,11 @@ msgstr "Şifre değiştir"
msgid "Change password dialog"
msgstr "Şifre değiştirme diyaloğu"
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr "Rapor kategorisini değiştir"
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Rapor gerekçesini değiştir"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr "Başlangıç paketine yapılan değişiklikler listeyi oluşturduktan sonra ona yansıtılmayacaktır. Liste bağımsız bir kopya olacaktır."
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Mesajlar"
@@ -2361,6 +2454,13 @@ msgstr "Sohbet silindi"
msgid "Chat ended"
msgstr "Sohbet sona erdi"
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr "Sohbet davetiye bağlantısı artık mevcut değil"
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr "Sohbet kilitlendi"
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Sohbet sessize alındı"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
-msgstr ""
+msgstr "Sohbet alıcısı gönderici tarafından takip edilmiyor."
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Sohbet istekleri gelen kutusu"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Sohbet istekleri"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Mesajlaşma ayarları"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Mesajlaşma Ayarları"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Sohbet sessizden çıkarıldı"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Sohbetler"
@@ -2479,7 +2579,7 @@ msgstr "Gönderi dillerini seçin"
msgid "Choose this color as your avatar"
msgstr "Bu rengi avatar olarak seç"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr "Bu grup sohbetine kimin nasıl katılabileceğini seçin."
@@ -2533,7 +2633,7 @@ msgstr "Bilgi için tıklayın"
msgid "click here"
msgstr "buraya tıklayın"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr "Birilerini bu grup sohbetine eklemek için buraya tıklayın"
@@ -2541,7 +2641,7 @@ msgstr "Birilerini bu grup sohbetine eklemek için buraya tıklayın"
msgid "Click here to contact our support team"
msgstr "Destek ekibimize ulaşmak için buraya tıklayın"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr "Bu grup sohbeti için bir davetiye bağlantısı oluşturmak ya da düzenlemek için buraya tıklayın"
@@ -2558,7 +2658,7 @@ msgstr "Hesabınızdan çıkmak için buraya tıklayın"
msgid "Click here to resend the email"
msgstr "E-postayı yeniden göndermek için buraya tıklayın"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr "Doğrulama işlemini yeniden başlatmak için buraya tıklayın."
@@ -2567,11 +2667,11 @@ msgstr "Doğrulama işlemini yeniden başlatmak için buraya tıklayın."
msgid "Click here to update your birthdate"
msgstr "Doğum tarihinizi güncellemek için buraya tıklayın"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr "E-postanızı güncellemek için buraya tıklayın"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr "Bu grup sohbetinin davetiye bağlantısını görüntülemek için buraya tıklayın"
@@ -2580,7 +2680,7 @@ msgstr "Bu grup sohbetinin davetiye bağlantısını görüntülemek için buray
msgid "Click to open tag menu for {0}"
msgstr "{0} etiket menüsünü açmak için tıklayın"
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "İletilemeyen mesajı tekrar denemek için tıklayın"
@@ -2594,28 +2694,30 @@ msgstr "İletilemeyen mesajı tekrar denemek için tıklayın"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "İletilemeyen mesajı tekrar denemek için tıklayın"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Etkin iletişim kutusunu kapat"
msgid "Close alert"
msgstr "Uyarıyı kapat"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Alt çekmeceyi kapat"
@@ -2657,8 +2763,9 @@ msgstr "Alt çekmeceyi kapat"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Diyalogu kapat"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Resmi kapat"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr "Görsel göstericiyi kapat"
@@ -2683,6 +2790,14 @@ msgstr "Görsel göstericiyi kapat"
msgid "Close menu"
msgstr "Menüyü kapat"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Bu diyalogu kapat"
@@ -2695,7 +2810,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:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Gönderi düzenleyiciyi kapatır ve gönderi taslağını siler"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Çizgi romanlar"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Topluluk Kuralları"
@@ -2740,12 +2855,12 @@ msgstr "Meydan okumayı tamamlayın"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Yeni gönderi oluştur"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr "{0, plural, other {# karakter}} uzunluğuna kadar gönderiler oluşturun"
@@ -2753,11 +2868,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:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr "GIF sıkıştırılıyor..."
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Video sıkıştırılıyor..."
@@ -2780,7 +2895,7 @@ msgstr "<0>Moderasyon ayarları0>nda düzenleniyor."
msgid "Confirm"
msgstr "Onayla"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "İçerik ve Medya"
msgid "Content and media"
msgstr "İçerik ve medya"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "İçerik ve Medya"
@@ -2889,7 +3004,7 @@ msgstr "Bağlam menüsü arkaplanı, menüyü kapatmak için tıklayın."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr "Konuya devam et"
msgid "Continue thread..."
msgstr "Konuya devam et..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr "Grup adına devam et"
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Sonraki adıma devam et"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr "Yazışma"
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Yazışma silindi"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Yazışma silindi"
@@ -2939,13 +3054,20 @@ msgstr "Yazışma silindi"
#: src/components/dms/AfterReportConversationDialog.tsx:179
msgctxt "toast"
msgid "Conversation left"
-msgstr ""
+msgstr "Yazışma terk edildi"
+
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr "Yazışma bulunamadı."
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Sürüm numarası panoya kopyalandı"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "DID'i kopyala"
msgid "Copy host"
msgstr "Sunucu adını kopyala"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr "Profil bağlantısını kopyala"
msgid "Copy link to starter pack"
msgstr "Başlangıç paketi bağlantısını kopyala"
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Mesajı kopyala"
@@ -3052,7 +3175,7 @@ msgstr "TXT kayıt değerini kopyala"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Telif Hakkı Politikası"
@@ -3065,7 +3188,7 @@ msgstr "Özelleştirilmiş akışa bağlanılamadı"
msgid "Could not connect to feed service"
msgstr "Akış hizmetine bağlanılamadı"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr "Gönderi indirilemedi"
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr "Tüm tutan bağlantılar takip edilemedi. {0}"
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Sohbetten ayrılınamadı"
@@ -3094,6 +3217,10 @@ msgstr "Sohbetten ayrılınamadı"
msgid "Could not load feed"
msgstr "Akış yüklenemedi"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr "Ülke kodu"
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Oluştur"
@@ -3159,7 +3286,7 @@ msgstr "Başlangıç paketi için QR kod oluşturun"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Bir başlangıç paketi oluştur"
@@ -3174,13 +3301,14 @@ msgstr "Benim için bir başlangıç paketi oluştur"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Bir hesap oluştur"
msgid "Create an account without using this starter pack"
msgstr "Bu başlangıç paketini kullanmadan bir hesap oluşturun"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Bunun yerine bir avatar oluştur"
@@ -3206,7 +3334,7 @@ msgstr "Bunun yerine bir avatar oluştur"
msgid "Create another"
msgstr "Bir tane daha oluştur"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr "Grup sohbeti oluştur"
@@ -3228,19 +3356,20 @@ msgstr "Başlangıç paketinden liste oluştur"
msgid "Create moderation list"
msgstr "Moderasyon listesi oluştur"
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Yeni hesap oluştur"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr "Bu grup sohbeti için bir davetiye bağlantısını oluşturun ya da değiştirin"
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "{0} için rapor oluştur"
@@ -3256,8 +3385,8 @@ msgstr "Kullanıcı listesi oluştur"
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "{0} oluşturuldu"
@@ -3341,7 +3470,7 @@ msgstr "Varsayılan"
msgid "Default icons"
msgstr "Varsayılan simgeler"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Sohbet beyan kaydını sil"
msgid "Delete contacts"
msgstr "Bağlantıları sil"
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Yazışmayı sil"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Benim için sil"
@@ -3399,11 +3528,11 @@ msgstr "Benim için sil"
msgid "Delete list"
msgstr "Listeyi sil"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Mesajı sil"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Mesajı benim için sil"
@@ -3413,7 +3542,7 @@ msgstr "Hesabımı sil"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Gönderiyi sil"
@@ -3434,12 +3563,12 @@ msgstr "Liste silinsin mi?"
msgid "Delete this post?"
msgstr "Bu gönderiyi sil?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Silindi"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Silinen Hesap"
@@ -3507,13 +3636,13 @@ msgstr "Diyalog: kimin bu gönderiyle etkileşebileceğini ayarlayın"
msgid "Dim"
msgstr "Karart"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr "Devre dışı bırak"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr "İki adımlı doğrulamayı devre dışı bırak"
@@ -3521,7 +3650,7 @@ msgstr "İki adımlı doğrulamayı devre dışı bırak"
msgid "Disable captions"
msgstr "Altyazıları kapat"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr "E-posta iki adımlı doğrulamasını devre dışı bırak"
@@ -3534,8 +3663,8 @@ msgstr "E-posta ile iki adımlı doğrulamayı devre dışı bırak"
msgid "Disable haptic feedback"
msgstr "Dokunsal geribildirimi devre dışı bırak"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr "Bağlantıyı devre dışı bırak"
@@ -3547,7 +3676,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/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr "Bu davetiye bağlantısı devre dışı bırakılsın mı?"
@@ -3560,9 +3689,9 @@ msgstr "Devre dışı"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Sil"
msgid "Discard changes?"
msgstr "Değişiklikler silinsin mi?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Taslak silinsin mi?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Gönderi silinsin mi?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr "Germ DM bağlantısını kes"
@@ -3613,11 +3742,11 @@ msgstr "Yeni Akışlar Keşfet"
msgid "Dismiss"
msgstr "Yok say"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr "Bildirimi gizle"
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Hatayı yok say"
@@ -3673,7 +3802,7 @@ msgstr "Çıplaklık içermiyor."
msgid "Domain verified!"
msgstr "Alan adı doğrulandı!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr "Kodunuz yok mu ya da yeni bir tane mi lazım? <0>Buraya tıklayın.0>"
@@ -3681,7 +3810,7 @@ msgstr "Kodunuz yok mu ya da yeni bir tane mi lazım? <0>Buraya tıklayın.0>"
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr "Kodu görmediniz mi? <0>Yeniden yollamak için buraya tıklayın.0>"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr "E-posta gelmedi mi? <0>Yeniden yollamak için buraya tıklayın.0>"
@@ -3700,16 +3829,19 @@ msgstr "Merak etmeyin! Tüm mesajlarınız ve ayarlarınız saklandı ve bir yet
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Tamam"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Bir tepki eklemek için mesaja çift dokunun ya da uzun basın"
@@ -3741,15 +3873,6 @@ msgstr "Beğenmek için çift dokunun"
msgid "Download Bluesky"
msgstr "Bluesky'ı İndir"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "CAR dosyasını indir"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "CAR dosyasını indir"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr "Sohbet verisini indir"
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr "Sohbet verisini indir"
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr "Görseli indir"
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr "Profil verisini indir"
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr "Profil verisini indir"
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr "Özel bilgi ifşası"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr "örn: Reklamlarla tekrar tekrar yanıt veren kullanıcılar."
msgid "Eating disorders"
msgstr "Yeme bozuklukları"
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Düzenle"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Avatarı düzenle"
@@ -3847,14 +3978,14 @@ msgstr "Avatarı düzenle"
msgid "Edit Feeds"
msgstr "Akışları Düzenle"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr "Grup adını düzenle"
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Resmi düzenle"
@@ -3868,7 +3999,16 @@ msgstr "Etkileşim ayarlarını düzenle"
msgid "Edit interests"
msgstr "İlgi alanlarını düzenle"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr "Davetiye bağlantısını düzenle"
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr "Davetiye bağlantısını düzenle"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr "Bağlantı ayarlarını düzenle"
@@ -3886,20 +4026,15 @@ msgstr "Canlı yayın durumunu düzenle"
msgid "Edit moderation list"
msgstr "Moderasyon listesini düzenle"
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Akışlarımı Düzenle"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr "İsmi düzenle"
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr "{0} kullanıcısından gelen bildirimleri düzenle"
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Kişileri Düzenle"
@@ -3925,7 +4060,7 @@ msgstr "Profil Düzenle"
msgid "Edit starter pack"
msgstr "Başlangıç paketini düzenle"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr "Bu grup sohbetinin adını düzenle"
@@ -3937,7 +4072,7 @@ msgstr "Kullanıcı listesini düzenle"
msgid "Edit who can reply"
msgstr "Kimin yanıtlayabileceğini düzenle"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Başlangıç paketini düzenle"
@@ -3971,7 +4106,7 @@ msgstr "E-posta adresi"
msgid "Email Resent"
msgstr "E-posta Yeniden Yollandı"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr "E-posta gönderildi!"
@@ -4006,8 +4141,8 @@ msgstr "Bu gönderiyi web sitenize gömün. Aşağıdaki kod parçasını kopyal
msgid "Embedded video player"
msgstr "Gömülü video oynatıcı"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Etkinleştir"
@@ -4025,7 +4160,7 @@ msgstr "Yetişkin içeriği etkinleştirin"
msgid "Enable captions"
msgstr "Altyazıları aç"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr "E-posta iki adımlı doğrulamasını etkinleştir"
@@ -4038,13 +4173,12 @@ msgstr "Harici medyayı etkinleştirin"
msgid "Enable media players for"
msgstr "Medya oynatıcılarını etkinleştir"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr "Bir hesabın bildirimlerini etkinleştirmek için profilini ziyaret edin ve <0>zil simgesine0> <1/> basın."
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr "Anında bildirimleri etkinleştir"
@@ -4091,8 +4225,8 @@ msgstr "Bir şifre girin"
msgid "Enter a word or tag"
msgstr "Bir sözcük veya etiket girin"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr "Kodu girin"
@@ -4143,7 +4277,7 @@ msgstr "Tam ekrana geçer"
msgid "Entertainment"
msgstr "Eğlence"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Hata"
@@ -4185,23 +4319,23 @@ msgstr "Herkes yanıtlayabilir"
msgid "Everybody can reply to this post."
msgstr "Bu gönderiyi herkes yanıtlayabilir."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Herkes"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Herkes"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Herkes"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr "Geri kalan her şey"
@@ -4217,8 +4351,8 @@ msgstr "Takip ettiğiniz kullanıcıları hariç tutar"
msgid "Exit fullscreen"
msgstr "Tam ekrandan çık"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Alternatif metni genişlet"
@@ -4226,7 +4360,7 @@ msgstr "Alternatif metni genişlet"
msgid "Expand list of users"
msgstr "Kullanıcı listesini genişletir"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Yanıt verdiğiniz tam gönderiyi genişletin veya daraltın"
@@ -4238,7 +4372,7 @@ msgstr "Gönderi metnini genişlet"
msgid "Expands or collapses post text"
msgstr "Gönderi metnini genişletir ya da daraltır"
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr "URI'nin bir kayda çözümlenmesi beklendi"
@@ -4277,9 +4411,9 @@ msgstr "Açık veya rahatsız edici olabilecek medya."
msgid "Explicit sexual images."
msgstr "Açık cinsel içerikli görseller."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Keşfet"
@@ -4289,11 +4423,8 @@ msgstr "Keşfet"
msgid "Explore the app"
msgstr "Uygulamayı keşfet"
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr "Sohbet verisini dışarı aktar"
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr "Sohbet verimi dışarı aktar"
@@ -4322,7 +4453,7 @@ msgstr "Harici Medya"
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 "Harici medya, web sitelerinin siz ve cihazınız hakkında bilgi toplamasına izin verebilir. Bilgi, \"oynat\" düğmesine basana kadar gönderilmez veya istenmez."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Harici Medya Tercihleri"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Sohbet kabul edilemedi"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr "Katılma talebi kabul edilemedi"
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Emoji tepkisi eklenemedi"
@@ -4354,7 +4489,7 @@ msgstr "Başlangıç paketine eklenemedi"
msgid "Failed to change handle. Please try again."
msgstr "Kullanıcı adı değiştirilemedi. Lütfen tekrar deneyin."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr "Bağlantı kopyalanamadı"
@@ -4367,7 +4502,7 @@ msgstr "Uygulama şifresi oluşturulamadı. Lütfen tekrar deneyin."
msgid "Failed to create conversation"
msgstr "Yazışma oluşturulamadı"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr "Davetiye bağlantısı yaratılamadı"
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Sohbet silinemedi"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Mesaj silinemedi"
@@ -4394,24 +4529,24 @@ msgstr "Gönderi silinemedi, lütfen tekrar deneyin"
msgid "Failed to delete starter pack"
msgstr "Başlangıç paketi silinemedi"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr "Davetiye bağlantısı devre dışı bırakılamadı"
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr "Germ DM bağlantısı kesilemedi. Hata: {0}"
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr "Grup sohbeti ismi düzeltilemedi"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr "Davetiye bağlantısı düzeltilemedi"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr "Davetiye bağlantısı etkinleştirilemedi"
@@ -4427,19 +4562,27 @@ msgstr "Tüm arkadaşlarınız takip edilemedi, lütfen tekrar deneyin"
msgid "Failed to hide suggestion, please check your internet connection"
msgstr "Öneri gizlenemedi, lütfen internet bağlantınızı kontrol edin"
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr "Katılma talebi gözardı edilemedi"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr "Grup sohbetine katılınamadı. Lütfen tekrar deneyin."
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr "SMS uygulaması başlatılamadı"
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr "Grup sohbetinden çıkılamadı"
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Yazışmalar yüklenemedi"
@@ -4456,17 +4599,8 @@ msgstr "Akışlar yüklenemedi"
msgid "Failed to load feeds preferences"
msgstr "Akış tercihleri yüklenemedi"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr "Bildirim ayarları yüklenemedi."
@@ -4493,16 +4627,15 @@ msgstr "Önerilen akışlar yüklenemedi"
msgid "Failed to load suggested follows"
msgstr "Önerilen takipler yüklenemedi"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr "Grup sohbeti kilitlenemedi"
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Tüm istekleri okundu olarak işaretleme başarısız oldu"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr "Grup sohbeti sessize alınamadı"
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Gönderi sabitlenemedi"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr "Germ DM ile yeniden bağlantı kurulamadı. Hata: {0}"
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr "Veri kaldırılamadı. {0}"
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Emoji tepkisi kaldırılamadı"
@@ -4542,15 +4675,19 @@ msgstr "Grup sohbeti üyesi çıkarılamadı"
msgid "Failed to remove verification"
msgstr "Doğrulama kaldırılamadı"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr "Talebiniz geri çekilemedi. Lütfen tekrar deneyin."
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr "Konum çözümlenemedi. Lütfen tekrar deneyin."
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr "Taslak kaydedilemedi"
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr "Görsel kaydedilemedi"
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "İlgi alanlarınız kaydedilemedi."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr "E-posta gönderilemedi, lütfen tekrar deneyin."
@@ -4580,7 +4717,7 @@ msgstr "Rapor yollanamadı"
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "İtirazınız gönderilemedi, lütfen tekrar deneyin."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Konuyu sessize alma seçeneği değiştirilemedi, lütfen tekrar deneyin"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr "Grup sohbeti kilidi açılamadı"
@@ -4597,12 +4734,12 @@ msgstr "Grup sohbeti kilidi açılamadı"
msgid "Failed to unpin list"
msgstr "Listenin sabitlemesi kaldırılamadı"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr "E-posta iki adımlı doğrulama ayarları güncellenemedi"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr "E-posta güncellenemedi, lütfen tekrar deneyin."
@@ -4614,7 +4751,7 @@ msgstr "Akışlar güncellenemedi"
msgid "Failed to update notification declaration"
msgstr "Bildirim beyanı güncellenemedi"
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Ayarlar güncellenemedi"
@@ -4641,7 +4778,7 @@ msgstr "Sahte hesap ya da bot"
msgid "False information about elections"
msgstr "Seçimler hakkında yanlış bilgi"
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Akış"
@@ -4649,7 +4786,7 @@ msgstr "Akış"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "{0} tarafından besleme"
@@ -4662,7 +4799,7 @@ msgstr "Akışı oluşturan"
msgid "Feed identifier"
msgstr "Akış tanımlayıcısı"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Akış menüsü"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr "Geribildiriminiz akış operatörüne yollandı"
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Akışlar"
@@ -4739,7 +4876,7 @@ msgstr "Aramayı dile göre filtrele (şu anda:{currentLanguageLabel})"
msgid "Filter who can opt to receive notifications for your activity"
msgstr "Etkinliğinizden kimlerin bildirim alabileceğini filtreleyin"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr "Kimden bildirim alacağınızı filtreleyin"
@@ -4747,11 +4884,11 @@ msgstr "Kimden bildirim alacağınızı filtreleyin"
msgid "Finalizing"
msgstr "Tamamlanıyor"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr "Sonunda!"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
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."
@@ -4768,8 +4905,8 @@ msgstr "Finans"
msgid "Find accounts to follow"
msgstr "Takip edilecek hesaplar bul"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr "Bağlantılarınızı Bulun"
@@ -4799,7 +4936,7 @@ msgstr "Takip edilecek kişiler bulun"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Bluesky'da gönderileri, kullanıcıları ve akışları bulun"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr "Arkadaşlarınızı bulun"
@@ -4944,8 +5081,12 @@ msgstr "<0>{0}0> ve <1>{1}1> tarafından takip ediliyor"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "<0>{0}0>, <1>{1}1> ve {2, plural, other {# kişi daha}} tarafından takip ediliyor"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr "Takipçiler katılabilir"
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Tanıdığınız @{0} takipçileri"
@@ -4995,19 +5136,16 @@ msgstr "{handle} takip ediliyor"
msgid "Following feed preferences"
msgstr "Takip edilenler akışı tercihleri"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Takip Edilenler Akışı Tercihleri"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Sizi takip ediyor"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Sizi Takip Ediyor"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Yazı tipi"
@@ -5069,7 +5207,7 @@ msgstr "Unuttunuz mu?"
msgid "Free your feed"
msgstr "Akışınızı özgürleştirin"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr "Kimden"
@@ -5086,35 +5224,35 @@ msgstr "<0/> tarafından"
msgid "Generate a starter pack"
msgstr "Bir başlangıç paketi oluşturun"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr "Davetiye bağlantısı üret"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr "Yeni davetiye bağlantısı üret"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr "Yeni bağlantı üret"
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr "Germ DM"
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr "Germ DM bağlantısı kesildi"
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr "Germ DM Bağlantısı"
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr "Germ DM yeniden bağlandı"
@@ -5122,46 +5260,50 @@ msgstr "Germ DM yeniden bağlandı"
msgid "Get help"
msgstr "Yardım al"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr "Başlangıç paketi katılımları, doğrulama ve diğer etkinlikler için bildirim alın."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr "Sizi takip ettiklerinde bildirim alın."
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr "Yeniden gönderilerinizi beğendiklerinde bildirim alın."
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr "Gönderilerinizi beğendiklerinde bildirim alın."
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr "Başkaları yeniden gönderimlerinizi beğendiğinde bildirim alın."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr "Sizden bahsettiklerinde bildirim alın."
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr "Gönderilerinizi alıntıladıklarında bildirim alın."
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr "Gönderilerinize yanıt verdiklerinde bildirim alın."
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
-msgstr "Yeniden gönderilerinizi yeniden gönderdiklerinde bildirim alın."
-
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:302
msgid "Get notifications when people repost your posts."
msgstr "Gönderilerinizi yeniden gönderdiklerinde bildirim alın."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr "Başkaları yeniden gönderimlerinizi yeniden gönderdiğinde bildirim alın."
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
+msgstr "Abone olduğunuz gönderilerle ilgili bir güncelleme olduğunda bildirim alın."
+
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr "Yeni gönderilerden bildirim al"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr "Seçtiğiniz hesapların gönderilerinden ve yanıtlarından bildirim alın."
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr "{name} kullanıcısının yeni gönderilerinden bildirim al"
@@ -5174,27 +5316,27 @@ msgstr "Bu hesabın etkinliklerinden bildirim al"
msgid "Get notified when {name} posts"
msgstr "{name} gönderi paylaştığında bildirim al"
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr "Birisi gönderi paylaştığında bildirim al"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Başla"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr "GIF yüklendi"
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Profilinize bir yüz ekleyin"
@@ -5213,20 +5355,21 @@ msgstr "Şiddete övgü"
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Geri git"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Geri Git"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Önceki adıma geri dön"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Ana sayfaya git"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Ana sayfaya git"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Ana Sayfaya Git"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr "Hesap ayarlarına git"
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "{0} ile olan yazışmaya git"
@@ -5299,12 +5440,12 @@ msgstr "Sonrakine git"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Profile git"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr "\"{chatName}\" grubuna git"
@@ -5320,8 +5461,8 @@ msgstr "Kullanıcının profiline git"
msgid "Going live is currently disabled for your account"
msgstr "Canlı yayını başlatma şu anda hesabınız için kullanıma kapalı"
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr "Anladım"
@@ -5340,59 +5481,75 @@ msgstr "Açık şiddet içeren içerik"
msgid "Grooming or predatory behavior"
msgstr "Reşit olmayanlara yönelik cinsel yönlendirme ya da sarkıntılık davranışı"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr "Grup sohbeti"
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr "Grup sohbeti davetiye linki diyalogu"
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr "Grup sohneti kilitlendi"
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr "Grup sohbeti sessize alındı"
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr "Grup sohbeti ismi güncellendi"
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr "Grup sohbeti ayarları"
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr "Grup sohbetinin kilidi açıldı"
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr "Grup sohbeti sessizden çıkarıldı"
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr "Grup sohbetleri henüz erişilebilir değil"
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr "Grup sohbetleri artık erişilebilir"
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr "Grup kilitli"
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr "Grup adı"
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr "Hack'leme ya da sistem saldırıları"
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Kullanıcı adı çok uzun. Lütfen daha kısa bir tane deneyin."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr "Şimdi oluyor"
@@ -5446,7 +5603,7 @@ msgstr "Zararlı ya da yüksek riskli eylemler"
msgid "Harming or endangering minors"
msgstr "Küçüklere zarar verme ya da tehlikeye atma"
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Etiket"
@@ -5458,8 +5615,8 @@ msgstr "{tag} etiketi"
msgid "Hate speech"
msgstr "Nefret söylemi"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr "Kodunuz var mı? <0>Buraya tıklayın.0>"
@@ -5483,7 +5640,7 @@ msgstr "Bluesky tarafından kötüye kullanımı engellemek için 7 gün tutulur
msgid "Help"
msgstr "Yardım"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Bir resim yükleyerek veya bir avatar oluşturarak insanların bot olmadığınızı anlamalarına yardımcı olun."
@@ -5652,18 +5809,18 @@ msgstr "Hmmm, bu verileri yüklemekte sorun yaşıyoruz gibi görünüyor. Daha
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmmm, o moderasyon hizmetini yükleyemedik."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Bekleyin! Videoya kademeli olarak erişim veriyoruz ve siz hâlâ sıradasınız. Birazdan tekrar kontrol edin!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr "Sabırlı olun! Bu özellik henüz size sunulmuş değil. Lütfen daha sonra tekrar kontrol edin."
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Ana Sayfa"
@@ -5721,7 +5878,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/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Alternatif metin uzunsa, alternatif metin genişletme durumunu değiştirir"
@@ -5757,7 +5914,7 @@ msgstr "Bu listeyi sildiğinizde geri getirmeniz mümkün olmayacaktır."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Kendi alan adınız varsa onu kullanıcı adınız olarak kullanabilirsiniz. Bu, kimliğinizi kendi kendinize doğrulamanızı sağlar. <0>Burada daha fazlasını öğrenin.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr "E-postanızı güncellemeniz gerekiyorsa <0>buraya tıklayın0>."
@@ -5765,7 +5922,7 @@ msgstr "E-postanızı güncellemeniz gerekiyorsa <0>buraya tıklayın0>."
msgid "If you remove this post, you won't be able to recover it."
msgstr "Bu gönderiyi kaldırırsanız geri getirmeniz mümkün olmayacaktır."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr "Eğer e-posta adresinizi güncellerseniz e-posta ile iki adımlı doğrulama devre dışı bırakılacaktır."
@@ -5773,7 +5930,6 @@ msgstr "Eğer e-posta adresinizi güncellerseniz e-posta ile iki adımlı doğru
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Şifrenizi değiştirmek istiyorsanız, size hesabınızın sizin olduğunu doğrulamak için bir kod göndereceğiz."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr "Hesabınızın etkinlik bildirimlerini kimlerin alabileceğini sınırlamak istiyorsanız, bunu <0>Ayarlar → Gizlilik ve Güvenlik0> bölümünden değiştirebilirsiniz."
@@ -5786,23 +5942,33 @@ msgstr "Eğer bir geliştiriciyseniz kendi sunucunuzu barındırabilirsiniz."
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/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr "Gözardı et"
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr "Katılma talebini gözardı et"
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Görsel"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr "Görsel {0}"
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr "Görsel {0}/{1}"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr "Görsel {0} / {imageCount}"
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Görsel önbelleği temizlendi, {0} yer açıldı"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr "Görsel galerisi, {0} görsel"
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr "Moderasyon ayarlarınız sebebiyle görsel gizlenmiştir."
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr "Görsel görüntülenemez."
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr "Görsel seçenekleri"
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr "Kendini başkası olarak tanıtma"
msgid "Import contacts"
msgstr "Bağlantıları yükle"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr "Bağlantıları Yükle"
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr "Arkadaşlarınızı bulmak için bağlantılarınızı yükleyin"
@@ -5881,40 +6047,40 @@ msgstr "{0} tarihinde aktarıldı"
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 "Yaşınıza uygun bir tecrübe sağlamamız için doğum tarihinizi bilmemiz gerekiyor. Bu tek seferlik bir şeydir ve veriniz gizli tutulacaktır."
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr "Uygulama içi"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr "Uygulama içi bildirimler"
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
-msgstr "Uygulama içi, Herkes"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
+msgstr "Uygulama içi, herkes"
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
-msgstr "Uygulama içi, Takip ettikleriniz"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
+msgstr "Uygulama içi, takip ettikleriniz"
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
-msgstr "Uygulama içi, Anında"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
+msgstr "Uygulama içi, anlık"
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
-msgstr "Uygulama içi, Anında, Herkes"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
+msgstr "Uygulama içi, anlık, herkes"
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
-msgstr "Uygulama içi, Anında, Takip ettikleriniz"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
+msgstr "Uygulama içi, anlık, takip ettikleriniz"
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr "Gelen kutusu boş"
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Gelen kutusu boş!"
@@ -5963,6 +6129,10 @@ msgstr "Kayıtlı gönderileri yani yer imlerini sunarız"
msgid "Invalid 2FA confirmation code."
msgstr "Geçersiz 2FA onay kodu."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr "Geçersiz grup sohbeti kodu."
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Geçersiz kullanıcı adı. Lütfen başka bir kullanıcı adı deneyin."
@@ -5977,10 +6147,14 @@ msgstr "Geçersiz etkileşim ayarları."
msgid "Invalid phone number"
msgstr "Geçersiz telefon numarası"
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Geçersiz rapor konusu"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr "Geçersiz geri alım talebi."
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Geçersiz Doğrulama Kodu"
@@ -6010,12 +6184,12 @@ msgstr "Arkadaşları Davet Edin"
msgid "Invite friends <0/>"
msgstr "Arkadaşları davet edin <0/>"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr "Davetiye bağlantısı"
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr "Davetiye bağlantısı oluşturuldu"
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr "Davetiye bağlantısı devre dışı bırakıldı"
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Şu anda yalnızca siz varsınız! Yukarıdan arama yaparak başlangıç paketinize daha çok kişi ekleyin."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "İş ID: {0}"
@@ -6083,6 +6257,11 @@ msgstr "İş ID: {0}"
msgid "Jobs"
msgstr "İşler"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr "Katıl"
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "İşler"
msgid "Join Bluesky"
msgstr "Bluesky'a Katıl"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr "Grup sohbetine katıl"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr "Katılım talebi geri alındı."
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Yazışmaya katıl"
msgid "Journalism"
msgstr "Gazetecilik"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr "Düzenlemeye devam et"
@@ -6143,7 +6331,7 @@ msgstr "Hesabınızdaki işaretler"
msgid "Labels on your content"
msgstr "İçeriğinizdeki işaretler"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Dil Ayarları"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "En son"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Bu uyarı hakkında daha fazla bilgi edinin"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr "Bluesky'da doğrulama ile ilgili daha fazla bilgi edinin"
@@ -6239,7 +6427,7 @@ msgstr "Bluesky'da doğrulama ile ilgili daha fazla bilgi edinin"
msgid "Learn more about what is public on Bluesky."
msgstr "Bluesky'da neyin herkese açık olduğu hakkında daha fazla bilgi edinin."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr "Germ DM bağlantınızla ilgili daha fazla bilgi edinin"
@@ -6252,8 +6440,8 @@ msgstr "<0>Hesap ayarlarınızdan0> daha çok bilgi edinin."
msgid "Learn more."
msgstr "Daha fazlasını öğren."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Ayrıl"
@@ -6276,7 +6464,7 @@ msgstr "Sohbetten ayrıl"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Yazışmadan ayrıl"
@@ -6284,13 +6472,13 @@ msgstr "Yazışmadan ayrıl"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Yazışmadan ayrıl"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr "Grup sohbetinden ayrıl"
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr "Bu grup sohbetinden ayrıl"
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Aydınlık"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Beğen ({0, plural, other {# beğeni}})"
@@ -6346,11 +6534,7 @@ msgstr "10 gönderiyi beğen"
msgid "Like 10 posts to train the Discover feed"
msgstr "Keşif akışını (\"Discover\") eğitmek için 10 gönderiyi beğenin"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr "Beğeni bildirimleri"
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Bu akışı beğen"
@@ -6358,8 +6542,8 @@ msgstr "Bu akışı beğen"
msgid "Like this labeler"
msgstr "Bu işaretleyiciyi beğen"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Beğenenler"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "{0, plural, other {# kullanıcı}} tarafından beğenildi"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "{likeCount, plural, other {# kullanıcı}} tarafından beğenildi"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Beğeniler"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr "Yeniden gönderilerinize dair beğeniler"
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr "Yeniden gönderilerinize dair beğenilerin bildirimleri"
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Bu gönderideki beğeniler"
@@ -6409,11 +6589,11 @@ msgstr "Bu gönderideki beğeniler"
msgid "Linear"
msgstr "Düz"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr "Bağlantı panoya kopyalandı"
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Liste"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Liste sessizden çıkarıldı"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Listeler"
@@ -6545,7 +6725,7 @@ msgstr "Canlı etkinlik yeniden görünür hale getirildi"
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."
-#: src/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr "Canlı özelliği beta'dır"
@@ -6595,27 +6775,27 @@ msgstr "Gönderi etkileşim ayarları yükleniyor..."
msgid "Loading..."
msgstr "Yükleniyor..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr "Kilitle"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr "Grup sohbetini kilitle"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr "Grup sohbeti kilitlensin mi?"
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr "Bu grup sohbetini kilitle"
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr "Kilitlendi"
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Log"
@@ -6662,7 +6842,7 @@ msgstr "Görünüşe göre takip edilenler akışınız eksik. <0>Eklemek için
msgid "Love GIFs"
msgstr "Sevgi GIFleri"
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr "Hesabınız için e-posta ayarlarınızı düzenleyin"
@@ -6687,9 +6867,8 @@ msgstr "Doğrulama ayarlarını yönet"
msgid "Manage your muted words and tags"
msgstr "Sessize alınmış kelimelerinizi ve etiketlerinizi yönetin"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Tümünü okunmuş olarak işaretle"
@@ -6698,13 +6877,12 @@ msgstr "Tümünü okunmuş olarak işaretle"
msgid "Mark as read"
msgstr "Okundu olarak işaretle"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Tümü okunmuş olarak işaretlendi"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Belki daha sonra"
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Bazı gruplar için rahatsız edici ya da uygunsuz olabilecek medya."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr "Üyeler"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr "Üyeler sohbet geçmişini okuyabilir ama yeni mesaj atamazlar."
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr "Bahsetme bildirimleri"
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "bahsedilen kullanıcılar"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Bahsedenler"
@@ -6775,22 +6949,22 @@ msgstr "Mesaj {0}"
msgid "Message {displayName}"
msgstr "{displayName} üyesine mesaj at"
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Mesaj silindi"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Mesaj silindi"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr "Mesaj gönderilemedi."
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "@{0} mesajı: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Mesaj çok uzun"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr "Mesaj çok uzun ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Mesaj seçenekleri"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Mesajlar"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr "Bu kişiden gelen mesajlar o sizi engellediği sürece görünmeyecektir."
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr "Bu kişiden gelen mesajlar siz onu engellediğiniz sürece görünmeyecektir."
@@ -6838,10 +7012,6 @@ msgstr "Gece yarısı"
msgid "Minor harassment or bullying"
msgstr "Küçüklere taciz ya da kabadayılık"
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr "Diğer bildirimler"
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr "Yanıltıcı"
@@ -6850,7 +7020,7 @@ msgstr "Yanıltıcı"
msgid "Missing media"
msgstr "Kayıp medya"
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Moderasyon"
@@ -6894,7 +7064,7 @@ msgstr "Moderasyon listesi güncellendi"
msgid "Moderation lists"
msgstr "Moderasyon listeleri"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Moderasyon Listeleri"
@@ -6903,7 +7073,7 @@ msgstr "Moderasyon Listeleri"
msgid "moderation settings"
msgstr "moderasyon araçları"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Moderasyon durumları"
@@ -6949,7 +7119,7 @@ msgstr "Filmler"
msgid "Music"
msgstr "Müzik"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Sessize al"
@@ -6994,7 +7164,7 @@ msgstr "Listeyi sessize al"
msgid "Mute these accounts?"
msgstr "Bu hesapları sessize al?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr "Bu grup sohbetini sessize al"
@@ -7032,7 +7202,7 @@ msgstr "Konuyu sessize al"
msgid "Mute words & tags"
msgstr "Kelimeleri ve etiketleri sustur"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr "Sessize alındı"
@@ -7040,7 +7210,7 @@ msgstr "Sessize alındı"
msgid "Muted accounts"
msgstr "Sessize alınan hesaplar"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Sessize Alınan Hesaplar"
@@ -7108,8 +7278,8 @@ msgstr "Sonraki ekrana yönlendirir"
msgid "Navigates to your profile"
msgstr "Profilinize yönlendirir"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr "Bir telif ihlali, hukuki talep ya da mevzuata uygunluk sorunu mu bildirmeniz gerekiyor?"
@@ -7136,34 +7306,34 @@ msgstr "{firstAuthorLink} kullanıcısından yeni {postsCount, plural, one {gön
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr "{firstAuthorName} kullanıcısından yeni {postsCount, plural, one {gönderi} other {gönderiler}}"
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Yeni sohbet"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr "{0} ile yeni sohbet"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr "{0} ve {1} ile yeni sohbet"
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr "{0}, {1} ve {memberCount, plural, other {{memberCount} kişiyle daha}} yeni sohbet."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Yeni e-posta adresi"
@@ -7174,29 +7344,25 @@ msgstr "Yeni e-posta adresi"
msgid "New Feature"
msgstr "Yeni Özellik"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr "Yeni takipçi bildirimleri"
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr "Yeni takipçiler"
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr "Yeni grup sohbeti"
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
-msgstr ""
+msgstr "Yeni grup sohbeti"
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr "Yeni grup sohbetinin üyeleri:"
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Yeni gönderi"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Yeni gönderi"
@@ -7262,8 +7428,8 @@ msgstr "Haberler"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr "\"{query}\" için GIF bulunamadı."
msgid "No GIFs to show right now. Try again in a moment."
msgstr "Şu anda görülecek bir GIF yok. Birazdan tekrar deneyin."
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr "Görsel yok"
@@ -7362,7 +7528,7 @@ msgstr "{0} artık takip edilmiyor"
msgid "No media yet"
msgstr "Henüz bir medya yok"
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Henüz mesaj yok"
@@ -7378,12 +7544,12 @@ msgstr "İsim yok"
msgid "No notifications yet!"
msgstr "Henüz bildirim yok!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr "Hiç kimse"
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr "Hiç kimse"
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Sonuç yok"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Sonuç yok"
@@ -7509,10 +7675,6 @@ msgstr "Rızasız mahrem görseller"
msgid "Non-sexual Nudity"
msgstr "Cinsel olmayan çıplaklık"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr "Hiçbiri"
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr "Bu platformda kullanılabilir değil."
msgid "Not followed by anyone you’re following"
msgstr "Takip ettiğiniz hiçkimse tarafından takip edilmiyor"
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Bulunamadı"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr "Gönder'e basmaya hazır değil misiniz? En iyi fikirlerinizi doğru zamana kadar Taslaklar'da tutun."
@@ -7548,44 +7710,31 @@ msgstr "Not: Bu gönderi yalnızca giriş yapmış kullanıcılara görünür."
msgid "Nothing saved yet"
msgstr "Henüz hiçbir şey kaydedilmedi"
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Bildirim ayarları"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Bildirim sesleri"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Bildirimler"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr "Geri kalan her şey için bildirimler, mesela birinin başlangıç paketinizle katılması gibi."
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "şimdi"
@@ -7601,7 +7750,7 @@ msgstr "Numara bir cep telefonu numarası olmalı"
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Kapalı"
@@ -7623,7 +7772,8 @@ msgstr "Tamam"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Onboarding sıfırlama"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
-msgstr ""
+msgstr "Seçilmiş alıcılardan biri grup sohbetlerine izin vermiyor."
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Seçilmiş alıcılardan biri sizi engellediğinden kendisiyle yazışılamaz."
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "Bir ya da daha fazla görselin alternatif metni eksik."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
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: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/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
+msgstr "Seçtiğiniz dosyalardan bir ya da daha fazlası çok büyük. En fazla {VIDEO_MAX_SIZE_MB} MB olabilir."
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr "Gönderilerden bir ya da birkaçı taslak olarak kaydetmek için çok uzun. {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {Maksimum karakter sayısı # karakterdir.}}"
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Bir veya daha fazla videoda alternatif metin eksik."
@@ -7685,6 +7835,26 @@ msgstr "Bir veya daha fazla videoda alternatif metin eksik."
msgid "Only {0} can reply."
msgstr "Yalnızca {0} yanıtlayabilir."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr "Yalnızca yöneticiler katılma taleplerini kabul edebilir."
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr "Yalnızca yöneticiler katılım taleplerini gözardı edebilir."
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr "Sadece takipçiler bu grup sohbetine katılabilir."
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr "Sadece benim takip ettiğim takipçiler"
msgid "Only image files are supported"
msgstr "Yalnızca resim dosyaları desteklenmektedir"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr "Sadece {0} kişisinin takip ettikleri katılabilir."
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr "Sadece sohbet sahibinin takip ettikleri sohbete katılabilir"
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Yalnızca WebVTT (.vtt) dosyaları desteklenmektedir"
@@ -7712,7 +7892,7 @@ msgstr "Ay, bir şeyler yanlış gitti!"
msgid "Oops!"
msgstr "Hata!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Avatar oluşturucuyu aç"
@@ -7720,12 +7900,17 @@ msgstr "Avatar oluşturucuyu aç"
msgid "Open camera"
msgstr "Kamerayı aç"
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr "{displayName} için sohbet üyesi seçeneklerini aç"
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Yazışma seçeneklerini aç"
@@ -7739,16 +7924,16 @@ msgstr "Çekmece menüyü aç"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Emoji seçiciyi aç"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Akış bilgi ekranını aç"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Akış seçenekleri menüsünü aç"
@@ -7760,13 +7945,17 @@ msgstr "Tüm emoji listesini aç"
msgid "Open Germ DM"
msgstr "Germ DM'i aç"
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr "Grup sohbetini aç"
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr "Grup sohbeti ayarlarını aç"
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "{niceUrl} web bağlantısını aç"
@@ -7790,8 +7979,8 @@ msgstr "Paketi aç"
msgid "Open post options menu"
msgstr "Gönderi seçenekleri menüsünü aç"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr "Profili aç"
@@ -7817,6 +8006,10 @@ msgstr "Storybook sayfasını aç"
msgid "Open system log"
msgstr "Sistem günlüğünü aç"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr "Bu grup sohbetini aç"
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Hata ayıklama girişi için ek ayrıntıları açar"
msgid "Opens alt text dialog"
msgstr "Alt metin diyaloğunu açar"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Cihazdaki kamerayı açar"
@@ -7858,22 +8051,24 @@ msgstr "Besteciyi açar"
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: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."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
+msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Yeni bir Bluesky hesabı oluşturma adımlarını açar"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
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"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr "Tam görseli açar"
@@ -7890,7 +8085,7 @@ msgstr "Görsel seçiciyi açar"
msgid "Opens link {0}"
msgstr "{0} bağlantısını açar"
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr "Canlı yayın diyaloğunu açar"
@@ -7919,9 +8114,9 @@ msgstr "Gönderi oluşturucusunu açar"
msgid "Opens this draft in the composer"
msgstr "Bu taslağı düzenleyicide açar"
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Bu profili açar"
@@ -7997,12 +8192,12 @@ msgstr "Blog gönderimiz"
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Moderasyon ekibimiz raporunuzu aldı."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Moderatörlerimiz raporları inceledi ve Bluesky'daki sohbetlere erişiminizi engellemeye karar verdi."
@@ -8010,16 +8205,17 @@ msgstr "Moderatörlerimiz raporları inceledi ve Bluesky'daki sohbetlere erişim
msgid "Owner"
msgstr "Sahibi"
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Sayfa bulunamadı"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Sayfa Bulunamadı"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Videoyu duraklat"
msgid "People"
msgstr "Kişiler"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr "{ownerName} tarafından takip edilenler anında katılabilir"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr "{ownerName} tarafından takip edilenler katılmayı talep edebilir"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "@{0} tarafından takip edilenler"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "@{0} tarafından takip edilenler"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr "Takip ettiklerim"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr "Takip ettiklerim anında katılabilir"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr "Takip ettiklerim katılmayı talep edebilir"
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Yetişkinler için resimler."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Akışı sabitle"
@@ -8152,7 +8348,7 @@ msgstr "Akışı sabitle"
msgid "Pin to home"
msgstr "Ana ekrana sabitle"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Ana Sayfaya Sabitle"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Sabitlendi"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "{0} Ana Sayfaya Sabitlendi"
@@ -8236,7 +8432,7 @@ msgstr "Kullanıcı adınızı seçin."
msgid "Please choose your password."
msgstr "Şifrenizi seçin."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 "Yeni e-posta adresinizi doğrulamak için lütfen size şimdi yolladığımız e-postadaki bağlantıya tıklayın. Bu, Bluesky'ın tüm özelliklerinin tadını çıkarabilmeniz için önemli bir adımdır."
@@ -8244,7 +8440,7 @@ msgstr "Yeni e-posta adresinizi doğrulamak için lütfen size şimdi yolladığ
msgid "Please complete the verification captcha."
msgstr "Lütfen doğrulama captcha'sını tamamlayın."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr "Video yüklemek için lütfen e-posta adresinizi onaylayın."
@@ -8265,14 +8461,14 @@ msgstr "Lütfen bir şifre girin. En az 8 karakter uzunluğunda olmalıdır."
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Lütfen bu uygulama şifresi için benzersiz bir isim girin ya da ürettiğimiz rastgele ismi kullanın."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr "Lütfen geçerli bir kod girin."
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr "Lütfen geçerli bir e-posta adresi girin."
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr "Lütfen geçerli, geçici olmayan bir e-posta adresi girin. Bu e-posta adresine ilerde erişmeniz gerekebilir."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr "Lütfen <0>{0}0> adresine yolladığımız kodu aşağıya girin."
@@ -8293,7 +8489,7 @@ msgstr "Lütfen <0>{0}0> adresine yolladığımız kodu aşağıya girin."
msgid "Please enter the code you received and the new password you would like to use."
msgstr "Lütfen elinize geçen kodu ve kullanmak istediğiniz yeni şifreyi girin."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr "Lütfen önceki e-posta adresinize yolladığımız güvenlik kodunu girin."
@@ -8306,7 +8502,7 @@ msgstr "E-postanızı girin."
msgid "Please enter your invite code."
msgstr "Lütfen davet kodunuzu girin."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr "Lütfen yeni e-posta adresinizi girin."
@@ -8323,7 +8519,7 @@ msgstr "Lütfen kullanıcı adınızı girin"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Lütfen neden bu işaretin {0} tarafından yanlış uygulandığını açıklayın"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Lütfen neden sohbetlerinizin yanlış yere kullanıma kapatıldığını açıklayın"
@@ -8366,7 +8562,7 @@ msgstr "Bağlantılarınızı aktarmak için lütfen mobil uygulamayı kullanın
msgid "Please use the native app to sync your contacts."
msgstr "Lütfen bağlantılarınızı eşlemek için mobil uygulamayı kullanın."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr "Lütfen e-postanızı doğrulayın"
@@ -8383,7 +8579,7 @@ msgstr "Politika"
msgid "Porn"
msgstr "Pornografi"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Gönder"
@@ -8403,12 +8599,12 @@ msgstr "Bir fotoğraf gönder"
msgid "Post a video"
msgstr "Bir video gönder"
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Hepsini Gönder"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr "Yine de gönder"
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr "Gönderi engellendi"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "@{0} tarafından gönderi"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Gönderi silindi"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Gönderinin yollanması başarısız. Lütfen İnternet bağlantınızı kontrol edin ve tekrar deneyin."
@@ -8454,7 +8650,7 @@ msgstr "Gönderi Sizin Tarafınızdan Gizlenmiş"
msgid "Post interaction settings"
msgstr "Gönderi etkileşim ayarları"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Gönderi Etkileşim Ayarları"
@@ -8464,8 +8660,8 @@ msgstr "Gönderi Etkileşim Ayarları"
msgid "Post language selection"
msgstr "Gönderi dili seçimi"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr "Bağlantıyı gönder"
@@ -8491,7 +8687,6 @@ msgstr "Gönderi sabitlemesi kaldırıldı"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Gönderiler metinleri, etiketleri veya ikisiyle beraber sessize alınabi
msgid "Posts hidden"
msgstr "Gönderiler gizlendi"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr "Gönderiler, Yanıtlar"
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr "Muhtemelen yanıltıcı bağlantı"
@@ -8528,6 +8719,7 @@ msgstr "Yeniden bağlanmak için basın"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Yeniden denemek için basın"
@@ -8536,7 +8728,7 @@ msgstr "Yeniden denemek için basın"
msgid "Press to view followers of this account that you also follow"
msgstr "Bu hesabın sizin de takip ettiğiniz takipçilerini görmek için basın"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr "Önizleme"
@@ -8559,21 +8751,20 @@ msgstr "Gizlilik"
msgid "Privacy and security"
msgstr "Gizlilik ve güvenlik"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Gizlilik ve Güvenlik"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr "Gizlilik ve Güvenlik ayarları"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Gizlilik Politikası"
msgid "Privacy violation of a minor"
msgstr "Bir küçüğün gizliliğini ihlal"
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr "GIF işleniyor..."
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Video işleniyor..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "İşleniyor..."
@@ -8602,8 +8793,8 @@ msgstr "İşleniyor..."
msgid "profile"
msgstr "profil"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,40 +8826,40 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
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:1672
+#: src/view/com/composer/Composer.tsx:1721
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:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Yanıtları yayınla"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Yanıtı yayınla"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr "Anında"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr "Anında bildirimler"
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
-msgstr "Anında, Herkes"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
+msgstr "Anlık, herkes"
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
-msgstr "Anında, Takip ettikleriniz"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
+msgstr "Anlık, takip ettikleriniz"
#: src/components/StarterPack/QrCodeDialog.tsx:140
msgid "QR code copied to your clipboard!"
@@ -8682,10 +8873,6 @@ msgstr "Karekod indirildi!"
msgid "QR code saved to your camera roll!"
msgstr "Karekod fotoğraflarınıza kaydedildi!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr "Alıntı bildirimleri"
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Alıntı gönderilen devre dışı bırakıldı"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Alıntılar"
@@ -8733,11 +8920,11 @@ msgstr "İşlem sıklığı sınırı aşıldı. Lütfen daha sonra tekrar deney
msgid "Re-attach quote"
msgstr "Alıntıyı yeniden iliştir"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr "Davetiye bağlantısını yeniden etkinleştir"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr "Bağlantıyı yeniden etkinleştir"
@@ -8745,8 +8932,8 @@ msgstr "Bağlantıyı yeniden etkinleştir"
msgid "React with {emoji}"
msgstr "{emoji} ile tepki ver"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr "Tepkiler"
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr "arama filtrelerinin nasıl kullanılacağını okuyun"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Blog gönderisini oku"
@@ -8812,11 +8999,11 @@ msgstr "Gerçek insanlar."
msgid "Reason for appeal"
msgstr "İtiraz gerekçesi"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr "Uygulama içi bildirimleri al"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr "Anında bildirimleri al"
@@ -8841,6 +9028,10 @@ msgstr "Öneriler"
msgid "Reconnect"
msgstr "Yeniden bağlan"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Reddet"
msgid "Reject chat request"
msgstr "Sohbet isteğini reddet"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Yazışmaları yeniden yükle"
@@ -8896,17 +9087,17 @@ msgstr "Hesabı kaldır"
msgid "Remove all contacts"
msgstr "Tüm bağlantıları kaldır"
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Eki kaldır"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Avatarı kaldır"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Kapağı Kaldır"
@@ -8914,8 +9105,9 @@ msgstr "Kapağı Kaldır"
msgid "Remove caption file"
msgstr "Altyazı dosyasını kaldır"
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Gömülü içeriği kaldır"
@@ -8933,8 +9125,8 @@ msgstr "Akış kaldırılsın mı?"
msgid "Remove from chat"
msgstr "Sohbetten çıkar"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr "Kayıtlı gönderilerden çıkar"
msgid "Remove from your feeds?"
msgstr "Akışlarınızdan kaldırılsın mı?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Resmi kaldır"
@@ -9009,11 +9201,11 @@ msgstr "Doğrulamayı kaldır"
msgid "Remove your verification for this account?"
msgstr "Bu hesap için doğrulamanızı kaldıracak mısınız?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Yazar tarafından kaldırılmış"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Sizin tarafınızdan kaldırılmış"
@@ -9035,7 +9227,7 @@ msgstr "Kayıtlı gönderilerden çıkarıldı"
msgid "Removed from starter pack"
msgstr "Başlangıç paketinden çıkartıldı"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr "Size yanıt"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Yanıtlar"
@@ -9104,14 +9295,14 @@ msgstr "Yanıtlara kapalı"
msgid "Replies to this post are disabled."
msgstr "Bu gönderi yanıtlara kapalı."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Yanıtla"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Yanıtla ({0, plural, other {# yanıt}})"
@@ -9125,10 +9316,6 @@ msgstr "Konu Yazarı Tarafından Gizlenmiş Yanıt"
msgid "Reply Hidden by You"
msgstr "Yanıt Tarafınızdan Gizlenmiş"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr "Yanıt bildirimlerini al"
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Yanıt ayarları konu yazarı tarafından belirlenir"
@@ -9146,9 +9333,9 @@ msgstr "Yanıt görünürlüğü güncellendi"
msgid "Reply was successfully hidden"
msgstr "Yanıt başarıyla gizlendi"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Raporla"
@@ -9164,13 +9351,13 @@ msgstr "Hesabı raporla"
msgid "Report conversation"
msgstr "Yazışmayı raporla"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Rapor diyaloğu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Akışı raporla"
@@ -9179,7 +9366,7 @@ msgstr "Akışı raporla"
msgid "Report list"
msgstr "Listeyi raporla"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Mesajı raporla"
@@ -9199,8 +9386,8 @@ msgstr "Başlangıç paketini raporla"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Rapor yollandı"
@@ -9213,7 +9400,7 @@ msgstr "Bu yazışmayı raporla"
msgid "Report this feed"
msgstr "Bu akışı raporla"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr "Bu grup sohbetini raporla"
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Bu listeyi raporla"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr "Bu canlı yayını raporla"
@@ -9256,10 +9443,6 @@ msgstr "Yeniden gönder"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Yeniden gönder ({0, plural, other {# defa yeniden gönderilmiş}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr "Yeniden gönderi bildirimleri"
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Siz yeniden göndermişsiniz"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr "Yeniden gönderiler"
@@ -9292,31 +9475,54 @@ msgid "Reposts of this post"
msgstr "Bu gönderinin yeniden gönderilmesi"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr "Yeniden gönderilerinizin yeniden gönderileri"
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
-msgstr "Yeniden gönderilerinizin yeniden gönderilme bildirimleri"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr "Grup sohbetine erişim talep et"
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
+msgstr "Talep onaylandı."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
#: src/screens/Settings/components/ChangePasswordDialog.tsx:232
msgid "Request code"
msgstr "Kod iste"
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr "Talep gözard edildi."
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr "Katılmayı talep et"
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr "Talepler"
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr "Katılma talepleri"
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Göndermeden önce alternatif metin gerektir"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Hesabınıza giriş yapmak için e-postanıza onay kodu yollanmasını gerekli kıl."
@@ -9328,7 +9534,11 @@ msgstr "Bu sağlayıcı için gereklidir"
msgid "Required in your region"
msgstr "Bölgenizde zorunludur"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr "Talebi geri çek"
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr "Yeniden gönder"
@@ -9393,15 +9603,16 @@ msgstr "Son hataya neden olan son eylemi tekrarlar"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Son hataya neden olan son eylemi tekrarlar"
msgid "Retry"
msgstr "Tekrar dene"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Rapor seçeneklerini yüklemeyi tekrar dene"
@@ -9426,14 +9637,14 @@ msgstr "Rapor seçeneklerini yüklemeyi tekrar dene"
msgid "Return to previous page"
msgstr "Önceki sayfaya dön"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Ana sayfaya döner"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Önceki sayfaya döner"
@@ -9454,7 +9665,7 @@ msgstr "Üzgün GIFler"
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr "Doğum tarihini kaydet"
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Değişiklikleri kaydet"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr "Değişiklikler kaydedilsin mi?"
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr "Taslağı kaydet"
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr "Taslak kaydedilsin mi?"
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "QR kodu kaydet"
msgid "Save these options for next time"
msgstr "Bu seçimleri sonrası için sakla"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Akışlarıma kaydet"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr "Kayıtlı"
msgid "Saved Feeds"
msgstr "Kayıtlı Akışlar"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr "Kayıtlı Gönderiler"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Akışlarınıza kaydedildi"
@@ -9551,8 +9764,8 @@ msgstr "Akışlarınıza kaydedildi"
msgid "Say hello!"
msgstr "Merhaba de!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr "Birine selam deyin"
@@ -9576,18 +9789,18 @@ msgstr "Sağa kaydır"
msgid "Scroll to top"
msgstr "Başa kaydır"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Ara"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "@{0} gönderilerini ara"
@@ -9667,7 +9880,7 @@ msgstr "Gönderilerimi ara"
msgid "Search posts"
msgstr "Gönderileri ara"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Profilleri ara"
msgid "Search..."
msgstr "Ara..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Profilleri arar"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr "Güvenlik adımı gerekiyor"
@@ -9759,7 +9972,7 @@ msgstr "{langName} dilini seç"
msgid "Select a color"
msgstr "Renk seç"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr "Bir gerekçe seçiniz"
@@ -9828,7 +10041,7 @@ msgstr "GIF Seç"
msgid "Select GIF \"{0}\""
msgstr "GIF Seç \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr "Grup sohbeti üyelerini seçin"
@@ -9850,7 +10063,7 @@ msgstr "Dil seç..."
msgid "Select languages"
msgstr "Dilleri seç"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Moderasyon hizmeti seçin"
@@ -9904,11 +10117,11 @@ msgstr "Aşağıdaki seçeneklerden ilgi alanlarınızı seçin"
msgid "Select your preferred language for translations in your feed."
msgstr "Akışlarınızdaki çeviriler için tercih ettiğiniz dili seçin."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr "Tercih ettiğiniz bildirim kanallarını seçiniz"
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr "Farklı türlerde medya seçimi desteklenmemektedir."
@@ -9921,9 +10134,9 @@ msgstr "Kendine zarar verme veya tehlikeli davranışlar"
msgid "Send code"
msgstr "Kodu yolla"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "E-posta gönder"
@@ -9939,7 +10152,7 @@ msgstr "Hata raporu yolla"
msgid "Send feedback"
msgstr "Geribildirim gönder"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Mesaj gönder"
@@ -9952,7 +10165,7 @@ msgstr "Gönderiyi {name} kullanıcısına gönder"
msgid "Send post to..."
msgstr "Şuraya gönder..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Raporu şuraya gönder {title}"
@@ -9960,7 +10173,7 @@ msgstr "Raporu şuraya gönder {title}"
msgid "Send the message from your phone"
msgstr "Mesajı telefonunuzdan yollayın"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Doğrudan mesaj yoluyla gönder"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr "{0} saatinde yollandı"
@@ -10015,14 +10228,14 @@ msgstr "Doğum tarihinizi aşağıda belirlediğinizde sizi en kısa zamanda gö
msgid "Sets email for password reset"
msgstr "Şifre sıfırlama için e-posta ayarlar"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Ayarlar"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr "Başkalarının etkinliklerine dair ayarlar"
@@ -10030,39 +10243,39 @@ msgstr "Başkalarının etkinliklerine dair ayarlar"
msgid "Settings for allowing others to be notified of your posts"
msgstr "Gönderilerinizden başkalarının bildirim almasına izin verme ayarları"
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr "Beğeni bildirimi ayarları"
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr "Bahsetme bildirimleri ayarları"
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr "Yeni takipçi bildirimleri ayarları"
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr "Geri kalan bildirimlerin ayarları"
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr "Yeniden gönderilerinizin beğenilme bildirimleri ayarları"
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr "Yeniden gönderilerinizin yeniden gönderim bildirimleri ayarları"
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr "Alıntı bildirimleri ayarları"
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr "Yanıt bildirimleri ayarları"
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr "Yeniden gönderim bildirimleri ayarları"
@@ -10079,10 +10292,12 @@ msgstr "Cinsel aktivite veya erotik çıplaklık."
msgid "Sexually Suggestive"
msgstr "Cinsel Çağrışımlı"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr "Yazar DID'ini paylaş"
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr "Görseli paylaş"
@@ -10124,7 +10339,7 @@ msgstr "Gönderinin at:// URI'sini paylaş"
msgid "Share QR code"
msgstr "QR kod paylaş"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Bu akışı paylaş"
@@ -10151,7 +10366,7 @@ msgstr "Paylaş..."
msgid "Share your contacts to find friends"
msgstr "Arkadaşlarınızı bulmak için bağlantılarınızı paylaşın"
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Paylaşılan Tercihler Test Edicisi"
@@ -10167,16 +10382,16 @@ msgstr "Alt metni göster"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Yine de göster"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr "Otomasyon işaretini göster"
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Uyarı göster ve akışlardan filtrele"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr "Canlı yayına çıktığınızı gösterin"
@@ -10297,15 +10512,17 @@ msgstr "İçeriği gösterir"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Giriş yap veya bir hesap oluştur"
msgid "Sign in or create your account to join the conversation!"
msgstr "Sohbete katılmak için giriş yapın veya hesabınızı oluşturun!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr "Daveti kabul etmek için giriş yapın."
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Listelenmeyen bir hesaba giriş yap"
@@ -10337,6 +10558,10 @@ msgstr "Listelenmeyen bir hesaba giriş yap"
msgid "Sign in to Bluesky or create a new account"
msgstr "Bluesky'da oturum aç veya yeni bir üyelik oluştur"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr "Bu grup sohbetine erişim talep etmek için giriş yapın."
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr "Gönderiyi görmek için giriş yap"
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Çıkış yap"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Çıkış Yap"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Çıkış yap?"
@@ -10391,7 +10616,7 @@ msgstr "Atla"
msgid "Skip contact sharing and continue to the app"
msgstr "Bağlantıları paylaşmayı atla ve uygulamaya devam et"
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr "Boş gönderiler atlansın mı?"
@@ -10405,7 +10630,7 @@ msgstr "Girizgahı atla ve hesabını kullanmaya başla"
msgid "Skip to next step"
msgstr "Sonraki adıma atla"
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr "slayt"
@@ -10413,7 +10638,7 @@ msgstr "slayt"
msgid "Smaller"
msgstr "Daha küçük"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Hatırlatmayı erteler"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr "Biri gruptan çıktı"
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Birisi {0} tepkisi verdi"
@@ -10487,17 +10712,22 @@ msgstr "Biri çıkarıldı"
msgid "Someone was removed from the group"
msgstr "Biri gruptan çıkarıldı"
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Raporlamaya çalıştığınız verilerde bir sorun var. Lütfen destekle iletişime geçin."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Bir şeyler ters gitti"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Bir şeyler ters gitti!"
msgid "Something went wrong. Please try again in a moment."
msgstr "Bir şeyler ters gitti. Lütfen biraz sonra tekrar deneyin."
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Bir şeyler ters gitti. Lütfen tekrar deneyin."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Bir sorun mu var? Bize bildirin."
@@ -10568,7 +10798,7 @@ msgstr "Spor"
msgid "Start a conversation, and it will appear here."
msgstr "Bir yazışma başlatırsanız burada görünecektir."
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Yeni bir sohbet başlat"
@@ -10582,17 +10812,17 @@ msgstr "Kişileri eklemeye başla"
msgid "Start adding people!"
msgstr "Kişileri eklemeye başla!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr "Sohbete başla"
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "{displayName} ile sohbet başlat"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Başlangıç Paketi"
@@ -10654,12 +10884,12 @@ msgstr "Depolama temizlendi, şimdi uygulamayı yeniden başlatmanız gerekiyor.
msgid "Stored as part of a secure code for matching with others"
msgstr "Başkalarıyla eşleşme amaçlı güvenli bir kodun parçası olarak depolanır"
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Storybook"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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'te yayın mı yapıyorsunuz? Canlı durumunuzu Bluesky'da değiştirerek avatarınıza bir rozet ekleyin. Ona dokunanlar doğrudan yayınınıza gideceklerdir."
@@ -10671,8 +10901,8 @@ msgstr "Twitch'te yayın mı yapıyorsunuz? Canlı durumunuzu Bluesky'da değiş
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Yolla"
@@ -10684,9 +10914,9 @@ msgstr "İtirazı yolla"
msgid "Submit Appeal"
msgstr "İtirazı Yolla"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Raporu yolla"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Abone ol"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr "{0} yayıncısına abone ol"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr "{0} kaynağının {publicationTitle} yayınına abone ol"
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr "Başarılı"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Başarılı!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr "Grup sohbetine başarıyla katıldınız!"
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr "Başarıyla doğrulandı"
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr "Önerilen"
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr "Gün batımı"
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,20 +11014,20 @@ msgstr "Destek"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr "Bu özellik ülkenizde henüz etkin değil! Lütfen daha sonra tekrar kontrol edin."
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
-msgstr ""
+msgstr "Askıya alınmış hesaplar grup sohbetlerine katılamaz."
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
-msgstr ""
+msgstr "Askıya alınmış hesaplar bu sohbete katılamaz."
#: src/components/dialogs/SwitchAccount.tsx:47
#: src/components/dialogs/SwitchAccount.tsx:50
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Hesap değiştir"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr "Hesap değiştir"
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr "{0} hesabına geç"
@@ -10828,7 +11062,7 @@ msgstr "Yalnızca etiketler"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr "Bluesky'ın GPS konumunuza erişmesine izin vermek için aşağıya dokunun. Sonrasında bu veriyi bölgenizde erişilebilir içerik ve özelliklerin daha isabetli belirlenebilmesi için kullanacağız."
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr "Ayrıntılar için dokunun"
@@ -10854,33 +11088,51 @@ msgstr "Bu güncellemeleri anladığınızı ve onayladığınızı kabul etmek
msgid "Tap to close context menu"
msgstr "Bağlam menüsünü kapatmak için dokunun"
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Gizlemek için dokunun"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr "Geri almak için dokunun"
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr "{0} tepkinizi geri almak için dokunun"
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr "Yeniden denemek için dokunun"
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr "{0} tepkilerini görmek için dokunun"
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr "Tüm tepkileri göstermek için dokunun"
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr "Tepkileri görmek için dokunun"
@@ -10924,7 +11176,7 @@ msgstr "Şartlar"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Metin ve etiketler"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Metin giriş alanı"
@@ -11049,6 +11301,11 @@ msgstr "Aşağıdaki ayarlar yeni gönderi oluştururken varsayılan olarak kull
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr "Bölgenizdeki yasalar belirli özelliklere erişebilmeniz için bir yetişkin olduğunuzu doğrulamanızı gerektirmektedir. Daha fazla bilgi edinmek için dokunun."
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr "Üye sınırına ulaşıldı."
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr "Yanıtlamakta olduğunuz gönderi, yazarı tarafından {suggestedLanguageName} dilinde işaretlenmiş. Siz de <0>{suggestedLanguageName}0> dilinde yanıtlamak ister misiniz?"
@@ -11057,10 +11314,10 @@ msgstr "Yanıtlamakta olduğunuz gönderi, yazarı tarafından {suggestedLanguag
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Gizlilik Politikası <0/> konumuna taşındı"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
-msgstr "Seçtiğiniz video {videoSize} MB'tan büyük. Lütfen daha küçük bir dosyayla tekrar deneyin."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
+msgstr "Seçili video {VIDEO_MAX_SIZE_MB} MB'tan büyük. Lütfen daha küçük bir dosyayla yeniden deneyin."
#: src/lib/hooks/useCleanError.ts:41
#: src/lib/strings/errors.ts:19
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr "Bu grup sohbeti için bir davetiye bağlantısı yok."
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr "GIFler yüklenemedi. Bağlantınızı kontrol edin ve tekrar deneyin."
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr "İnternet bağlantınızla ilgili bir problem oldu, lütfen tekrar deneyin"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr "İnternet bağlantınızla ilgili bir problem oldu, lütfen tekrar deney
msgid "There was an issue contacting the server"
msgstr "Sunucuya ulaşma konusunda bir sorun oluştu"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Sunucuya bağlanırken bir sorun oldu, lütfen internet bağlantınızı kontrol edin ve tekrar deneyin."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Bildirimleri almakta bir sorun oluştu. Tekrar denemek için buraya dokunun."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Gönderileri almakta bir sorun oluştu. Tekrar denemek için buraya dokunun."
@@ -11161,7 +11420,7 @@ msgstr "Servis bilginizi getirirken bir sorun oldu"
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Bu akışı kaldırırken bir sorun oldu. Lütfen internet bağlantınızı kontrol edin ve tekrar deneyin."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Bu itiraz <0>{sourceName}0> hesabına yollanacaktır."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Bu itiraz Bluesky'ın moderasyon hizmetine gönderilecektir."
@@ -11263,7 +11522,7 @@ msgstr "Bu itiraz Bluesky'ın moderasyon hizmetine gönderilecektir."
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr "Bu içeriğin yazarı, gönderilerini sadece giriş yapmış kişilerin görebilmesini tercih etmiş."
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr "Bu düğme başkalarının Germ DM uygulaması üzerinden size mesaj yollayabilmesini sağlar. Görünürlüğünü Germ DM uygulamasından yönetebilir veya aşağıdaki düğmeye tıklayarak Germ DM'in Bluesky hesabınızla bağlantısını tamamen kesebilirsiniz."
@@ -11271,7 +11530,12 @@ msgstr "Bu düğme başkalarının Germ DM uygulaması üzerinden size mesaj yol
msgid "This chat has ended"
msgstr "Bu sohbet sona erdi"
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr "Bu sohbet dolu"
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr "Bu sohbet kilitli"
@@ -11310,7 +11574,11 @@ msgstr "Bu içerik, içerikte yer alan kullanıcılardan biri diğerini engelled
msgid "This content is not viewable without a Bluesky account."
msgstr "Bu içerik, bir Bluesky hesabı olmadan görüntülenemez."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr "Bu yazışma kilitli."
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
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"
@@ -11318,7 +11586,7 @@ msgstr "Bu yazışmanın yapıldığı hesap ya silinmiş ya da devre dışı b
msgid "This draft will be permanently deleted."
msgstr "Bu taslak kalıcı olarak silinecektir."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr "Bu e-posta zaten hesabınızla ilişkili."
@@ -11360,7 +11628,7 @@ msgstr "Bu akış çevrimiçi değil. Onun yerine size keşif akışı <0>Discov
msgid "This handle is reserved. Please try a different one."
msgstr "Bu kullanıcı adı kullanılamaz. Lütfen başka bir tane deneyin."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr "Bu görsel kullanılamaz. Farklı bir format deneyin, .jpg ya da .png gibi."
@@ -11368,6 +11636,18 @@ msgstr "Bu görsel kullanılamaz. Farklı bir format deneyin, .jpg ya da .png gi
msgid "This information is private and not shared with other users."
msgstr "Bu bilgi gizlidir ve diğer kullanıcılarla paylaşılmaz."
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr "Bu davetiye bağlantısı devre dışı bırakıldı."
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr "Bu davetiye bağlantısının süresi dolmuş"
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr "Bu davetiye bağlantısı geçersiz"
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr "Bu boş bir durum"
@@ -11377,7 +11657,7 @@ msgstr "Bu boş bir durum"
msgid "This is not a valid link"
msgstr "Bu bağlantı geçersiz"
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr "Bu işaret herkese bu hesabın otomasyon içerdiğini belirtir. Bu işaret açıldığında o hesabın profil ve gönderilerinde kullanıcı adının yanında belirir. İstendiği zaman açılıp kapatılabilir."
@@ -11410,13 +11690,13 @@ msgstr "Sizin tarafınızdan oluşturulan bu liste, adında ya da açıklamasın
msgid "This list is empty."
msgstr "Bu liste boş."
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr "Bu mesaj gizli çünkü bu kullanıcı sizi engelliyor."
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr "Bu mesaj gizli çünkü bu kullanıcıyı engelliyorsunuz."
@@ -11454,7 +11734,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:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Bu gönderinin yazarı alıntılanmasını engellemiş."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr "Bu yanıt konunuzun altındaki gizli bir bölüme sıralanacaktır ve ona gelen yanıtlar hem sizin hem de başkaları için sessize alınacaktır."
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr "Bu ekran sadece grup yazışmaları için vardır."
@@ -11494,18 +11775,18 @@ msgstr "Bir görünür adı olmadığından bu kullanıcı doğrulanamaz."
msgid "This user doesn't have any followers."
msgstr "Bu kullanıcının hiç takipçisi yok."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
-msgstr ""
+msgstr "Bu kullanıcı sizi engellediğinden kendisiyle mesajlaşılamaz."
#: src/components/moderation/ModerationDetailsDialog.tsx:83
#: src/lib/moderation/useModerationCauseDescription.ts:76
msgid "This user has blocked you. You cannot view their content."
msgstr "Bu kullanıcı sizi engelledi. İçeriklerini göremezsiniz."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
-msgstr ""
+msgstr "Bu kullanıcı sohbeti devre dışı bıraktığından kendisiyle mesajlaşılamaz."
#: src/lib/moderation/useGlobalLabelStrings.ts:30
msgid "This user has requested that their content only be shown to signed-in users."
@@ -11574,7 +11855,7 @@ msgstr "Konu Tercihleri"
msgid "Threaded"
msgstr "Dallanmalı"
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Konu Tercihleri"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "E-posta iki adımlı doğrulamasını kapatmak için lütfen e-postanıza erişiminizi onaylayın."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr "E-posta iki adımlı doğrulama yöntemini kapatmak için lütfen <0>{0}0> adresine erişiminizi doğrulayın"
@@ -11646,12 +11927,12 @@ msgstr "En öne çıkan"
msgid "Top replies first"
msgstr "Önce en öne çıkan yanıtlar"
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr "Konu başlığı"
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr "Gündemdeki Videolar"
msgid "Trolling"
msgstr "Trolleme"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr "Güven ilişkilerden, topluluklardan ve paylaşılan bağlamdan gelir. Dolayısıyla <0>güvenilir doğrulayıcıları0> yani direkt doğrulama yapabilen kurumları devreye alıyoruz."
@@ -11763,13 +12044,17 @@ msgstr "Hizmetinize ulaşılamıyor. Lütfen internet bağlantınızı kontrol e
msgid "Unable to delete"
msgstr "Silinemedi"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
-msgid "Unable to find a selected recipient."
-msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr "Katılım talepleri çekilemedi."
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
+msgid "Unable to find a selected recipient."
+msgstr "Seçilmiş alıcılardan biri bulunamadı."
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
-msgstr ""
+msgstr "Seçilmiş alıcı bulunamadı."
#: src/lib/strings/errors.ts:43
msgid "Unable to resolve handle"
@@ -11791,7 +12076,7 @@ msgstr "Erişilmez"
msgid "Unavailable feed information"
msgstr "Erişilemeyen akış bilgisi"
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr "Listeden engeli kaldır"
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr "Geri al"
@@ -11872,7 +12157,7 @@ msgstr "Hesabı takibi bırak"
msgid "Unfollows the user"
msgstr "Kullanıcıyı takipten çıkarır"
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr "Maalesef abone olduğunuz işaretleyicilerin hiçbiri bu rapor türünü desteklemiyor."
@@ -11904,13 +12189,13 @@ msgstr "Etiketlenmemiş yetişkin içerik"
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr "Etiketlenmemiş, istismarcı veya rızasız yetişkin içerik"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr "Beğeniyi kaldır ({0, plural, other {# beğeni}})"
@@ -11918,7 +12203,7 @@ msgstr "Beğeniyi kaldır ({0, plural, other {# beğeni}})"
msgid "Unlock chat"
msgstr "Sohbet kilidini aç"
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr "Bu grup sohbetinin kilidini aç"
@@ -11955,7 +12240,7 @@ msgstr "Yazışmayı sessizden çıkar"
msgid "Unmute list"
msgstr "Listeyi sessizden çıkar"
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr "Bu grup sohbetini sessizden çıkar"
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Sabitlemeyi kaldır"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr "Akışı sabitlemeyi kaldır"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Ana sayfadan sabitlemeyi kaldır"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Moderasyon listesini sabitlemeyi kaldır"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr "{0} akışının ana sayfadan sabitlemesi kaldırıldı"
@@ -12030,11 +12315,11 @@ msgstr "Bu işaretleyicinin aboneliğinden ayrıl"
msgid "Unsubscribed from list"
msgstr "Liste aboneliğinden çıktınız"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr "Desteklenmeyen pano içeriği"
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr "Desteklenmeyen video türü: {mimeType}"
@@ -12047,16 +12332,20 @@ msgstr "Güncelle"
msgid "Update <0>{displayName}0> in Lists"
msgstr "<0>{displayName}0> kullanıcısının listelerini düzenleyin"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr "E-postayı güncelle"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr "Davetiye bağlantısını güncelle"
@@ -12065,11 +12354,19 @@ msgstr "Davetiye bağlantısını güncelle"
msgid "Update to {domain}"
msgstr "{domain} adresine güncelle"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr "Katılmak için uygulamanızı son sürüme güncelleyin!"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr "E-postanızı güncelleyin"
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Yanıt görünürlüğünü güncelleme başarısız oldu"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Bunun yerine bir görsel ekle"
@@ -12098,39 +12395,40 @@ msgstr "Bunun yerine bir görsel ekle"
msgid "Upload a text file to:"
msgstr "Bir metin dosyası yükleyin:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Kameradan Yükle"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Dosyalardan Yükle"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Kütüphaneden Yükle"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr "GIF yükleniyor..."
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Görseller yükleniyor..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Web bağlantısının görseli gönderiliyor..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Video yükleniyor..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr "kullanıcı"
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr "Kullanıcı engellendi"
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "{0} tarafından oluşturulan kullanıcı listesi"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr "{0} Kullanıcı Listesi"
@@ -12255,12 +12553,12 @@ msgstr "<0>@{0}0> tarafından takip edilen kullanıcılar"
msgid "users following <0>@{0}0>"
msgstr "<0>@{0}0> kullanıcısını takip edenler"
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr "Takip ettiğim kullanıcılar"
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr "Takip ettiğim kullanıcılar"
@@ -12277,7 +12575,7 @@ msgstr "Doğrulama başarısız, lütfen tekrar deneyin."
msgid "Verification settings"
msgstr "Doğrulama ayarları"
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr "Doğrulama Ayarları"
@@ -12304,8 +12602,8 @@ msgstr "Tekrar onayla"
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr "Kodu doğrula"
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "DNS Kaydını Doğrula"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr "E-posta kodunu doğrulayın"
@@ -12349,7 +12647,7 @@ msgstr "Bu hesap doğrulansın mı?"
msgid "Verify your age"
msgstr "Yaşınızı onaylayın"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr "Sürüm {0}"
msgid "Video"
msgstr "Video"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Video işlenemedi"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr "Video Akışı"
@@ -12419,7 +12717,7 @@ msgstr "Video bulunamadı."
msgid "Video settings"
msgstr "Video ayarları"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Video yüklendi"
@@ -12432,18 +12730,18 @@ msgstr "Video: {0}"
msgid "Videos"
msgstr "Videolar"
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr "Videolar 3 dakikadan kısa olmalıdır."
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr "Göz at"
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr "{0} yayıncısını görüntüle"
@@ -12455,7 +12753,7 @@ msgstr "{0}'ın avatarını görüntüle"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "{0} kullanıcısının profilini görüntüle"
msgid "View {0}’s profile"
msgstr "{0} kullanıcısının profilini görüntüle"
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr "{displayName} profilini görüntüle"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr "{publicationTitle} yayınını görüntüle"
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr "@{0} profiline bak"
@@ -12503,10 +12801,18 @@ msgstr "Ayrıntıları görüntüle"
msgid "View full thread"
msgstr "Tam konuyu görüntüle"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr "Gelen grup sohbet taleplerini göster"
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Bu işaretler hakkında bilgi al"
@@ -12522,7 +12828,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:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr "Gönderiyi göster"
@@ -12539,10 +12845,10 @@ msgstr "Profili görüntüle"
msgid "View profile banner"
msgstr "Profil kapağını göster"
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr "Yayını görüntüle"
@@ -12550,7 +12856,7 @@ msgstr "Yayını görüntüle"
msgid "View the avatar"
msgstr "Avatarı görüntüle"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr "Bu grup sohbeti için davetiye bağlantısını görüntüle"
@@ -12563,7 +12869,7 @@ msgstr "@{0} tarafından sağlanan işaretleme hizmetini gör"
msgid "View this user's verifications"
msgstr "Bu kullanıcının doğrulamalarını görüntüle"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Bu akışı beğenen kullanıcıları görün"
@@ -12596,8 +12902,8 @@ msgstr "Sessize aldığınız hesapları görün"
msgid "View your verifications"
msgstr "Doğrulamalarınızı görüntüleyin"
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr "Görseli tam boy gösterir"
@@ -12640,8 +12946,8 @@ msgstr "İçeriği uyar"
msgid "Warn content and filter from feeds"
msgstr "İçeriği uyar ve akışlarda filtrele"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr "Şimdi izle"
@@ -12665,10 +12971,14 @@ msgstr "Bu etiket için herhangi bir sonuç bulamadık."
msgid "We couldn't find any results for that topic."
msgstr "Bu konu başlığı için bir sonuç bulamadık."
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Bu yazışmayı yükleyemedik"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr "Bu yazışmanın taleplerini yükleyemedik"
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr "Bu yazışmanın ayarlarını yükleyemedik"
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr "En az iki ilgi alanı seçmenizi öneririz."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "<0>{0}0> adresine bir bağlantı içeren bir e-posta yolladık. Lütfen e-posta doğrulama sürecini tamamlamak için o bağlantıya tıklayın."
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Video yüklemenize izin verilip verilmediğini belirleyemedik. Lütfen tekrar deneyin."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr "Arkadaşlarınızı bulduğumuzda size bildireceğiz."
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr "<0>{0}0> adresine bir bağlantı içeren bir e-posta yollayacağız. Lütfen e-posta doğrulama sürecini tamamlamak için o bağlantıya tıklayın."
@@ -12779,12 +13089,12 @@ msgstr "Hesabınızın yaş güvencesi işlemini başlatmakta sıkıntı yaşıy
msgid "We're having network issues, try again"
msgstr "Ağ sorunları yaşıyoruz, tekrar deneyin"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr "Ağ sorunları yaşıyoruz, tekrar deneyin"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr "Bluesky'da yeni bir doğrulama katmanı sunuyoruz - kolay görülebilen bir onay işareti."
@@ -12814,12 +13124,12 @@ msgstr "Maalesef arama işleminiz tamamlanamadı. Lütfen birkaç dakika içinde
msgid "We're sorry, you cannot access this screen at this time."
msgstr "Üzgünüz, şu anda bu ekrana erişemezsiniz."
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Üzgünüz! Yanıtladığınız gönderi silindi."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Üzgünüz! Aradığınız sayfayı bulamıyoruz."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Başlangıç paketinize ne ad vermek istersiniz?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Nasılsınız?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr "Bir onay işaretine dokunduğunuzda hangi kuruluşların doğrulama verdiğini göreceksiniz."
@@ -12878,7 +13188,7 @@ msgstr "Bir onay işaretine dokunduğunuzda hangi kuruluşların doğrulama verd
msgid "Who can interact with this post?"
msgstr "Bu gönderiyle kim etkileşime geçebilir?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr "Kim bu grup sohbetine katılabilir ve nasıl"
@@ -12887,13 +13197,13 @@ msgstr "Kim bu grup sohbetine katılabilir ve nasıl"
msgid "Who can reply"
msgstr "Kimler yanıtlayabilir"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr "Kim doğrulayabilir?"
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Ay ay!"
@@ -12939,19 +13249,19 @@ msgstr "Bu başlangıç paketi neden gözden geçirilmeli?"
msgid "Why should this user be reviewed?"
msgstr "Bu kullanıcı neden gözden geçirilmeli?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
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/components/dms/AfterReportConversationDialog.tsx:47
msgid "Would you like to block this user and/or leave this conversation?"
-msgstr ""
+msgstr "Bu kullanıcıyı engellemek ve/veya bu yazışmadan ayrılmak istiyor musunuz?"
#: src/view/com/composer/drafts/DraftsButton.tsx:110
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:1320
+#: src/view/com/composer/Composer.tsx:1373
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?"
@@ -12960,12 +13270,12 @@ msgstr "Bunu sonradan düzenlemek için taslak olarak kaydetmek ister misiniz?"
msgid "Write a post"
msgstr "Bir gönderi yaz"
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Gönderi yaz"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Yanıtınızı yazın"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr "Sunucudan yanlış DID döndürüldü. Alınan: {0}"
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr "Yanlış yazışma tipi"
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr "Bluesky'a yasal olarak sizin yaşınızı uygulamaya erişmeden önce onaylamamızı gerektiren bir bölgeden ulaşıyorsunuz."
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr "{0} kişisini engelliyorsunuz"
@@ -13068,7 +13379,7 @@ msgstr "Canlı yayındasınız"
msgid "You are no longer live"
msgstr "Artık canlı yayında değilsiniz"
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Video yükleme izniniz yok."
@@ -13117,12 +13428,12 @@ msgstr "Her zaman vazgeçip verinizi silebilirsiniz"
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr "Uygulama içindeki sohbet ayarlarından sohbet bildirimlerinin sesli olup olmayacağını seçebilirsiniz"
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Hangi ayarı seçerseniz seçin devam eden yazışmaları sürdürebilirsiniz."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 "Artık belirli kişiler gönderi paylaştığında bildirim almayı seçebilirsiniz. Güncellemelerini zamanlı almak istediğiniz biri varsa, profiline gidin ve takip et düğmesinin yanındaki yeni zil simgesini bulun."
@@ -13131,7 +13442,12 @@ 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/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr "Yalnızca 1000 karaktere kadar taslak kaydedebilirsiniz."
@@ -13139,11 +13455,11 @@ msgstr "Yalnızca 1000 karaktere kadar taslak kaydedebilirsiniz."
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr "Yalnızca 1000 karaktere kadar olan taslaklar kaydedilebilir. Taslaklarınıza bakmadan önce bu düzenlediğiniz gönderinin silinmesine razı mısınız?"
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
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:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr "Tek seferde sadece tek bir video seçebilirsiniz."
@@ -13155,10 +13471,10 @@ msgstr "Giriş yapmaya devam etmek için hesabınızı yeniden etkinleştirebili
msgid "You can read chat history but can’t send new messages."
msgstr "Sohbet geçmişini okuyabilirsiniz ancak yeni mesaj gönderemezsiniz."
-#. 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: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."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
+msgstr ""
#: src/components/interstitials/Trending.tsx:132
#: src/components/interstitials/TrendingVideos.tsx:138
@@ -13166,9 +13482,9 @@ msgstr "Toplamda {MAX_IMAGES, plural, other {# adede kadar}} görsel seçebilirs
msgid "You can update this later from your settings."
msgstr "Bunu daha sonra ayarlarınızdan güncelleyebilirsiniz."
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
-msgstr ""
+msgstr "Henüz bir grup sohbeti oluşturamazsınız."
#: src/lib/hooks/useCleanError.ts:54
#: src/lib/strings/errors.ts:28
@@ -13197,6 +13513,10 @@ msgstr "Kaydedilmiş akışınız yok."
msgid "You got here first"
msgstr "İlk siz geldiniz"
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ 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:1315
+#: src/view/com/composer/Composer.tsx:1368
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?"
@@ -13336,7 +13656,7 @@ msgstr "Başlangıç paketi oluşturmak için en az yedi kişiyi takip etm
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:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr "Medya galerinize erişim izni vermeniz gerekmektedir."
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr "Şimdi uygulamayı yeniden başlatmak isteyebilirsiniz."
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr "{0} tepkisi verdiniz"
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr "Doğum tarihinizi yakın zamanda değiştirdiniz"
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Tüm hesaplarınızdan çıkış yapacaksınız."
@@ -13390,7 +13710,7 @@ msgstr "Artık bu konu için bildirim alacaksınız"
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Bir \"sıfırlama kodu\" içeren bir e-posta alacaksınız. Bu kodu buraya girin, ardından yeni şifrenizi girin."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr "Davet edilmedikçe tekrar katılamayacaksınız."
@@ -13463,7 +13783,7 @@ msgstr "Aktif içeriğin sonuna ulaştınız."
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Akışınızın sonuna ulaştınız! Takip edebileceğiniz daha fazla hesap bulun."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr "En fazla taslak sayısına ulaştınız"
@@ -13475,11 +13795,11 @@ msgstr "İzin verilen en fazla istek sayısına ulaştınız. Lütfen daha sonra
msgid "You've reached the start of the active content."
msgstr "Aktif içeriğin başına ulaştınız."
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Günlük video yükleme limitinize ulaştınız (çok fazla bayt)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
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)"
@@ -13499,10 +13819,18 @@ msgstr "Hesabınız silindi, görüşmek üzere! ✌️"
msgid "Your account has been suspended"
msgstr "Hesabınız askıya alındı"
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Hesabınız video yüklemek için yeterince eski değil. Lütfen daha sonra tekrar deneyin."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr "Hesabınız çok yeni"
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr "Yeni bir grup sohbeti oluşturmak için hesabınızın en az 7 günlük olması gerekmektedir."
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Herkese açık tüm veri kayıtlarınızı içeren hesap deponuz bir \"CAR\" dosyası olarak indirilebilir. Bu dosya görselleri, özel verilerinizi veya gömülü medyayı içermez; onların ayrıca indirilmeleri gerekir."
@@ -13519,7 +13847,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/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Sohbetleriniz devre dışı bırakıldı"
@@ -13561,7 +13889,7 @@ msgstr "E-posta adresiniz"
msgid "Your email appears to be invalid."
msgstr "E-postanız geçersiz gibi görünüyor."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr "E-posta adresiniz doğrulanmamış. Lütfen Bluesky'ın tüm özelliklerinin tadını çıkarabilmek için e-postanızı doğrulayın."
@@ -13582,7 +13910,7 @@ msgstr "Takip ettiğiniz akış boş! Neler olduğunu görmek için daha fazla k
msgid "Your full handle will be <0>@{0}0>"
msgstr "Tam kullanıcı adınız <0>@{0}0> olacak"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,9 +13939,9 @@ msgstr "Konumunuz güncellendi."
msgid "Your muted words"
msgstr "Sessize aldığınız kelimeler"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
-msgstr "Adınız, avatarınız ve grup sohbetinin ismi herkese görünecektir."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
+msgstr "Adınız, grup sohbeti adı ve üye sayısı herkese görünecektir."
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on."
@@ -13623,11 +13951,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:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr "Gönderiniz yollandı"
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr "Gönderileriniz yollandı"
@@ -13635,7 +13963,7 @@ msgstr "Gönderileriniz yollandı"
msgid "Your preferred language"
msgstr "Tercih ettiğiniz dil"
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr "Profil resminiz"
@@ -13648,12 +13976,12 @@ msgstr "Başka kullanıcıların profil resimleri tarafından çerçevelenmiş p
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr "Yanıtınız yollandı"
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr "Raporunuz <0>{0}0> işaretleyicisine gönderilecektir."
@@ -13661,7 +13989,7 @@ msgstr "Raporunuz <0>{0}0> işaretleyicisine gönderilecektir."
msgid "Your selected interests help us serve you content you care about."
msgstr "Seçtiğiniz ilgi alanları, önemsediğiniz içerikleri size sunmamıza yardımcı olur."
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr "Konunuzdaki boş gönderiler atlanacak, geride kalan gönderiler ise bir konu olarak yayınlanacaktır."
diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po
index 1f8515a7ca..d7321e5c1e 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\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"
@@ -86,9 +86,14 @@ msgstr "{0, plural, one {# хвилина} few {# хвилини} many {# хви
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, one {# місяць} few {# місяці} many {# місяців} other {# місяців}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, one {# секунда} few {# секунди} many {# сек
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr ""
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr ""
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr ""
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "Аватарка користувача {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0}хв"
msgid "{0}s"
msgstr "{0}с"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr ""
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr ""
msgid "{following} following"
msgstr "{following} підписок"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "{handle} неможливо написати"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr ""
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr ""
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr ""
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr ""
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr ""
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr ""
@@ -860,17 +935,26 @@ msgstr ""
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Доступність"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Налаштування доступності"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Обліковий запис не ігнорується"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
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:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Додати"
@@ -999,8 +1079,8 @@ msgstr "Додати обліковий запис"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Додати альтернативний текст (за бажанн
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Додати інший обліковий запис"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Написати ще"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr "Додати пароль застосунку"
msgid "Add App Password"
msgstr "Додати пароль застосунку"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr ""
@@ -1080,8 +1160,8 @@ msgstr ""
msgid "Add muted words and tags"
msgstr "Додати ігноровані слова та теги"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr ""
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr ""
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Усе"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Дозволити доступ до ваших особистих по
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Вже увійшли як @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr ""
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Альтернативний текст"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Альтернативний текст описує зображення для незрячих та користувачів із вадами зору, та надає додатковий контекст для всіх."
@@ -1387,7 +1467,7 @@ msgstr "Виникла помилка"
msgid "An error occurred"
msgstr "Виникла помилка"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Виникла помилка під час стискання цього відео."
@@ -1432,11 +1512,11 @@ msgstr "Сталася помилка під час збереження QR-ко
msgid "An error occurred while trying to follow all"
msgstr "Сталася помилка при спробі читати усіх"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Проблема не включена до цих варіантів"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Сталася помилка при спробі відкрити ча
msgid "An issue occurred, please try again."
msgstr "Виникла проблема, будь ласка, спробуйте ще раз."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 ""
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr "Усі можуть взаємодіяти"
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Назва повинна бути не менше 4 символів у
msgid "App passwords"
msgstr "Паролі застосунку"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Паролі для застосунків"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Оскарження подано"
@@ -1632,14 +1716,14 @@ msgstr ""
msgid "Appeal Suspension"
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Оскаржити це рішення"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Ви дійсно хочете видалити пароль застосунку «{0}»?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ msgstr "Ви дійсно хочете видалити цю підбірку?"
msgid "Are you sure you want to discard your changes?"
msgstr "Ви справді хочете відхилити зміни?"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
msgid "Are you sure you want to leave this conversation?"
msgstr ""
-#: 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 "Ви впевнені, що хочете залишити цю розмову? Повідомлення зникнуть для вас, але не для співрозмовника."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
msgid "Are you sure you want to remove this from your feeds?"
msgstr "Ви впевнені, що бажаєте вилучити це зі своїх стрічок?"
-#: src/view/com/composer/Composer.tsx:1541
+#: src/view/com/composer/Composer.tsx:1590
msgid "Are you sure you'd like to discard this post?"
msgstr "Ви справді хочете не публікувати пост?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Автовідтворення відео та GIF"
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr "Назад"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr ""
@@ -1840,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1877,7 +1963,7 @@ msgstr "Дата народження"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Заблокувати обліковий запис"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "Заблокувати обліковий запис?"
msgid "Block accounts"
msgstr "Заблокувати облікові записи"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Заблокувати ці облікові записи?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr ""
@@ -1948,7 +2034,7 @@ msgctxt "button"
msgid "Block user"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Заблоковано"
@@ -1964,13 +2050,13 @@ msgstr "Заблоковано"
msgid "Blocked accounts"
msgstr "Заблоковані облікові записи"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Заблоковані облікові записи"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Заблоковані облікові записи не можуть вам відповідати, згадувати вас у своїх постах, і взаємодіяти з вами будь-яким іншим чином."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky найкращий з друзями!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky обере набір рекомендованих обліко
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 "Bluesky не буде показувати ваш профіль і повідомлення відвідувачам без облікового запису. Інші застосунки можуть не слідувати цьому запиту. Це не робить ваш обліковий запис приватним."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr ""
@@ -2137,23 +2223,30 @@ msgstr "Організація"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Від {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr ""
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Зі створенням облікового запису ви пог
msgid "By you"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Камера"
@@ -2192,8 +2285,8 @@ msgstr "Камера"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Камера"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Камера"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Скасувати"
@@ -2248,9 +2341,9 @@ msgstr ""
msgid "Cancel search"
msgstr "Скасувати пошук"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Не можна взаємодіяти із заблокованим користувачем"
@@ -2264,7 +2357,7 @@ msgstr "Субтитри (.vtt)"
msgid "Captions & alt text"
msgstr "Назва та альтернативний текст"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr "Змінити псевдонім"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr ""
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr ""
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Чат"
@@ -2361,6 +2454,13 @@ msgstr ""
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Чат стишено"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr ""
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Налаштування чату"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Налаштування чату"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Сповіщення чату увімкнено"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr ""
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "Обрати цей колір для свого аватару"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr "торкніться тут"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2567,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Торкніться, щоб спробувати надіслати повідомлення знов"
@@ -2594,28 +2694,30 @@ msgstr "Торкніться, щоб спробувати надіслати п
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Торкніться, щоб спробувати надіслати п
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Закрити діалогове вікно"
msgid "Close alert"
msgstr "Закрити сповіщення"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Закрити нижнє меню"
@@ -2657,8 +2763,9 @@ msgstr "Закрити нижнє меню"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Закрити діалогове вікно"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Закрити зображення"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Закрити діалогове вікно"
@@ -2695,7 +2810,7 @@ msgstr ""
msgid "Closes password update alert"
msgstr "Закриває сповіщення про оновлення пароля"
-#: src/view/com/composer/Composer.tsx:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr ""
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Комікси"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Правила спільноти"
@@ -2740,12 +2855,12 @@ msgstr "Завершити завдання"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Новий пост"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
msgid "Compose posts up to {0, plural, other {# characters}} in length"
msgstr ""
@@ -2753,11 +2868,11 @@ msgstr ""
msgid "Compose reply"
msgstr "Відповісти"
-#: src/view/com/composer/Composer.tsx:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Стискання відео..."
@@ -2780,7 +2895,7 @@ msgstr "Налаштовано <0>у налаштуваннях модераці
msgid "Confirm"
msgstr "Підтвердити"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr ""
msgid "Content and media"
msgstr "Вміст та медіа"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Вміст та медіа"
@@ -2889,7 +3004,7 @@ msgstr "Тло контекстного меню натисніть, щоб за
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "Продовжити гілку..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Продовжити до наступного кроку"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Розмову видалено"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Розмову видалено"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Скопійовано версію збірки до буфера обміну"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Копіювати ідентифікатор"
msgid "Copy host"
msgstr "Копіювати хост"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Копіювати текст повідомлення"
@@ -3052,7 +3175,7 @@ msgstr "Копіювати значення запису TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Політика захисту авторського права"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Не вдалось залишити чат"
@@ -3094,6 +3217,10 @@ msgstr "Не вдалось залишити чат"
msgid "Could not load feed"
msgstr "Не вдалося завантажити стрічку"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Створити"
@@ -3159,7 +3286,7 @@ msgstr "Створити QR-код для підбірки"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Створити власну підбірку"
@@ -3174,13 +3301,14 @@ msgstr "Створення власної підбірки для мене"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Створити обліковий запис"
msgid "Create an account without using this starter pack"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Натомість створити аватар"
@@ -3206,7 +3334,7 @@ msgstr "Натомість створити аватар"
msgid "Create another"
msgstr "Створити інший"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Створити новий обліковий запис"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Створити звіт для {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Створено: {0}"
@@ -3341,7 +3470,7 @@ msgstr "Типово"
msgid "Default icons"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr ""
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Видалити для мене"
@@ -3399,11 +3528,11 @@ msgstr "Видалити для мене"
msgid "Delete list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Видалити повідомлення"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Видалити повідомлення для мене"
@@ -3413,7 +3542,7 @@ msgstr "Видалити мій обліковий запис"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Видалити пост"
@@ -3434,12 +3563,12 @@ msgstr "Видалити цей список?"
msgid "Delete this post?"
msgstr "Видалити цей пост?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Видалено"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Видалений обліковий запис"
@@ -3507,13 +3636,13 @@ msgstr "Діалог: налаштувати, хто може взаємодія
msgid "Dim"
msgstr "Тьмяна"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3521,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3534,8 +3663,8 @@ msgstr "Вимкнути двофакторну автентифікацію е
msgid "Disable haptic feedback"
msgstr "Вимкнути тактильний зворотний зв'язок"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Вимкнено"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Видалити"
msgid "Discard changes?"
msgstr "Відхилити зміни?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Відхилити чернетку?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Не зберігати пост?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Відкрити для себе нові стрічки"
msgid "Dismiss"
msgstr "Відхилити"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Пропустити помилку"
@@ -3673,7 +3802,7 @@ msgstr "Не містить оголеності."
msgid "Domain verified!"
msgstr "Домен перевірено!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3681,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Готово"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr ""
@@ -3741,15 +3873,6 @@ msgstr ""
msgid "Download Bluesky"
msgstr "Завантажити Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Завантажити CAR файл"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Завантажити CAR файл"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Редагувати"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Редагувати фото профілю"
@@ -3847,14 +3978,14 @@ msgstr "Редагувати фото профілю"
msgid "Edit Feeds"
msgstr "Редагувати стрічки"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Редагувати зображення"
@@ -3868,7 +3999,16 @@ msgstr "Редагувати налаштування взаємодії"
msgid "Edit interests"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Редагувати мої стрічки"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Редагувати користувачів"
@@ -3925,7 +4060,7 @@ msgstr "Редагувати профіль"
msgid "Edit starter pack"
msgstr "Редагувати власну підбірку"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "Редагувати, хто може відповідати"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Редагувати вашу власну підбірку"
@@ -3971,7 +4106,7 @@ msgstr "Адреса електронної пошти"
msgid "Email Resent"
msgstr "Лист надіслано знов"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -4006,8 +4141,8 @@ msgstr "Вставте цей пост у Ваш сайт. Просто скоп
msgid "Embedded video player"
msgstr "Вбудований відеоплеєр"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Увімкнути"
@@ -4025,7 +4160,7 @@ msgstr "Дозволити вміст для дорослих"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4038,13 +4173,12 @@ msgstr "Увімкнути зовнішні медіа"
msgid "Enable media players for"
msgstr "Увімкнути медіапрогравачі для"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr "Введіть пароль"
msgid "Enter a word or tag"
msgstr "Введіть слово або мітку"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4143,7 +4277,7 @@ msgstr ""
msgid "Entertainment"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Помилка"
@@ -4185,23 +4319,23 @@ msgstr "Всі можуть відповідати"
msgid "Everybody can reply to this post."
msgstr "Всі можуть відповідати на цей пост."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Будь-хто"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Будь-хто"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Будь-хто"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "Окрім користувачів, на яких ви підписан
msgid "Exit fullscreen"
msgstr "Вийти з повноекранного режиму"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Розгорнути опис"
@@ -4226,7 +4360,7 @@ msgstr "Розгорнути опис"
msgid "Expand list of users"
msgstr "Розгорнути список користувачів"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Розгорнути або згорнути весь пост, на який ви відповідаєте"
@@ -4238,7 +4372,7 @@ msgstr ""
msgid "Expands or collapses post text"
msgstr ""
-#: src/lib/api/index.ts:460
+#: src/lib/api/index.ts:487
msgid "Expected uri to resolve to a record"
msgstr ""
@@ -4277,9 +4411,9 @@ msgstr "Відверто або потенційно проблемний вмі
msgid "Explicit sexual images."
msgstr "Відверті сексуальні зображення."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr ""
@@ -4289,11 +4423,8 @@ msgstr ""
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,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:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Налаштування зовнішніх медіа"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr ""
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "Не вдалось змінити псевдонім. Будь ласка, спробуйте ще раз."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "Не вдалось створити пароль застосунку.
msgid "Failed to create conversation"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Не вдалося видалити повідомлення"
@@ -4394,24 +4529,24 @@ msgstr "Не вдалося видалити пост, спробувати ще
msgid "Failed to delete starter pack"
msgstr "Не вдалось видалити власну підбірку"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr ""
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "Не вдалося завантажити параметри стрічок"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "Не вдалося завантажити рекомендовані с
msgid "Failed to load suggested follows"
msgstr "Не вдалося завантажити запропоновані для читання облікові записи"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Не вдалось закріпити пост"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr ""
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Не вдалося подати апеляцію. Будь ласка, спробуйте ще раз."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Не вдалося ігнорувати гілку, будь ласка, спробуйте пізніше"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4614,7 +4751,7 @@ msgstr "Не вдалося оновити стрічки"
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Не вдалося оновити налаштування"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Стрічка"
@@ -4649,7 +4786,7 @@ msgstr "Стрічка"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Стрічка від {0}"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr ""
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Стрічки"
@@ -4739,7 +4876,7 @@ msgstr ""
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "Завершення"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Знайти облікові записи для підписки"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr ""
msgid "Find posts, users, and feeds on Bluesky"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "Читають <0>{0}0> та <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Читають <0>{0}0>, <1>{1}1>, та {2, plural, one {# інші} few {# інші} many {# інші} other {# інші}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Читачі @{0}, яких читаєте ви"
@@ -4995,19 +5136,16 @@ msgstr ""
msgid "Following feed preferences"
msgstr "Налаштування стрічки тих, кого ви читаєте"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Налаштування стрічки тих, кого ви читаєте"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Підписаний(-на) на вас"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Читає вас"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Шрифт"
@@ -5069,7 +5207,7 @@ msgstr "Забули пароль?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr "Від <0/>"
msgid "Generate a starter pack"
msgstr "Згенерувати особисту підбірку"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "Допомога"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr ""
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Створити обличчя для вашого облікового запису"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Перейти назад"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Назад"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Перейти назад до попереднього кроку"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Перейти на головну"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Перейти на головну"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Перейти на головну"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Перейти до розмови з {0}"
@@ -5299,12 +5440,12 @@ msgstr "Далі"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Перейти до облікового запису"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Псевдонім задовгій. Будь ласка, спробуйте коротший."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Хештег"
@@ -5458,8 +5615,8 @@ msgstr ""
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Довідка"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Дайте людям знати, що ви не бот, завантаживши зображення або створивши аватар."
@@ -5652,18 +5809,18 @@ msgstr "Хм, ми маємо проблеми зі завантаженням
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Хм, ми не змогли завантажити цей сервіс модерації."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Чекай-но! Ми поступово даємо доступ до відео, а ви поки що чекаєте в черзі. Спробуйте пізніше!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Головна"
@@ -5721,7 +5878,7 @@ msgstr "Я зрозумів"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
msgid "If alt text is long, toggles alt text expanded state"
msgstr "Розкриває альтернативний текст, якщо текст задовгий"
@@ -5757,7 +5914,7 @@ msgstr "Якщо ви видалите цей список, ви не зможе
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5765,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr "Якщо ви видалите цей пост, ви не зможете його відновити."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5773,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Якщо ви хочете змінити пароль, ми надішлемо вам код, щоб переконатися, що це ваш обліковий запис."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr ""
msgid "If you're trying to change your handle or email, do so before you deactivate."
msgstr "Якщо намагаєтесь змінити псевдонім або адресу електронної пошти, зробіть це до деактивації облікового запису."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Зображення"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr ""
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr ""
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Невірний код підтвердження двофакторної автентифікації."
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Хибний псевдонім. Будь ласка, спробуйте ввести інший."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Недійсний код підтвердження"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
msgstr "Зараз ви на самоті. Додайте користувачів до власної підбірки шукаючи їх вище."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "Вакансія: {0}"
@@ -6083,6 +6257,11 @@ msgstr "Вакансія: {0}"
msgid "Jobs"
msgstr "Вакансії"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Вакансії"
msgid "Join Bluesky"
msgstr "Приєднатися до Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Приєднатися до розмови"
msgid "Journalism"
msgstr "Журналістика"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "Мітки на вашому обліковому записі"
msgid "Labels on your content"
msgstr "Мітки на вашому контенті"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Налаштування мови"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Нещодавні"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Дізнатися більше про це попередження"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Дізнатися більше про те, що є публічним в Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "Дізнатися більше."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Вийти"
@@ -6276,7 +6464,7 @@ msgstr "Вийти з чату"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Залишити розмову"
@@ -6284,13 +6472,13 @@ msgstr "Залишити розмову"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Залишити розмову"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Світла"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -6346,11 +6534,7 @@ msgstr "Вподобати 10 постів"
msgid "Like 10 posts to train the Discover feed"
msgstr "Вподобати 10 постів задля тренування Стрічки відкриття"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Вподобати цю стрічку"
@@ -6358,8 +6542,8 @@ msgstr "Вподобати цю стрічку"
msgid "Like this labeler"
msgstr ""
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Вподобано"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr ""
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Уподобання"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Уподобання цього посту"
@@ -6409,11 +6589,11 @@ msgstr "Уподобання цього посту"
msgid "Linear"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Список"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Список більше не ігноровано"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Списки"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Завантаження..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Звіт"
@@ -6662,7 +6842,7 @@ msgstr "Схоже, у вас відсутня стрічка тих, кого
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr ""
msgid "Manage your muted words and tags"
msgstr "Налаштувати ваші ігноровані слова і теги"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr ""
@@ -6698,13 +6877,12 @@ msgstr ""
msgid "Mark as read"
msgstr "Відмітити як прочитане"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr ""
@@ -6727,25 +6905,21 @@ msgid "Media that may be disturbing or inappropriate for some audiences."
msgstr "Медіавміст, який може бути тривожним або недоречним для певних глядачів."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "згадані користувачі"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Згадування"
@@ -6775,22 +6949,22 @@ msgstr "Повідомлення {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Повідомлення видалено"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Повідомлення видалено"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr ""
@@ -6813,19 +6987,19 @@ msgstr "Повідомлення задовге"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr ""
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Повідомлення"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr ""
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Модерація"
@@ -6894,7 +7064,7 @@ msgstr "Список модерації оновлено"
msgid "Moderation lists"
msgstr "Списки для модерації"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Списки для модерації"
@@ -6903,7 +7073,7 @@ msgstr "Списки для модерації"
msgid "moderation settings"
msgstr "Налаштування модерації"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Статус модерації"
@@ -6949,7 +7119,7 @@ msgstr "Кіно"
msgid "Music"
msgstr "Музика"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Стишити"
@@ -6994,7 +7164,7 @@ msgstr "Ігнорувати список"
msgid "Mute these accounts?"
msgstr "Ігнорувати ці облікові записи?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Ігнорувати обговорення"
msgid "Mute words & tags"
msgstr "Ігнорувати слова та теги"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Ігноровані облікові записи"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Ігноровані облікові записи"
@@ -7108,8 +7278,8 @@ msgstr "Переходить до наступного екрана"
msgid "Navigates to your profile"
msgstr "Переходить до вашого профілю"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Новий чат"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr ""
@@ -7174,29 +7344,25 @@ msgstr ""
msgid "New Feature"
msgstr ""
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Новий пост"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Новий пост"
@@ -7262,8 +7428,8 @@ msgstr "Новини"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "Ви більше не читаєте {0}"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Ще немає повідомлень"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "Ще ніяких сповіщень!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Результати відсутні"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Нічого не знайдено"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Несексуальна оголеність"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Не знайдено"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Налаштування сповіщень"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Звуки сповіщень"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Сповіщення"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "щойно"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Вимкнено"
@@ -7623,7 +7772,8 @@ msgstr ""
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "на<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Скинути ознайомлення"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
msgid "One or more GIFs is missing alt text."
msgstr "Одна або декілька GIF не мають описового тексту."
-#: src/view/com/composer/Composer.tsx:790
+#: src/view/com/composer/Composer.tsx:852
msgid "One or more images is missing alt text."
msgstr "Для одного або кількох зображень відсутній опис."
-#: src/view/com/composer/SelectMediaButton.tsx:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
msgid "One or more videos is missing alt text."
msgstr "Одне або більше відео не мають описового тексту."
@@ -7685,6 +7835,26 @@ msgstr "Одне або більше відео не мають описовог
msgid "Only {0} can reply."
msgstr "Тільки {0} можуть відповідати."
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr "Підтримуються лише файли зображень"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Підтримуються лише файли WebVTT (.vtt)"
@@ -7712,7 +7892,7 @@ msgstr "Ой, щось пішло не так!"
msgid "Oops!"
msgstr "Ой!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Відкрити створювач аватарів"
@@ -7720,12 +7900,17 @@ msgstr "Відкрити створювач аватарів"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Відкрити налаштування розмови"
@@ -7739,16 +7924,16 @@ msgstr ""
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Емоджі"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr ""
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Відкрити меню налаштувань стрічки"
@@ -7760,13 +7945,17 @@ msgstr ""
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Відкрити посилання на {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr ""
msgid "Open post options menu"
msgstr "Відкрити меню налаштувань посту"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr "Відкрити storybook сторінку"
msgid "Open system log"
msgstr "Відкрити системний журнал"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Відкриє додаткову інформацію про запис
msgid "Opens alt text dialog"
msgstr ""
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Відкриє камеру на пристрої"
@@ -7858,22 +8051,24 @@ msgstr "Відкриє редактор"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Відкриє процес створення нового облікового запису Bluesky"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
msgid "Opens flow to sign in to your existing Bluesky account"
msgstr ""
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Відкриває цей профіль"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr ""
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Наші модератори переглянули скарги та вирішили позбавити вас доступу до чатів у Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Наші модератори переглянули скарги та
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Сторінку не знайдено"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Сторінку не знайдено"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Призупинити відео"
msgid "People"
msgstr "Люди"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Люди, яких читає @{0}"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Люди, які читають @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Зображення, призначені для дорослих."
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr ""
@@ -8152,7 +8348,7 @@ msgstr ""
msgid "Pin to home"
msgstr "Закріпити на головній"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Закріпити на головній"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Закріплені"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr ""
@@ -8236,7 +8432,7 @@ msgstr "Просимо обрати псевдонім."
msgid "Please choose your password."
msgstr "Просимо обрати ваш пароль."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "Просимо завершити перевірку Captcha."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr ""
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Будь ласка, введіть унікальну назву для цього паролю або оберіть випадково згенеровану."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "Просимо ввести адресу ел. пошти."
msgid "Please enter your invite code."
msgstr "Будь ласка, введіть код запрошення."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr ""
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Просимо пояснити чому ви вважаєте, що ця мітка була помилково додана до {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Будь ласка, поясніть, чому ви вважаєте, що ваші чати були хибно відключені"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "Політика"
msgid "Porn"
msgstr "Порнографія"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Запостити"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Опублікувати все"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Пост від @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Пост видалено"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Не вдалось завантажити пост. Будь ласка, перевірте з'єднання з інтернетом та спробуйте ще раз."
@@ -8454,7 +8650,7 @@ msgstr "Пост приховано вами"
msgid "Post interaction settings"
msgstr "Налаштування взаємодії з постом"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr ""
@@ -8464,8 +8660,8 @@ msgstr ""
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Пост відкріплено"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Пости можуть бути приглушені залежно в
msgid "Posts hidden"
msgstr "Пости приховано"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "Натисніть для повторної спроби з'єднан
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Натиснути для повторної спроби"
@@ -8536,7 +8728,7 @@ msgstr "Натиснути для повторної спроби"
msgid "Press to view followers of this account that you also follow"
msgstr "Натисніть для перегляду підписників цього облікового запису, яких ви також читаєте"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "Конфіденційність"
msgid "Privacy and security"
msgstr "Конфіденційність та безпека"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Конфіденційність та безпека"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Політика конфіденційності"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Обробка відео..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Обробка..."
@@ -8602,8 +8793,8 @@ msgstr "Обробка..."
msgid "profile"
msgstr "профіль"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr ""
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr ""
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr ""
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "QR-код завантажено!"
msgid "QR code saved to your camera roll!"
msgstr "QR-код збережено до галереї!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Цитування постів вимкнено"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Цитування"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Додати повторно цитування"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr ""
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr ""
msgid "Reconnect"
msgstr "Повторне з'єднання"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr ""
msgid "Reject chat request"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Перезавантажити розмови"
@@ -8896,17 +9087,17 @@ msgstr "Видалити обліковий запис"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Видалити вкладення"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Видалити аватар"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Видалити банер"
@@ -8914,8 +9105,9 @@ msgstr "Видалити банер"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Видалити вбудування"
@@ -8933,8 +9125,8 @@ msgstr "Видалити стрічку?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr ""
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Видалити зображення"
@@ -9009,11 +9201,11 @@ msgstr ""
msgid "Remove your verification for this account?"
msgstr ""
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Вилучено автором"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Вилучено вами"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Відповіді"
@@ -9104,14 +9295,14 @@ msgstr "Відповіді вимкнуто"
msgid "Replies to this post are disabled."
msgstr "Відповіді в цьому пості вимкнено."
-#: src/view/com/composer/Composer.tsx:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Відповісти"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr ""
@@ -9125,10 +9316,6 @@ msgstr "Відповідь прихована автором гілки"
msgid "Reply Hidden by You"
msgstr "Відповідь прихована вами"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Налаштування відповіді визначаються автором гілки"
@@ -9146,9 +9333,9 @@ msgstr "Оновлено видимість відповідей"
msgid "Reply was successfully hidden"
msgstr "Відповідь успішно приховано"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Поскаржитися"
@@ -9164,13 +9351,13 @@ msgstr ""
msgid "Report conversation"
msgstr "Поскаржитися на розмову"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Діалогове вікно для скарг"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Поскаржитись на стрічку"
@@ -9179,7 +9366,7 @@ msgstr "Поскаржитись на стрічку"
msgid "Report list"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Поскаржитися на повідомлення"
@@ -9199,8 +9386,8 @@ msgstr "Поскаржитись на підбірку"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr ""
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Поскаржитись на цю стрічку"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Поскаржитись на цей список"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Репост"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Репости ({0, plural, one {# репост} few {# репости} many {# репостів} other {# репостів}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Ви зробили репост"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "Репости цього поста"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Вимагати опис зображень перед публікацією"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr ""
@@ -9328,7 +9534,11 @@ msgstr "Вимагається цим хостинг-провайдером"
msgid "Required in your region"
msgstr "Необхідно для вашого регіону"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9393,15 +9603,16 @@ msgstr "Повторити останню дію, яка спричинила п
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Повторити останню дію, яка спричинила п
msgid "Retry"
msgstr "Повторити спробу"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr ""
@@ -9426,14 +9637,14 @@ msgstr ""
msgid "Return to previous page"
msgstr "Повернутися до попередньої сторінки"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Повертає до головної сторінки"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Повертає до попередньої сторінки"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Зберегти зміни"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Зберегти QR-код"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Зберегти до моїх стрічок"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "Збережені стрічки"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Збережено до ваших стрічок"
@@ -9551,8 +9764,8 @@ msgstr "Збережено до ваших стрічок"
msgid "Say hello!"
msgstr "Привітайтесь!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "Прогорнути вгору"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Пошук"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr ""
@@ -9667,7 +9880,7 @@ msgstr ""
msgid "Search posts"
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Пошук профілів"
msgid "Search..."
msgstr ""
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "Вибрати колір"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "Вибрати GIF"
msgid "Select GIF \"{0}\""
msgstr "Вибрати GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Обрати мову..."
msgid "Select languages"
msgstr "Вибрати мови"
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr ""
@@ -9904,11 +10117,11 @@ msgstr "Вибрати ваші інтереси з варіантів нижч
msgid "Select your preferred language for translations in your feed."
msgstr "Оберіть бажану мову для перекладів у вашій стрічці."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Надіслати ел. листа"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Надіслати відгук"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Надіслати повідомлення"
@@ -9952,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr "Надіслати пост до..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr ""
@@ -9960,7 +10173,7 @@ msgstr ""
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Надіслати в особисті повідомлення"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Встановлює ел. адресу для скидання пароля"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Налаштування"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "Сексуальна активність або еротична ого
msgid "Sexually Suggestive"
msgstr "З сексуальним підтекстом"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr "Поширити QR-код"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr ""
@@ -10151,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Тестувальник спільних налаштувань"
@@ -10167,16 +10382,16 @@ msgstr "Показати альтернативний текст"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Показати все одно"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Показати попередження і фільтрувати зі стрічки"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr ""
msgid "Sign in or create your account to join the conversation!"
msgstr "Увійти або створити обліковий запис, щоб приєднатися до розмови!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr ""
@@ -10337,6 +10558,10 @@ msgstr ""
msgid "Sign in to Bluesky or create a new account"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Вийти"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr ""
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Вийти?"
@@ -10391,7 +10616,7 @@ msgstr "Пропустити"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Менше"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr ""
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr ""
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Щось пішло не так"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Щось пішло не так!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr ""
@@ -10568,7 +10798,7 @@ msgstr "Спорт"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Розпочати новий чат"
@@ -10582,17 +10812,17 @@ msgstr ""
msgid "Start adding people!"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Розпочати чат з {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Набір початківця"
@@ -10654,12 +10884,12 @@ msgstr "Сховище очищено, тепер вам треба переза
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr ""
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Надіслати"
@@ -10684,9 +10914,9 @@ msgstr ""
msgid "Submit Appeal"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr ""
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Підписатися"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:287
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:282
msgid "Success!"
msgstr "Успіх!"
+#: src/components/intents/GroupChatJoinDialog.tsx:101
+msgid "Successfully joined the group chat!"
+msgstr ""
+
#: src/components/verification/VerificationCreatePrompt.tsx:37
msgid "Successfully verified"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:226
-#: src/components/dms/InitiateChatFlow.tsx:319
+#: src/components/dms/AddMembersFlow.tsx:236
+#: src/components/dms/InitiateChatFlow.tsx:329
msgid "Suggested"
msgstr ""
@@ -10770,7 +11004,7 @@ msgctxt "Name of app icon variant"
msgid "Sunset"
msgstr ""
-#: src/Navigation.tsx:333
+#: src/Navigation.tsx:325
#: src/view/screens/Support.tsx:25
#: src/view/screens/Support.tsx:28
msgid "Support"
@@ -10780,11 +11014,11 @@ msgstr "Підтримка"
msgid "Support for this feature in your country has not been enabled yet! Please check back later."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:91
+#: src/components/dms/dialogs/NewChatDialog.tsx:94
msgid "Suspended accounts cannot participate in a group chat."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:53
+#: src/components/dms/dialogs/NewChatDialog.tsx:56
msgid "Suspended accounts cannot participate in chat."
msgstr ""
@@ -10793,7 +11027,7 @@ msgstr ""
#: src/screens/Settings/Settings.tsx:122
#: src/screens/Settings/Settings.tsx:134
#: src/screens/Settings/Settings.tsx:615
-#: src/view/shell/desktop/LeftNav.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:262
msgid "Switch account"
msgstr "Перемкнути обліковий запис"
@@ -10802,7 +11036,7 @@ msgid "Switch accounts"
msgstr ""
#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', )
-#: src/view/shell/desktop/LeftNav.tsx:363
+#: src/view/shell/desktop/LeftNav.tsx:364
msgid "Switch to {0}"
msgstr ""
@@ -10828,7 +11062,7 @@ msgstr "Лише мітки"
msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region."
msgstr ""
-#: src/components/dms/MessageItem.tsx:598
+#: src/components/dms/MessageItem.tsx:580
msgid "Tap for details"
msgstr ""
@@ -10854,33 +11088,51 @@ msgstr ""
msgid "Tap to close context menu"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:75
+msgid "Tap to copy this invite link"
+msgstr ""
+
#: src/components/ProgressGuide/Toast.tsx:163
msgid "Tap to dismiss"
msgstr "Торкніться, щоб пропустити"
-#: src/components/dms/ReactionsDialog.tsx:192
+#: src/components/dms/ChatInvite/Root.tsx:128
+#: src/components/intents/GroupChatJoinDialog.tsx:424
+msgid "Tap to join this group chat immediately"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:88
+msgid "Tap to open this group chat"
+msgstr ""
+
+#: src/components/dms/ReactionsDialog.tsx:196
msgid "Tap to remove"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/ReactionsDialog.tsx:208
+#: src/components/dms/ReactionsDialog.tsx:212
msgid "Tap to remove your {0} reaction"
msgstr ""
-#: src/components/dms/MessageItem.tsx:563
+#: src/components/dms/ChatInvite/Root.tsx:127
+#: src/components/intents/GroupChatJoinDialog.tsx:423
+msgid "Tap to request access to join this group chat"
+msgstr ""
+
+#: src/components/dms/MessageItem.tsx:545
msgid "Tap to retry"
msgstr ""
#. placeholder {0}: tab.value
-#: src/components/dms/ReactionsDialog.tsx:354
+#: src/components/dms/ReactionsDialog.tsx:358
msgid "Tap to show {0} reactions"
msgstr ""
-#: src/components/dms/ReactionsDialog.tsx:353
+#: src/components/dms/ReactionsDialog.tsx:357
msgid "Tap to show all reactions"
msgstr ""
-#: src/components/dms/MessageItem.tsx:317
+#: src/components/dms/MessageItem.tsx:297
msgid "Tap to view reactions"
msgstr ""
@@ -10924,7 +11176,7 @@ msgstr "Умови"
#: src/components/dialogs/BirthDateSettings.tsx:181
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98
-#: src/Navigation.tsx:343
+#: src/Navigation.tsx:335
#: src/screens/Settings/AboutSettings.tsx:87
#: src/screens/Settings/AboutSettings.tsx:90
#: src/view/screens/TermsOfService.tsx:25
@@ -10939,7 +11191,7 @@ msgstr "Текст та мітки"
#: src/components/moderation/LabelsOnMeDialog.tsx:307
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122
-#: src/screens/Messages/components/ChatDisabled.tsx:138
+#: src/screens/Messages/components/ChatDisabled.tsx:142
msgid "Text input field"
msgstr "Поле вводу тексту"
@@ -11049,6 +11301,11 @@ msgstr ""
msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:135
+#: src/screens/Messages/JoinRequests.tsx:201
+msgid "The member limit has been reached."
+msgstr ""
+
#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400
msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}0>?"
msgstr ""
@@ -11057,9 +11314,9 @@ msgstr ""
msgid "The Privacy Policy has been moved to <0/>"
msgstr "Політика конфіденційності була переміщена до <0/>"
-#: src/view/com/composer/state/video.ts:407
-#: src/view/com/composer/state/video.ts:451
-msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file."
+#: src/view/com/composer/state/video.ts:397
+#: src/view/com/composer/state/video.ts:436
+msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file."
msgstr ""
#: src/lib/hooks/useCleanError.ts:41
@@ -11101,7 +11358,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/Messages/components/InviteLinkDialog.tsx:476
+#: src/screens/Messages/components/InviteLinkDialog.tsx:482
msgid "There is no invite link for this group chat."
msgstr ""
@@ -11115,10 +11372,12 @@ msgid "There was a problem loading GIFs. Check your connection and try again."
msgstr ""
#: src/components/contacts/screens/GetContacts.tsx:147
+#: src/components/intents/GroupChatJoinDialog.tsx:119
+#: src/components/intents/GroupChatJoinDialog.tsx:153
msgid "There was a problem with your internet connection, please try again"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:182
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:177
#: src/screens/ProfileList/components/Header.tsx:91
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79
#: src/screens/SavedFeeds.tsx:99
@@ -11126,7 +11385,7 @@ msgstr ""
msgid "There was an issue contacting the server"
msgstr "При з'єднанні з сервером виникла проблема"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:426
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:416
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100
msgid "There was an issue contacting the server, please check your internet connection and try again."
msgstr "Виникла проблема зі з'єднанням з сервером. Перевірте підключення до Інтернету і повторіть спробу знову."
@@ -11136,7 +11395,7 @@ msgid "There was an issue fetching notifications. Tap here to try again."
msgstr "Виникла проблема з завантаженням сповіщень. Натисніть тут, щоб повторити спробу."
#: src/screens/Search/Explore.tsx:1027
-#: src/view/com/posts/PostFeed.tsx:773
+#: src/view/com/posts/PostFeed.tsx:775
msgid "There was an issue fetching posts. Tap here to try again."
msgstr "Виникла проблема з завантаженням постів. Натисніть тут, щоб повторити спробу."
@@ -11161,7 +11420,7 @@ msgstr "Під час отримання інформації про викор
msgid "There was an issue removing this feed. Please check your internet connection and try again."
msgstr "Виникла проблема під час видалення цієї стрічки. Будь ласка, перевірте з'єднання з інтернетом та спробуйте знов."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:140
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:136
#: src/view/com/posts/FeedShutdownMsg.tsx:53
#: src/view/com/posts/FeedShutdownMsg.tsx:74
msgid "There was an issue updating your feeds, please check your internet connection and try again."
@@ -11254,7 +11513,7 @@ msgid "This appeal will be sent to <0>{sourceName}0>."
msgstr "Це звернення буде надіслано до <0>{sourceName}0>."
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114
-#: src/screens/Messages/components/ChatDisabled.tsx:134
+#: src/screens/Messages/components/ChatDisabled.tsx:138
msgid "This appeal will be sent to Bluesky's moderation service."
msgstr "Це звернення буде направлено до сервісу модерації Bluesky."
@@ -11263,7 +11522,7 @@ msgstr "Це звернення буде направлено до сервіс
msgid "This author has chosen to make their posts visible only to people who are signed in."
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:243
+#: src/screens/Profile/components/GermButton.tsx:244
msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below."
msgstr ""
@@ -11271,7 +11530,12 @@ msgstr ""
msgid "This chat has ended"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:360
+#: src/components/dms/ChatInvite/Root.tsx:110
+#: src/components/intents/GroupChatJoinDialog.tsx:264
+msgid "This chat is full"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:380
#: src/screens/Messages/components/ChatLocked.tsx:61
msgid "This chat is locked"
msgstr ""
@@ -11310,7 +11574,11 @@ msgstr "Цей контент недоступний, оскільки один
msgid "This content is not viewable without a Bluesky account."
msgstr "Цей вміст не доступний для перегляду без облікового запису Bluesky."
-#: src/screens/Messages/components/ChatListItem.tsx:154
+#: src/components/intents/GroupChatJoinDialog.tsx:121
+msgid "This conversation is locked."
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:156
msgid "This conversation is with a deleted or a deactivated account. Press for options"
msgstr ""
@@ -11318,7 +11586,7 @@ msgstr ""
msgid "This draft will be permanently deleted."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:157
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:155
msgid "This email is already associated with your account."
msgstr ""
@@ -11360,7 +11628,7 @@ msgstr "Ця стрічка більше не в мережі. Замість н
msgid "This handle is reserved. Please try a different one."
msgstr "Цей псевдонім використовується. Будь ласка, спробуйте інший."
-#: src/screens/Onboarding/StepProfile/index.tsx:141
+#: src/screens/Onboarding/StepProfile/index.tsx:142
msgid "This image could not be used. Try a different format like .jpg or .png."
msgstr ""
@@ -11368,6 +11636,18 @@ msgstr ""
msgid "This information is private and not shared with other users."
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:131
+msgid "This invite link has been disabled."
+msgstr ""
+
+#: src/screens/Messages/JoinRequest.tsx:83
+msgid "This invite link has expired"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:195
+msgid "This invite link is invalid"
+msgstr ""
+
#: src/view/screens/Debug.tsx:327
msgid "This is an empty state"
msgstr ""
@@ -11377,7 +11657,7 @@ msgstr ""
msgid "This is not a valid link"
msgstr ""
-#: src/screens/Settings/AutomationLabelSettings.tsx:169
+#: src/screens/Settings/AutomationLabelSettings.tsx:173
msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time."
msgstr ""
@@ -11410,13 +11690,13 @@ msgstr ""
msgid "This list is empty."
msgstr ""
-#: src/components/dms/MessageItem.tsx:596
-#: src/components/dms/MessageItem.tsx:625
+#: src/components/dms/MessageItem.tsx:578
+#: src/components/dms/MessageItem.tsx:607
msgid "This message is hidden because this user is blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:595
-#: src/components/dms/MessageItem.tsx:621
+#: src/components/dms/MessageItem.tsx:577
+#: src/components/dms/MessageItem.tsx:603
msgid "This message is hidden because you are blocking this user."
msgstr ""
@@ -11454,7 +11734,7 @@ msgstr ""
msgid "This post will be hidden from feeds and threads. This cannot be undone."
msgstr "Цей пост буде приховано від стрічок та гілок. Цю дію не можна скасувати."
-#: src/view/com/composer/Composer.tsx:963
+#: src/view/com/composer/Composer.tsx:1015
msgid "This post's author has disabled quote posts."
msgstr "Автор цього поста вимкнув можливість його цитувати."
@@ -11467,6 +11747,7 @@ msgid "This reply will be sorted into a hidden section at the bottom of your thr
msgstr ""
#: src/screens/Messages/ConversationSettings/index.tsx:132
+#: src/screens/Messages/JoinRequests.tsx:111
msgid "This screen is only available for group conversations."
msgstr ""
@@ -11494,7 +11775,7 @@ msgstr ""
msgid "This user doesn't have any followers."
msgstr "Ніхто не підписаний на користувача."
-#: src/components/dms/dialogs/NewChatDialog.tsx:57
+#: src/components/dms/dialogs/NewChatDialog.tsx:60
msgid "This user has blocked you and cannot be messaged."
msgstr ""
@@ -11503,7 +11784,7 @@ msgstr ""
msgid "This user has blocked you. You cannot view their content."
msgstr "Цей користувач заблокував вас. Ви не можете бачити їх пости."
-#: src/components/dms/dialogs/NewChatDialog.tsx:61
+#: src/components/dms/dialogs/NewChatDialog.tsx:64
msgid "This user has disabled chat and cannot be messaged."
msgstr ""
@@ -11574,7 +11855,7 @@ msgstr "Налаштування гілок"
msgid "Threaded"
msgstr ""
-#: src/Navigation.tsx:376
+#: src/Navigation.tsx:368
msgid "Threads Preferences"
msgstr "Налаштування обговорень"
@@ -11600,8 +11881,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a
msgstr "Щоб вимкнути метод двофакторної автентифікації електронної пошти, будь ласка, перевірте свій доступ до адреси електронної пошти."
#. placeholder {0}: currentAccount?.email
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213
msgid "To disable your email 2FA method, please verify your access to <0>{0}0>"
msgstr ""
@@ -11646,12 +11927,12 @@ msgstr "Топ"
msgid "Top replies first"
msgstr ""
-#: src/Navigation.tsx:567
+#: src/Navigation.tsx:479
msgid "Topic"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:162
-#: src/components/dms/MessageContextMenu.tsx:165
+#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:148
#: src/components/Post/Translated/index.tsx:150
#: src/components/Post/Translated/index.tsx:157
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553
@@ -11702,7 +11983,7 @@ msgstr ""
msgid "Trolling"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142
msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers0>: organizations that can directly issue verification."
msgstr ""
@@ -11763,11 +12044,15 @@ msgstr "Не вдалося зв'язатися з вашим хостинг-п
msgid "Unable to delete"
msgstr "Неможливо видалити"
-#: src/components/dms/dialogs/NewChatDialog.tsx:106
+#: src/screens/Messages/JoinRequests.tsx:346
+msgid "Unable to fetch join requests."
+msgstr ""
+
+#: src/components/dms/dialogs/NewChatDialog.tsx:109
msgid "Unable to find a selected recipient."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:70
+#: src/components/dms/dialogs/NewChatDialog.tsx:73
msgid "Unable to find the selected recipient."
msgstr ""
@@ -11791,7 +12076,7 @@ msgstr ""
msgid "Unavailable feed information"
msgstr ""
-#: src/components/dms/MessageItem.tsx:663
+#: src/components/dms/MessageItem.tsx:645
#: src/components/dms/MessagesListBlockedFooter.tsx:97
#: src/components/dms/MessagesListBlockedFooter.tsx:104
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
@@ -11837,8 +12122,8 @@ msgstr ""
#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40
#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46
-#: src/screens/Profile/components/GermButton.tsx:185
#: src/screens/Profile/components/GermButton.tsx:186
+#: src/screens/Profile/components/GermButton.tsx:187
msgid "Undo"
msgstr ""
@@ -11872,7 +12157,7 @@ msgstr ""
msgid "Unfollows the user"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:490
+#: src/components/moderation/ReportDialog/index.tsx:492
msgid "Unfortunately, none of your subscribed labelers supports this report type."
msgstr ""
@@ -11904,13 +12189,13 @@ msgstr ""
msgid "Unlabeled, abusive, or non-consensual adult content"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
msgid "Unlike"
msgstr "Прибрати вподобання"
#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:279
+#: src/components/PostControls/index.tsx:276
msgid "Unlike ({0, plural, one {# like} other {# likes}})"
msgstr ""
@@ -11918,7 +12203,7 @@ msgstr ""
msgid "Unlock chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:502
+#: src/screens/Messages/ConversationSettings/index.tsx:501
msgid "Unlock this group chat"
msgstr ""
@@ -11955,7 +12240,7 @@ msgstr "Не ігнорувати розмову"
msgid "Unmute list"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:464
+#: src/screens/Messages/ConversationSettings/index.tsx:463
msgid "Unmute this group chat"
msgstr ""
@@ -11974,14 +12259,14 @@ msgid "Unpin"
msgstr "Відкріпити"
#: src/components/FeedCard.tsx:355
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:467
msgid "Unpin feed"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:317
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:319
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:312
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:314
msgid "Unpin from home"
msgstr "Відкріпити від головної сторінки"
@@ -11996,7 +12281,7 @@ msgid "Unpin moderation list"
msgstr "Відкріпити список модерації"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:167
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:162
msgid "Unpinned {0} from Home"
msgstr ""
@@ -12030,11 +12315,11 @@ msgstr "Відписатися від цього мітника"
msgid "Unsubscribed from list"
msgstr "Відписано від списку"
-#: src/view/com/composer/text-input/TextInput.tsx:131
+#: src/view/com/composer/text-input/TextInput.tsx:128
msgid "Unsupported clipboard content"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1442
+#: src/view/com/composer/Composer.tsx:1491
msgid "Unsupported video type: {mimeType}"
msgstr ""
@@ -12047,16 +12332,20 @@ msgstr ""
msgid "Update <0>{displayName}0> in Lists"
msgstr "Оновити <0>{displayName}0> у Списках"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:301
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:313
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93
+msgid "Update app"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:308
#: src/screens/Settings/AccountSettings.tsx:112
#: src/screens/Settings/AccountSettings.tsx:120
msgid "Update email"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:205
-#: src/screens/Messages/components/InviteLinkDialog.tsx:243
-#: src/screens/Messages/components/InviteLinkDialog.tsx:267
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:250
+#: src/screens/Messages/components/InviteLinkDialog.tsx:278
msgid "Update invite link"
msgstr ""
@@ -12065,11 +12354,19 @@ msgstr ""
msgid "Update to {domain}"
msgstr "Оновити на {domain}"
-#: src/screens/Messages/Conversation.tsx:335
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85
+msgid "Update your app"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76
+msgid "Update your app to see it."
+msgstr ""
+
+#: src/screens/Messages/Conversation.tsx:360
msgid "Update your app to the latest version to join in!"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:204
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:202
msgid "Update your email"
msgstr ""
@@ -12090,7 +12387,7 @@ msgctxt "toast"
msgid "Updating reply visibility failed"
msgstr "Не вдалось оновити видимість відповіді"
-#: src/screens/Onboarding/StepProfile/index.tsx:314
+#: src/screens/Onboarding/StepProfile/index.tsx:315
msgid "Upload a photo instead"
msgstr "Натомість завантажити фото"
@@ -12098,39 +12395,40 @@ msgstr "Натомість завантажити фото"
msgid "Upload a text file to:"
msgstr "Завантажити текстовий файл до:"
-#: src/view/com/util/UserAvatar.tsx:490
-#: src/view/com/util/UserAvatar.tsx:493
-#: src/view/com/util/UserBanner.tsx:160
-#: src/view/com/util/UserBanner.tsx:163
+#: src/view/com/util/UserAvatar.tsx:494
+#: src/view/com/util/UserAvatar.tsx:497
+#: src/view/com/util/UserBanner.tsx:164
+#: src/view/com/util/UserBanner.tsx:167
msgid "Upload from Camera"
msgstr "Завантажити з камери"
-#: src/view/com/util/UserAvatar.tsx:507
-#: src/view/com/util/UserBanner.tsx:177
+#: src/view/com/util/UserAvatar.tsx:511
+#: src/view/com/util/UserBanner.tsx:181
msgid "Upload from Files"
msgstr "Завантажити з файлів"
-#: src/view/com/util/UserAvatar.tsx:501
#: src/view/com/util/UserAvatar.tsx:505
-#: src/view/com/util/UserBanner.tsx:171
+#: src/view/com/util/UserAvatar.tsx:509
#: src/view/com/util/UserBanner.tsx:175
+#: src/view/com/util/UserBanner.tsx:179
msgid "Upload from Library"
msgstr "Завантажити з бібліотеки"
-#: src/view/com/composer/Composer.tsx:2471
+#: src/view/com/composer/Composer.tsx:2521
msgid "Uploading GIF..."
msgstr ""
-#: src/lib/api/index.ts:338
+#: src/lib/api/index.ts:327
+#: src/lib/api/index.ts:354
msgid "Uploading images..."
msgstr "Завантаження зображень..."
-#: src/lib/api/index.ts:409
-#: src/lib/api/index.ts:433
+#: src/lib/api/index.ts:426
+#: src/lib/api/index.ts:450
msgid "Uploading link thumbnail..."
msgstr "Завантаження ескізу посилання..."
-#: src/view/com/composer/Composer.tsx:2473
+#: src/view/com/composer/Composer.tsx:2523
msgid "Uploading video..."
msgstr "Завантаження відео..."
@@ -12174,7 +12472,7 @@ msgid "user"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:187
-#: src/components/dms/AfterReportDialog.tsx:150
+#: src/components/dms/AfterReportDialog.tsx:155
msgctxt "toast"
msgid "User blocked"
msgstr ""
@@ -12211,7 +12509,7 @@ msgid "User list by {0}"
msgstr "Список користувачів від {0}"
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
-#: src/state/queries/feed.ts:159
+#: src/state/queries/feed.ts:171
msgid "User List by {0}"
msgstr ""
@@ -12255,12 +12553,12 @@ msgstr "користувачі, яких читає <0>@{0}0>"
msgid "users following <0>@{0}0>"
msgstr ""
-#: src/screens/Messages/Settings.tsx:79
+#: src/screens/Messages/Settings.tsx:81
msgctxt "allow group chat invites from"
msgid "Users I follow"
msgstr ""
-#: src/screens/Messages/Settings.tsx:64
+#: src/screens/Messages/Settings.tsx:66
msgctxt "allow messages from"
msgid "Users I follow"
msgstr ""
@@ -12277,7 +12575,7 @@ msgstr ""
msgid "Verification settings"
msgstr ""
-#: src/Navigation.tsx:213
+#: src/Navigation.tsx:205
#: src/screens/Moderation/VerificationSettings.tsx:34
msgid "Verification Settings"
msgstr ""
@@ -12304,8 +12602,8 @@ msgstr ""
#. Button text and accessibility label for action to verify the user's email address using the code entered
#. Button text and accessibility label for action to verify the user's email address using the code entered
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372
msgctxt "action"
msgid "Verify code"
msgstr ""
@@ -12316,7 +12614,7 @@ msgid "Verify DNS Record"
msgstr "Необхідно підтвердити запис DNS"
#. Dialog title when a user is verifying their email address by entering a code they have been sent
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224
msgid "Verify email code"
msgstr ""
@@ -12349,7 +12647,7 @@ msgstr ""
msgid "Verify your age"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221
#: src/screens/Settings/AccountSettings.tsx:86
#: src/screens/Settings/AccountSettings.tsx:106
msgid "Verify your email"
@@ -12380,11 +12678,11 @@ msgstr ""
msgid "Video"
msgstr "Відео"
-#: src/view/com/composer/state/video.ts:364
+#: src/view/com/composer/state/video.ts:359
msgid "Video failed to process"
msgstr "Не вдалось обробити відео"
-#: src/Navigation.tsx:630
+#: src/Navigation.tsx:547
msgid "Video Feed"
msgstr ""
@@ -12419,7 +12717,7 @@ msgstr "Відео не знайдено."
msgid "Video settings"
msgstr "Налаштування відео"
-#: src/view/com/composer/Composer.tsx:2491
+#: src/view/com/composer/Composer.tsx:2541
msgid "Video uploaded"
msgstr "Відео завантажено"
@@ -12432,18 +12730,18 @@ msgstr "Відео: {0}"
msgid "Videos"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:428
+#: src/view/com/composer/SelectMediaButton.tsx:434
msgid "Videos must be less than 3 minutes long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1055
+#: src/view/com/composer/Composer.tsx:1108
msgctxt "Action to view the post the user just created"
msgid "View"
msgstr ""
#. placeholder {0}: view.source.title
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View {0}"
msgstr ""
@@ -12455,7 +12753,7 @@ msgstr "Переглянути аватар {0}"
#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle
#. placeholder {0}: info.creatorHandle
#. placeholder {0}: profile.handle
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:465
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:454
#: src/screens/Search/components/SearchProfileCard.tsx:36
#: src/screens/VideoFeed/index.tsx:809
#: src/view/com/notifications/NotificationFeedItem.tsx:600
@@ -12467,17 +12765,17 @@ msgstr "Переглянути профіль {0}"
msgid "View {0}’s profile"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:120
+#: src/components/dms/MessagesListHeader.tsx:123
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185
msgid "View {displayName}’s profile"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:455
msgid "View {publicationTitle}"
msgstr ""
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83
msgid "View @{0}'s profile"
msgstr ""
@@ -12503,10 +12801,18 @@ msgstr "Переглянути деталі"
msgid "View full thread"
msgstr "Переглянути обговорення"
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
msgid "View incoming group chat requests"
msgstr ""
+#: src/screens/Messages/components/RequestStatus.tsx:54
+msgid "View incoming requests"
+msgstr ""
+
+#: src/screens/Messages/components/RequestStatus.tsx:55
+msgid "View incoming requests to join this group chat"
+msgstr ""
+
#: src/components/moderation/LabelsOnMe.tsx:56
msgid "View information about these labels"
msgstr "Переглянути інформацію про мітки"
@@ -12522,7 +12828,7 @@ msgstr ""
msgid "View more trending videos"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1050
+#: src/view/com/composer/Composer.tsx:1103
msgid "View post"
msgstr ""
@@ -12539,10 +12845,10 @@ msgstr "Переглянути профіль"
msgid "View profile banner"
msgstr ""
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:317
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:615
msgid "View publication"
msgstr ""
@@ -12550,7 +12856,7 @@ msgstr ""
msgid "View the avatar"
msgstr "Переглянути аватар"
-#: src/screens/Messages/ConversationSettings/index.tsx:489
+#: src/screens/Messages/ConversationSettings/index.tsx:488
msgid "View the invite link for this group chat"
msgstr ""
@@ -12563,7 +12869,7 @@ msgstr "Переглянути послуги мічення від @{0}"
msgid "View this user's verifications"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:495
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:482
msgid "View users who like this feed"
msgstr "Переглянути користувачів, які вподобали цю стрічку"
@@ -12596,8 +12902,8 @@ msgstr "Переглянути ігноровані облікові запис
msgid "View your verifications"
msgstr ""
-#: src/components/images/AutoSizedImage.tsx:207
-#: src/components/images/AutoSizedImage.tsx:239
+#: src/components/images/AutoSizedImage.tsx:221
+#: src/components/images/AutoSizedImage.tsx:253
msgid "Views full image"
msgstr ""
@@ -12640,8 +12946,8 @@ msgstr "Попереджувати про вміст"
msgid "Warn content and filter from feeds"
msgstr "Попереджувати про вміст і фільтрувати його зі стрічки"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:189
-#: src/features/liveNow/components/LiveStatusDialog.tsx:198
+#: src/features/liveNow/components/LiveStatusDialog.tsx:190
+#: src/features/liveNow/components/LiveStatusDialog.tsx:199
msgid "Watch now"
msgstr ""
@@ -12665,10 +12971,14 @@ msgstr ""
msgid "We couldn't find any results for that topic."
msgstr ""
-#: src/screens/Messages/Conversation.tsx:136
+#: src/screens/Messages/Conversation.tsx:138
msgid "We couldn't load this conversation"
msgstr "Не вдалось завантажити цю розмову"
+#: src/screens/Messages/JoinRequests.tsx:88
+msgid "We couldn’t load this conversation’s join requests"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/index.tsx:113
msgid "We couldn’t load this conversation’s settings"
msgstr ""
@@ -12715,11 +13025,11 @@ msgid "We recommend selecting at least two interests."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
msgid "We sent an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
-#: src/view/com/composer/state/video.ts:434
+#: src/view/com/composer/state/video.ts:419
msgid "We were unable to determine if you are allowed to upload videos. Please try again."
msgstr "Ми не змогли визначити, чи ви можете завантажувати відео. Будь ласка, спробуйте ще раз."
@@ -12749,7 +13059,7 @@ msgid "We will notify you when we find your friends."
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259
msgid "We'll send an email to <0>{0}0> containing a link. Please click on it to complete the email verification process."
msgstr ""
@@ -12779,12 +13089,12 @@ msgstr ""
msgid "We're having network issues, try again"
msgstr "У нас виникли проблеми з мережею, спробуйте ще раз"
-#: src/components/dms/AddMembersFlow.tsx:175
-#: src/components/dms/InitiateChatFlow.tsx:256
+#: src/components/dms/AddMembersFlow.tsx:185
+#: src/components/dms/InitiateChatFlow.tsx:265
msgid "We’re having network issues, try again"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97
msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark."
msgstr ""
@@ -12814,12 +13124,12 @@ msgstr ""
msgid "We're sorry, you cannot access this screen at this time."
msgstr ""
-#: src/view/com/composer/Composer.tsx:961
+#: src/view/com/composer/Composer.tsx:1013
msgid "We're sorry! The post you are replying to has been deleted."
msgstr "Нам прикро! Пост, на який ви відповідаєте, видалено."
#: src/components/Lists.tsx:224
-#: src/view/screens/NotFound.tsx:39
+#: src/view/screens/NotFound.tsx:44
msgid "We're sorry! We can't find the page you were looking for."
msgstr "Нам дуже прикро! Ми не можемо знайти сторінку, яку ви шукали."
@@ -12865,12 +13175,12 @@ msgid "What do you want to call your starter pack?"
msgstr "Яку назву оберете для власної підбірки?"
#: src/view/com/auth/SplashScreen.web.tsx:98
-#: src/view/com/composer/Composer.tsx:1402
+#: src/view/com/composer/Composer.tsx:1455
#: src/view/com/feeds/ComposerPrompt.tsx:193
msgid "What's up?"
msgstr "Як справи?"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150
msgid "When you tap on a check, you’ll see which organizations have granted verification."
msgstr ""
@@ -12878,7 +13188,7 @@ msgstr ""
msgid "Who can interact with this post?"
msgstr "Хто може взаємодіяти з цим постом?"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:216
+#: src/screens/Messages/components/InviteLinkDialog.tsx:222
msgid "Who can join this group chat and how"
msgstr ""
@@ -12887,13 +13197,13 @@ msgstr ""
msgid "Who can reply"
msgstr "Хто може відповідати"
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131
msgid "Who can verify?"
msgstr ""
#: src/screens/Home/NoFeedsPinned.tsx:80
-#: src/screens/Messages/ChatList.tsx:323
-#: src/screens/Messages/Inbox.tsx:200
+#: src/screens/Messages/ChatList.tsx:334
+#: src/screens/Messages/Inbox.tsx:190
msgid "Whoops!"
msgstr "Упс!"
@@ -12939,7 +13249,7 @@ msgstr "Чому цю підбірку потрібно перевірити?"
msgid "Why should this user be reviewed?"
msgstr "Чому слід переглянути цього користувача?"
-#: src/components/dms/AfterReportDialog.tsx:46
+#: src/components/dms/AfterReportDialog.tsx:51
msgid "Would you like to block this user and/or delete this conversation?"
msgstr ""
@@ -12951,7 +13261,7 @@ msgstr ""
msgid "Would you like to save this as a draft before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1320
+#: src/view/com/composer/Composer.tsx:1373
msgid "Would you like to save this as a draft to edit later?"
msgstr ""
@@ -12960,12 +13270,12 @@ msgstr ""
msgid "Write a post"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1502
+#: src/view/com/composer/Composer.tsx:1551
msgid "Write post"
msgstr "Написати пост"
#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91
-#: src/view/com/composer/Composer.tsx:1400
+#: src/view/com/composer/Composer.tsx:1453
msgid "Write your reply"
msgstr "Написати відповідь"
@@ -12979,6 +13289,7 @@ msgid "Wrong DID returned from server. Received: {0}"
msgstr ""
#: src/screens/Messages/ConversationSettings/index.tsx:131
+#: src/screens/Messages/JoinRequests.tsx:110
msgid "Wrong kind of conversation"
msgstr ""
@@ -13030,7 +13341,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:636
+#: src/components/dms/MessageItem.tsx:618
msgid "You are blocking {0}"
msgstr ""
@@ -13068,7 +13379,7 @@ msgstr ""
msgid "You are no longer live"
msgstr ""
-#: src/view/com/composer/state/video.ts:427
+#: src/view/com/composer/state/video.ts:412
msgid "You are not allowed to upload videos."
msgstr "Ви не можете завантажувати відео."
@@ -13117,12 +13428,12 @@ msgstr ""
msgid "You can choose whether chat notifications have sound in the chat settings within the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:147
-#: src/screens/Messages/Settings.tsx:193
+#: src/screens/Messages/Settings.tsx:149
+#: src/screens/Messages/Settings.tsx:195
msgid "You can continue ongoing conversations regardless of which setting you choose."
msgstr "Ви можете продовжувати поточні розмови незалежно від того, які налаштування ви оберете."
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150
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 ""
@@ -13131,7 +13442,12 @@ msgstr ""
msgid "You can now sign in with your new password."
msgstr "Тепер ви можете увійти за допомогою нового пароля."
-#: src/view/com/composer/Composer.tsx:1325
+#. Toast shown when the user tries to add more images but the post gallery is already at the cap
+#: src/view/com/composer/Composer.tsx:212
+msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post"
+msgstr ""
+
+#: src/view/com/composer/Composer.tsx:1378
msgid "You can only save drafts up to 1000 characters."
msgstr ""
@@ -13139,11 +13455,11 @@ msgstr ""
msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:431
+#: src/view/com/composer/SelectMediaButton.tsx:437
msgid "You can only select one GIF at a time."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:425
+#: src/view/com/composer/SelectMediaButton.tsx:431
msgid "You can only select one video at a time."
msgstr ""
@@ -13155,9 +13471,9 @@ msgstr "Ви можете відновити свій обліковий зап
msgid "You can read chat history but can’t send new messages."
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:417
-msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total."
+#. Error message for maximum number of images that can be selected to add to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:423
+msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total."
msgstr ""
#: src/components/interstitials/Trending.tsx:132
@@ -13166,7 +13482,7 @@ msgstr ""
msgid "You can update this later from your settings."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:98
+#: src/components/dms/dialogs/NewChatDialog.tsx:101
msgid "You cannot create a group chat yet."
msgstr ""
@@ -13197,6 +13513,10 @@ msgstr "У вас немає збережених стрічок."
msgid "You got here first"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:137
+msgid "You have been previously removed from this group and can’t join it using this link."
+msgstr ""
+
#: src/components/moderation/ModerationDetailsDialog.tsx:77
#: src/lib/moderation/useModerationCauseDescription.ts:58
#: src/lib/moderation/useModerationCauseDescription.ts:66
@@ -13266,7 +13586,7 @@ msgstr ""
msgid "You have temporarily reached the limit for video uploads. Please try again later."
msgstr "Ви тимчасово досягли ліміту завантаження відео. Будь ласка, спробуйте пізніше."
-#: src/view/com/composer/Composer.tsx:1315
+#: src/view/com/composer/Composer.tsx:1368
msgid "You have unsaved changes to this draft, would you like to save them?"
msgstr ""
@@ -13336,7 +13656,7 @@ msgstr "Ви маєте читати щонайменше сімох корис
msgid "You must grant access to your photo library to save a QR code"
msgstr "Ви маєте надати доступ до Фотографій для збереження QR-коду"
-#: src/view/com/composer/SelectMediaButton.tsx:460
+#: src/view/com/composer/SelectMediaButton.tsx:466
msgid "You need to allow access to your media library."
msgstr ""
@@ -13354,7 +13674,7 @@ msgid "You probably want to restart the app now."
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:287
+#: src/components/dms/MessageItem.tsx:267
msgid "You reacted {0}"
msgstr ""
@@ -13369,7 +13689,7 @@ msgid "You recently changed your birthdate"
msgstr ""
#: src/screens/Settings/Settings.tsx:297
-#: src/view/shell/desktop/LeftNav.tsx:224
+#: src/view/shell/desktop/LeftNav.tsx:225
msgid "You will be signed out of all your accounts."
msgstr "Ви вийдете з усіх облікових записів."
@@ -13390,7 +13710,7 @@ msgstr "Ви будете отримувати сповіщення з цьог
msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password."
msgstr "Ви отримаєте електронний лист із кодом підтвердження. Введіть цей код тут, а потім введіть новий пароль."
-#: src/screens/Messages/ConversationSettings/prompts.tsx:91
+#: src/screens/Messages/ConversationSettings/prompts.tsx:118
msgid "You won’t be able to rejoin unless you’re invited."
msgstr ""
@@ -13463,7 +13783,7 @@ msgstr ""
msgid "You've reached the end of your feed! Find some more accounts to follow."
msgstr "Ваша домашня стрічка закінчилась! Підпишіться на більше користувачів щоб отримувати більше постів."
-#: src/view/com/composer/Composer.tsx:582
+#: src/view/com/composer/Composer.tsx:637
msgid "You've reached the maximum number of drafts"
msgstr ""
@@ -13475,11 +13795,11 @@ msgstr ""
msgid "You've reached the start of the active content."
msgstr ""
-#: src/view/com/composer/state/video.ts:438
+#: src/view/com/composer/state/video.ts:423
msgid "You've reached your daily limit for video uploads (too many bytes)"
msgstr "Ви досягли денного ліміту завантаження відео (забагато байтів)"
-#: src/view/com/composer/state/video.ts:442
+#: src/view/com/composer/state/video.ts:427
msgid "You've reached your daily limit for video uploads (too many videos)"
msgstr "Ви досягли денного ліміту завантаження відео (забагато відео)"
@@ -13499,10 +13819,18 @@ msgstr ""
msgid "Your account has been suspended"
msgstr ""
-#: src/view/com/composer/state/video.ts:446
+#: src/view/com/composer/state/video.ts:431
msgid "Your account is not yet old enough to upload videos. Please try again later."
msgstr "Ваш обліковий запис створено недостатньо давно для завантаження відео. Будь ласка, спробуйте пізніше."
+#: src/components/dms/InitiateChatFlow.tsx:705
+msgid "Your account is too new"
+msgstr ""
+
+#: src/components/dms/InitiateChatFlow.tsx:706
+msgid "Your account must be at least 7 days old to create a new group chat."
+msgstr ""
+
#: src/screens/Settings/components/ExportCarDialog.tsx:107
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 "Дані з вашого облікового запису, які містять усі загальнодоступні записи, можна завантажити як \"CAR\" файл. Цей файл не містить медіафайлів, таких як зображення, або особисті дані, які необхідно отримати окремо."
@@ -13519,7 +13847,7 @@ msgstr ""
msgid "Your birth date"
msgstr "Ваша дата народження"
-#: src/screens/Messages/components/ChatDisabled.tsx:41
+#: src/screens/Messages/components/ChatDisabled.tsx:45
msgid "Your chats have been disabled"
msgstr "Ваші чати вимкнено"
@@ -13561,7 +13889,7 @@ msgstr ""
msgid "Your email appears to be invalid."
msgstr "Не вдалося розпізнати адресу електронної пошти."
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62
msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky."
msgstr ""
@@ -13582,7 +13910,7 @@ msgstr "Ваша домашня стрічка порожня! Підпишіт
msgid "Your full handle will be <0>@{0}0>"
msgstr "Вашим повним псевдонімом буде <0>@{0}0>"
-#: src/Navigation.tsx:539
+#: src/Navigation.tsx:451
#: src/screens/Search/modules/ExploreInterestsCard.tsx:68
#: src/screens/Settings/ContentAndMediaSettings.tsx:94
#: src/screens/Settings/ContentAndMediaSettings.tsx:97
@@ -13611,8 +13939,8 @@ msgstr ""
msgid "Your muted words"
msgstr "Ваші ігноровані слова"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:179
-msgid "Your name, avatar, and the name of the group chat will be visible to everyone."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:184
+msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:72
@@ -13623,11 +13951,11 @@ msgstr ""
msgid "Your password must be at least 8 characters long."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1046
+#: src/view/com/composer/Composer.tsx:1099
msgid "Your post was sent"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1043
+#: src/view/com/composer/Composer.tsx:1096
msgid "Your posts were sent"
msgstr ""
@@ -13635,7 +13963,7 @@ msgstr ""
msgid "Your preferred language"
msgstr ""
-#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100
+#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102
#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53
msgid "Your profile picture"
msgstr ""
@@ -13648,12 +13976,12 @@ msgstr ""
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:1045
+#: src/view/com/composer/Composer.tsx:1098
msgid "Your reply was sent"
msgstr ""
#. placeholder {0}: state.selectedLabeler?.creator.displayName
-#: src/components/moderation/ReportDialog/index.tsx:517
+#: src/components/moderation/ReportDialog/index.tsx:519
msgid "Your report will be sent to <0>{0}0>."
msgstr ""
@@ -13661,7 +13989,7 @@ msgstr ""
msgid "Your selected interests help us serve you content you care about."
msgstr ""
-#: src/view/com/composer/Composer.tsx:1350
+#: src/view/com/composer/Composer.tsx:1403
msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread."
msgstr ""
diff --git a/src/locale/locales/vi/messages.po b/src/locale/locales/vi/messages.po
index dae8b22b9b..7a6b6169cc 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-05-27 19:42\n"
+"PO-Revision-Date: 2026-06-06 14:56\n"
"Last-Translator: \n"
"Language-Team: Vietnamese\n"
"Plural-Forms: nplurals=1; plural=0;\n"
@@ -86,9 +86,14 @@ msgstr "{0, plural, other {# phút}}"
msgid "{0, plural, one {# month} other {# months}}"
msgstr "{0, plural, other {# tháng}}"
+#. placeholder {0}: convo.details.unreadJoinRequestCount
+#: src/screens/Messages/components/ChatListItem.tsx:226
+msgid "{0, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
#. placeholder {0}: reactions.length
#. placeholder {1}: groupedReactions.map(g => g.value).join(' ')
-#: src/components/dms/MessageItem.tsx:297
+#: src/components/dms/MessageItem.tsx:277
msgid "{0, plural, one {# person} other {# people}} reacted – {1}"
msgstr ""
@@ -109,15 +114,15 @@ msgstr "{0, plural, other {# giây}}"
#. placeholder {0}: numUnreadMessages.numUnread ?? 0
#. placeholder {0}: numUnreadNotifications ?? 0
-#: src/view/shell/bottom-bar/BottomBar.tsx:233
-#: src/view/shell/bottom-bar/BottomBar.tsx:265
+#: src/view/shell/bottom-bar/BottomBar.tsx:234
+#: src/view/shell/bottom-bar/BottomBar.tsx:266
#: src/view/shell/Drawer.tsx:501
msgid "{0, plural, one {# unread item} other {# unread items}}"
msgstr "{0, plural, other {# mục chưa đọc}}"
#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.
#. placeholder {0}: view.readingTime
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:232
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:230
msgid "{0, plural, one {#m} other {#m}}"
msgstr ""
@@ -206,7 +211,7 @@ msgid "{0} following"
msgstr ""
#. placeholder {0}: sanitizeHandle(profile.handle, '@')
-#: src/components/dms/MessageItem.tsx:640
+#: src/components/dms/MessageItem.tsx:622
msgid "{0} is blocking you"
msgstr ""
@@ -264,7 +269,7 @@ msgstr "{0} trong số 50"
#. placeholder {0}: createSanitizedDisplayName(memberSender)
#. placeholder {1}: reaction.value
-#: src/components/dms/MessageItem.tsx:292
+#: src/components/dms/MessageItem.tsx:272
msgid "{0} reacted {1}"
msgstr "{0} đã bày tỏ cảm xúc {1}"
@@ -309,16 +314,38 @@ msgstr ""
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), )
-#: src/view/com/util/UserAvatar.tsx:595
-#: src/view/com/util/UserAvatar.tsx:613
+#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:617
msgid "{0}'s avatar"
msgstr "hình đại diện của {0}"
#. placeholder {0}: createSanitizedDisplayName(profile)
-#: src/components/dms/MessageItem.tsx:228
+#: src/components/dms/MessageItem.tsx:232
msgid "{0}’s avatar"
msgstr ""
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: data.joinLinkPreviews[0].memberCount
+#. placeholder {1}: data.joinLinkPreviews[0].memberLimit
+#: src/screens/Messages/JoinRequest.tsx:130
+msgid "{0}/{1}"
+msgstr ""
+
+#. The number of members in a group chat, in the format '{members}/{total} members'.
+#. placeholder {0}: preview.memberCount
+#. placeholder {1}: preview.memberLimit
+#. placeholder {2}: preview.memberCount
+#: src/components/dms/ChatInvite/Card.tsx:56
+msgid "{0}/{1} {2, plural, one {member} other {members}}"
+msgstr ""
+
+#. The number of active group chat members out of the total number allowed.
+#. placeholder {0}: joinLinkPreview.memberCount
+#. placeholder {1}: joinLinkPreview.memberLimit
+#: src/components/intents/GroupChatJoinDialog.tsx:308
+msgid "{0}/{1} members"
+msgstr ""
+
#. How many days have passed, displayed in a narrow form
#. placeholder {0}: diff.value
#: src/lib/hooks/useTimeAgo.ts:171
@@ -343,25 +370,50 @@ msgstr "{0} phút"
msgid "{0}s"
msgstr "{0} giây"
+#: src/screens/Messages/JoinRequests.tsx:428
+msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}"
+msgstr ""
+
#: src/components/dms/SystemMessageGroup.tsx:38
msgid "{count, plural, one {# chat update} other {# chat updates}}"
msgstr ""
-#: src/screens/Messages/components/InboxRequests.tsx:33
+#: src/screens/Messages/components/RequestStatus.tsx:74
+msgid "{count, plural, one {# new join request} other {# new join requests}}"
+msgstr ""
+
+#: src/screens/Messages/components/InboxRequests.tsx:35
msgid "{count, plural, one {# request} other {# requests}}"
msgstr ""
-#: src/view/shell/desktop/LeftNav.tsx:483
+#: src/view/shell/desktop/LeftNav.tsx:484
msgid "{count, plural, one {# unread item} other {# unread items}}"
msgstr "{count, plural, other {# mục chưa đọc}}"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67
+msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53
+msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}"
+msgstr ""
+
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60
+msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}"
+msgstr ""
+
+#. Displayed when there are more requests to join a group chat than have been loaded
+#: src/screens/Messages/JoinRequests.tsx:422
+msgid "{count, plural, other {#+ requests to join}}"
+msgstr ""
+
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:53
+#: src/screens/Messages/components/InboxRequests.tsx:56
msgid "{count}+"
msgstr ""
#. Displayed when the number of requests is greater than 20
-#: src/screens/Messages/components/InboxRequests.tsx:29
+#: src/screens/Messages/components/InboxRequests.tsx:31
msgid "{count}+ requests"
msgstr ""
@@ -538,8 +590,8 @@ msgstr "{firstAuthorName} đã xác thực bạn"
msgid "{following} following"
msgstr "{following} đang theo dõi"
-#: src/components/dms/components/GroupChatProfileCard.tsx:56
-#: src/components/dms/InitiateChatFlow.tsx:856
+#: src/components/dms/components/GroupChatProfileCard.tsx:62
+#: src/components/dms/InitiateChatFlow.tsx:919
msgid "{handle} can’t be added"
msgstr ""
@@ -547,7 +599,7 @@ msgstr ""
msgid "{handle} can't be messaged"
msgstr "không thể nhắn tin cho {handle}"
-#: src/components/dms/InitiateChatFlow.tsx:817
+#: src/components/dms/InitiateChatFlow.tsx:880
msgid "{handle} can’t be messaged"
msgstr ""
@@ -559,6 +611,16 @@ msgstr ""
msgid "{hours, plural, one {# hour} other {# hours}}"
msgstr ""
+#. Displayed when the number of requests is greater than 20
+#: src/screens/Messages/components/RequestStatus.tsx:69
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
+#: src/screens/Messages/components/ChatListItem.tsx:221
+msgctxt "Displayed when there are more than 20 requests to join a group chat"
+msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests"
+msgstr ""
+
#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack
#: src/components/StarterPack/StarterPackCard.tsx:102
msgid "{joinedAllTimeCount, plural, other {# users have}} joined!"
@@ -581,7 +643,7 @@ msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}
msgstr ""
#. The number of group chat members out of the total number of permitted users.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39
msgid "{memberCount}/{memberLimit}"
msgstr ""
@@ -607,7 +669,7 @@ msgstr ""
msgid "{name}'s starter pack"
msgstr ""
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334
msgid "{notificationCount, plural, one {# unread item} other {# unread items}}"
msgstr "{notificationCount, plural, other {# mục chưa đọc}}"
@@ -629,12 +691,12 @@ msgid "{rank}."
msgstr "{rank}."
#. The number of requests to join a group chat.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61
msgid "{requestCount, plural, one {# request} other {# requests}}"
msgstr ""
-#. Displayed when there are more than 50 requests to join a group chat
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48
+#. Displayed when there are more than 20 requests to join a group chat
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56
msgid "{requestCount}+ requests"
msgstr ""
@@ -795,8 +857,11 @@ msgstr ""
#: src/components/contacts/screens/VerifyNumber.tsx:99
#: src/components/contacts/screens/VerifyNumber.tsx:155
-#: src/components/dms/dialogs/NewChatDialog.tsx:49
-#: src/components/dms/dialogs/NewChatDialog.tsx:87
+#: src/components/dms/dialogs/NewChatDialog.tsx:52
+#: src/components/dms/dialogs/NewChatDialog.tsx:90
+#: src/components/dms/LeaveConvoPrompt.tsx:38
+#: src/screens/Messages/JoinRequests.tsx:188
+#: src/screens/Messages/JoinRequests.tsx:220
msgid "A network error occurred. Please check your internet connection."
msgstr ""
@@ -804,7 +869,7 @@ msgstr ""
msgid "A new code has been sent"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94
msgid "A new form of verification"
msgstr "Một dạng xác thực hoàn toàn mới"
@@ -827,11 +892,11 @@ msgstr ""
msgid "A screenshot of 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/components/dms/dialogs/NewChatDialog.tsx:102
+#: src/components/dms/dialogs/NewChatDialog.tsx:105
msgid "A selected recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:547
+#: src/Navigation.tsx:459
#: src/screens/Settings/AboutSettings.tsx:78
#: src/screens/Settings/Settings.tsx:255
#: src/screens/Settings/Settings.tsx:258
@@ -847,12 +912,22 @@ msgstr ""
msgid "Accept"
msgstr "Chấp nhận"
+#. Accept a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:459
+msgctxt "button"
+msgid "Accept"
+msgstr "Chấp nhận"
+
#: src/screens/Messages/components/RequestButtons.tsx:280
msgid "Accept chat request"
msgstr "Chấp nhận yêu cầu trò chuyện"
+#: src/screens/Messages/JoinRequests.tsx:453
+msgid "Accept join request"
+msgstr ""
+
#. Accept a chat request
-#: src/screens/Messages/components/RequestListItem.tsx:48
+#: src/screens/Messages/components/RequestListItem.tsx:51
msgid "Accept Request"
msgstr "Chấp nhận yêu cầu"
@@ -860,17 +935,26 @@ msgstr "Chấp nhận yêu cầu"
msgid "Accept this language suggestion"
msgstr ""
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186
+msgid "Accepted conversations"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:94
+msgid "Access requested! The group owner will review your request."
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:45
#: src/screens/Settings/Settings.tsx:233
#: src/screens/Settings/Settings.tsx:236
msgid "Accessibility"
msgstr "Trợ năng"
-#: src/Navigation.tsx:390
+#: src/Navigation.tsx:382
msgid "Accessibility Settings"
msgstr "Cài đặt trợ năng"
-#: src/Navigation.tsx:406
+#: src/Navigation.tsx:398
#: src/screens/Login/LoginForm.tsx:192
#: src/screens/Settings/AccountSettings.tsx:56
#: src/screens/Settings/Settings.tsx:173
@@ -945,25 +1029,21 @@ msgctxt "toast"
msgid "Account unmuted"
msgstr "Tài khoản đã được bật lại thông báo"
-#: src/components/verification/VerifierDialog.tsx:99
+#: src/components/verification/VerifierDialog.tsx:100
msgid "Accounts with a scalloped blue check mark <0><1/>0> can verify others. These trusted verifiers are selected by Bluesky."
msgstr "Tài khoản có dấu tích xanh hình viền răng cưa <0><1/>0> có thể xác minh người khác. Những người xác minh đáng tin cậy này được chọn bởi Bluesky."
#: src/lib/hooks/useNotificationHandler.ts:216
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105
-#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:204
+#: src/screens/Settings/NotificationSettings/index.tsx:309
msgid "Activity from others"
msgstr ""
-#: src/Navigation.tsx:515
-msgid "Activity notifications"
-msgstr ""
-
#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179
#: src/components/dialogs/MutedWords.tsx:337
#: src/components/dialogs/StarterPackDialog.tsx:376
#: src/components/dialogs/StarterPackDialog.tsx:388
-#: src/components/dms/AddMembersFlow.tsx:393
+#: src/components/dms/AddMembersFlow.tsx:403
#: src/view/com/modals/UserAddRemoveLists.tsx:236
msgid "Add"
msgstr "Thêm"
@@ -999,8 +1079,8 @@ msgstr "Thêm tài khoản"
#: src/view/com/composer/GifAltText.tsx:76
#: src/view/com/composer/GifAltText.tsx:150
#: src/view/com/composer/GifAltText.tsx:217
-#: src/view/com/composer/photos/Gallery.tsx:199
-#: src/view/com/composer/photos/Gallery.tsx:234
+#: src/view/com/composer/photos/Gallery.tsx:201
+#: src/view/com/composer/photos/Gallery.tsx:236
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95
#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103
msgid "Add alt text"
@@ -1012,16 +1092,16 @@ msgstr "Thêm văn bản thay thế (không bắt buộc)"
#: src/screens/Settings/Settings.tsx:575
#: src/screens/Settings/Settings.tsx:578
-#: src/view/shell/desktop/LeftNav.tsx:275
-#: src/view/shell/desktop/LeftNav.tsx:278
+#: src/view/shell/desktop/LeftNav.tsx:276
+#: src/view/shell/desktop/LeftNav.tsx:279
msgid "Add another account"
msgstr "Thêm tài khoản khác"
-#: src/view/com/composer/Composer.tsx:1401
+#: src/view/com/composer/Composer.tsx:1454
msgid "Add another post"
msgstr "Thêm bài"
-#: src/view/com/composer/Composer.tsx:2067
+#: src/view/com/composer/Composer.tsx:2117
msgid "Add another post to thread"
msgstr ""
@@ -1035,7 +1115,7 @@ msgstr "Thêm mật khẩu ứng dụng"
msgid "Add App Password"
msgstr "Thêm mật khẩu ứng dụng"
-#: src/screens/Settings/AutomationLabelSettings.tsx:166
+#: src/screens/Settings/AutomationLabelSettings.tsx:170
msgid "Add automation label to account"
msgstr ""
@@ -1043,7 +1123,7 @@ msgstr ""
msgid "Add emoji reaction"
msgstr "Thêm emoji để bày tỏ cảm xúc"
-#: src/components/dms/AddMembersFlow.tsx:474
+#: src/components/dms/AddMembersFlow.tsx:485
msgid "Add group chat members"
msgstr ""
@@ -1052,7 +1132,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:499
+#: src/view/com/composer/SelectMediaButton.tsx:505
msgid "Add media to post"
msgstr ""
@@ -1062,8 +1142,8 @@ msgstr ""
msgid "Add members"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:526
-#: src/components/moderation/ReportDialog/index.tsx:530
+#: src/components/moderation/ReportDialog/index.tsx:528
+#: src/components/moderation/ReportDialog/index.tsx:532
msgid "Add more details (optional)"
msgstr "Thêm thông tin chi tiết (không bắt buộc)"
@@ -1080,8 +1160,8 @@ msgstr "Thêm từ ẩn với những thiết lập hiện tại"
msgid "Add muted words and tags"
msgstr "Thêm từ cấm và thẻ"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171
#: src/screens/ProfileList/AboutSection.tsx:72
#: src/screens/ProfileList/AboutSection.tsx:90
msgid "Add people"
@@ -1165,7 +1245,7 @@ msgstr ""
msgid "Additional details (limit 1000 characters)"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:544
+#: src/components/moderation/ReportDialog/index.tsx:546
msgid "Additional details (limit 300 characters)"
msgstr "Thông tin chi tiết thêm (tối đa 300 kí tự)"
@@ -1228,12 +1308,12 @@ msgstr ""
msgid "Age assurance only takes a few minutes"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:224
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:220
msgid "alice@example.com"
msgstr "alice@example.com"
#. the default tab in the interests tab bar
-#: src/components/dms/ReactionsDialog.tsx:284
+#: src/components/dms/ReactionsDialog.tsx:288
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201
#: src/view/screens/Notifications.tsx:86
msgid "All"
@@ -1241,7 +1321,7 @@ msgstr "Tất cả"
#. Tab label showing the total count of reactions on a chat message.
#. placeholder {0}: tab.count
-#: src/components/dms/ReactionsDialog.tsx:381
+#: src/components/dms/ReactionsDialog.tsx:385
msgid "All {0}"
msgstr ""
@@ -1278,13 +1358,13 @@ msgstr "Cho phép truy cập tin nhắn của bạn"
msgid "Allow anyone to reply"
msgstr ""
-#: src/screens/Messages/Settings.tsx:138
-#: src/screens/Messages/Settings.tsx:153
+#: src/screens/Messages/Settings.tsx:140
+#: src/screens/Messages/Settings.tsx:155
msgid "Allow direct messages from"
msgstr ""
-#: src/screens/Messages/Settings.tsx:184
-#: src/screens/Messages/Settings.tsx:199
+#: src/screens/Messages/Settings.tsx:186
+#: src/screens/Messages/Settings.tsx:201
msgid "Allow group chat invites from"
msgstr ""
@@ -1338,12 +1418,12 @@ msgstr ""
msgid "Already signed in as @{0}"
msgstr "Đã đăng nhập dưới tên @{0}"
-#: src/components/images/AutoSizedImage.tsx:190
-#: src/components/images/Gallery/index.tsx:522
-#: src/components/images/ImageLayoutGridItem.tsx:120
+#: src/components/images/AutoSizedImage.tsx:204
+#: src/components/images/Gallery/index.tsx:576
+#: src/components/images/ImageLayoutGridItem.tsx:142
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94
#: src/view/com/composer/GifAltText.tsx:100
-#: src/view/com/composer/photos/Gallery.tsx:209
+#: src/view/com/composer/photos/Gallery.tsx:211
msgid "ALT"
msgstr "ALT"
@@ -1362,7 +1442,7 @@ msgid "Alt Text"
msgstr "Văn bản thay thế"
#: src/view/com/composer/GifAltText.tsx:105
-#: src/view/com/composer/photos/Gallery.tsx:128
+#: src/view/com/composer/photos/Gallery.tsx:130
msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone."
msgstr "Văn bản thay thế mô tả hình ảnh cho người khiếm thị hoặc thị lực yếu, giúp bổ sung ngữ cảnh."
@@ -1387,7 +1467,7 @@ msgstr "Đã có lỗi xảy ra"
msgid "An error occurred"
msgstr "Đã có lỗi xảy ra"
-#: src/view/com/composer/state/video.ts:411
+#: src/view/com/composer/state/video.ts:401
msgid "An error occurred while compressing the video."
msgstr "Đã có lỗi xảy ra khi đang nén video."
@@ -1432,11 +1512,11 @@ msgstr "Đã có lỗi xảy ra khi đang lưu mã QR!"
msgid "An error occurred while trying to follow all"
msgstr "Đã có lỗi xảy ra khi đang cố gắng theo dõi tất cả"
-#: src/view/com/composer/state/video.ts:468
+#: src/view/com/composer/state/video.ts:453
msgid "An error occurred while uploading the video. {message}"
msgstr ""
-#: src/view/com/composer/state/video.ts:460
+#: src/view/com/composer/state/video.ts:445
msgid "An error occurred while uploading the video. Please check your internet connection and try again."
msgstr ""
@@ -1461,19 +1541,19 @@ msgstr ""
msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts."
msgstr "Một hình vẽ cho thấy Bluesky chọn người xác minh đáng tin cậy, và rồi những người xác minh đáng tin cậy này xác minh từng tài khoản cá nhân khác."
-#: src/screens/Messages/components/InviteLinkDialog.tsx:172
-msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time."
+#: src/screens/Messages/components/InviteLinkDialog.tsx:171
+msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time."
msgstr ""
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239
msgid "An issue not included in these options"
msgstr "Vấn đề không nằm trong các tùy chọn này"
-#: src/components/dms/dialogs/NewChatDialog.tsx:85
+#: src/components/dms/dialogs/NewChatDialog.tsx:88
msgid "An issue occurred creating the group chat, please try again."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:47
+#: src/components/dms/dialogs/NewChatDialog.tsx:50
msgid "An issue occurred starting the chat, please try again."
msgstr ""
@@ -1490,7 +1570,7 @@ msgstr "Có vấn đề xảy ra khi đang mở cuộc trò chuyện"
msgid "An issue occurred, please try again."
msgstr "Có vấn đề xảy ra, vui lòng thử lại."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121
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 "Phác thảo một iPhone hiển thị ứng dụng Bluesky mở trang hồ sơ của một người dùng đã được xác minh với dấu tích xanh ngay cạnh tên hiển thị."
@@ -1539,13 +1619,17 @@ msgstr ""
msgid "Anyone can interact"
msgstr ""
+#: src/components/intents/GroupChatJoinDialog.tsx:323
+msgid "Anyone can join"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:142
#: src/screens/Messages/components/InviteLinkDialog.tsx:143
-#: src/screens/Messages/components/InviteLinkDialog.tsx:144
msgid "Anyone can join instantly"
msgstr ""
+#: src/screens/Messages/components/InviteLinkDialog.tsx:147
#: src/screens/Messages/components/InviteLinkDialog.tsx:148
-#: src/screens/Messages/components/InviteLinkDialog.tsx:149
msgid "Anyone can request to join"
msgstr ""
@@ -1555,11 +1639,11 @@ msgstr ""
msgid "Anyone who follows me"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:436
+#: src/screens/Messages/components/InviteLinkDialog.tsx:441
msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one."
msgstr ""
-#: src/Navigation.tsx:555
+#: src/Navigation.tsx:467
#: src/screens/Settings/AppIconSettings/index.tsx:65
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19
#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24
@@ -1597,7 +1681,7 @@ msgstr "Mật khẩu ứng dụng phải dài tối thiểu 4 ký tự"
msgid "App passwords"
msgstr "Mật khẩu ứng dụng"
-#: src/Navigation.tsx:358
+#: src/Navigation.tsx:350
#: src/screens/Settings/AppPasswords.tsx:51
msgid "App Passwords"
msgstr "Mật khẩu ứng dụng"
@@ -1618,7 +1702,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:272
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83
-#: src/screens/Messages/components/ChatDisabled.tsx:121
+#: src/screens/Messages/components/ChatDisabled.tsx:125
msgctxt "toast"
msgid "Appeal submitted"
msgstr "Kháng nghị đã được gửi"
@@ -1632,14 +1716,14 @@ msgstr "Khiếu nại việc đình chỉ"
msgid "Appeal Suspension"
msgstr "Khiếu nại việc đình chỉ"
-#: src/screens/Messages/components/ChatDisabled.tsx:72
-#: src/screens/Messages/components/ChatDisabled.tsx:75
-#: src/screens/Messages/components/ChatDisabled.tsx:129
-#: src/screens/Messages/components/ChatDisabled.tsx:131
+#: src/screens/Messages/components/ChatDisabled.tsx:76
+#: src/screens/Messages/components/ChatDisabled.tsx:79
+#: src/screens/Messages/components/ChatDisabled.tsx:133
+#: src/screens/Messages/components/ChatDisabled.tsx:135
msgid "Appeal this decision"
msgstr "Kháng nghị quyết định này"
-#: src/Navigation.tsx:398
+#: src/Navigation.tsx:390
#: src/screens/Settings/AppearanceSettings.tsx:73
#: src/screens/Settings/Settings.tsx:225
#: src/screens/Settings/Settings.tsx:228
@@ -1675,7 +1759,7 @@ msgstr ""
msgid "Are you sure you want to delete the app password \"{0}\"?"
msgstr "Bạn có chắc chắn muốn xóa mật khẩu ứng dụng \"{0}\" không?"
-#: src/components/dms/MessageContextMenu.tsx:223
+#: src/components/dms/MessageOverlays.tsx:183
msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants."
msgstr ""
@@ -1688,23 +1772,23 @@ 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/screens/Messages/ConversationSettings/prompts.tsx:90
+#: src/screens/Messages/ConversationSettings/prompts.tsx:117
msgid "Are you sure you want to leave {groupName}?"
msgstr ""
-#: src/components/dms/LeaveConvoPrompt.tsx:47
+#: src/components/dms/LeaveConvoPrompt.tsx:57
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: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."
+#: src/components/dms/LeaveConvoPrompt.tsx:56
+msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants."
+msgstr ""
#: src/components/FeedCard.tsx:374
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:1541
+#: src/view/com/composer/Composer.tsx:1590
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?"
@@ -1752,7 +1836,7 @@ msgstr ""
msgid "Automation label"
msgstr ""
-#: src/Navigation.tsx:414
+#: src/Navigation.tsx:406
#: src/screens/Settings/AutomationLabelSettings.tsx:103
msgid "Automation Label"
msgstr ""
@@ -1767,12 +1851,12 @@ msgstr "Tự động phát video và GIF"
msgid "Available"
msgstr ""
-#: src/components/dms/AddMembersFlow.tsx:342
-#: src/components/dms/AddMembersFlow.tsx:509
-#: src/components/dms/AddMembersFlow.tsx:515
-#: src/components/dms/InitiateChatFlow.tsx:491
-#: src/components/dms/InitiateChatFlow.tsx:676
-#: src/components/dms/InitiateChatFlow.tsx:683
+#: src/components/dms/AddMembersFlow.tsx:352
+#: src/components/dms/AddMembersFlow.tsx:520
+#: src/components/dms/AddMembersFlow.tsx:526
+#: src/components/dms/InitiateChatFlow.tsx:517
+#: src/components/dms/InitiateChatFlow.tsx:732
+#: src/components/dms/InitiateChatFlow.tsx:739
#: src/components/moderation/LabelsOnMeDialog.tsx:334
#: src/components/moderation/LabelsOnMeDialog.tsx:335
#: src/screens/Login/ChooseAccountForm.tsx:98
@@ -1783,9 +1867,11 @@ msgstr ""
#: src/screens/Login/LoginForm.tsx:322
#: src/screens/Login/SetNewPasswordForm.tsx:172
#: src/screens/Login/SetNewPasswordForm.tsx:178
-#: src/screens/Messages/components/ChatDisabled.tsx:160
-#: src/screens/Messages/components/ChatDisabled.tsx:162
-#: src/screens/Messages/Inbox.tsx:242
+#: src/screens/Messages/components/ChatDisabled.tsx:164
+#: src/screens/Messages/components/ChatDisabled.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:251
+#: src/screens/Messages/components/InviteLinkDialog.tsx:279
+#: src/screens/Messages/Inbox.tsx:232
#: src/screens/Profile/Header/Shell.tsx:174
#: src/screens/Settings/components/ChangePasswordDialog.tsx:273
#: src/screens/Settings/components/ChangePasswordDialog.tsx:282
@@ -1796,7 +1882,7 @@ msgstr ""
msgid "Back"
msgstr "Trở lại"
-#: src/screens/Messages/Inbox.tsx:241
+#: src/screens/Messages/Inbox.tsx:231
msgid "Back to Chats"
msgstr "Trở lại Chats"
@@ -1840,12 +1926,12 @@ msgstr ""
msgid "Before you can get notifications for {name}'s posts, you must first verify your email."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:148
+#: src/components/dms/dialogs/NewChatDialog.tsx:151
#: src/components/dms/MessageProfileButton.tsx:60
-#: src/screens/Messages/ChatList.tsx:142
-#: src/screens/Messages/ChatList.tsx:200
-#: src/screens/Messages/ChatList.tsx:448
-#: src/screens/Messages/Conversation.tsx:200
+#: src/screens/Messages/ChatList.tsx:147
+#: src/screens/Messages/ChatList.tsx:211
+#: src/screens/Messages/ChatList.tsx:482
+#: src/screens/Messages/Conversation.tsx:208
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94
msgid "Before you can message another user, you must first verify your email."
msgstr ""
@@ -1877,7 +1963,7 @@ msgstr "Ngày sinh"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853
#: src/screens/Messages/components/ChatStatusInfo.tsx:67
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222
-#: src/screens/Messages/ConversationSettings/prompts.tsx:115
+#: src/screens/Messages/ConversationSettings/prompts.tsx:142
#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207
#: src/view/com/profile/ProfileMenu.tsx:563
msgid "Block"
@@ -1898,7 +1984,7 @@ msgstr ""
msgid "Block account"
msgstr "Chặn tài khoản"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:112
+#: src/screens/Messages/ConversationSettings/prompts.tsx:139
msgid "Block account?"
msgstr ""
@@ -1912,7 +1998,7 @@ msgstr "Chặn tài khoản"
msgid "Block accounts"
msgstr "Chặn tài khoản"
-#: src/components/dms/AfterReportDialog.tsx:143
+#: src/components/dms/AfterReportDialog.tsx:148
msgid "Block and delete"
msgstr ""
@@ -1936,9 +2022,9 @@ msgstr "Chặn các tài khoản này?"
#: src/components/dms/AfterReportConversationDialog.tsx:221
#: src/components/dms/AfterReportConversationDialog.tsx:224
-#: src/components/dms/AfterReportDialog.tsx:149
-#: src/components/dms/AfterReportDialog.tsx:184
-#: src/components/dms/AfterReportDialog.tsx:187
+#: src/components/dms/AfterReportDialog.tsx:154
+#: src/components/dms/AfterReportDialog.tsx:189
+#: src/components/dms/AfterReportDialog.tsx:192
msgid "Block user"
msgstr "Chặn người dùng"
@@ -1946,9 +2032,9 @@ msgstr "Chặn người dùng"
#: src/components/dms/AfterReportConversationDialog.tsx:182
msgctxt "button"
msgid "Block user"
-msgstr ""
+msgstr "Chặn người dùng"
-#: src/components/dms/AfterReportDialog.tsx:180
+#: src/components/dms/AfterReportDialog.tsx:185
msgid "Block user and/or delete this conversation"
msgstr ""
@@ -1956,7 +2042,7 @@ msgstr ""
msgid "Block user and/or leave this conversation"
msgstr ""
-#: src/components/Post/Embed/index.tsx:197
+#: src/components/Post/Embed/index.tsx:216
msgid "Blocked"
msgstr "Đã bị chặn"
@@ -1964,13 +2050,13 @@ msgstr "Đã bị chặn"
msgid "Blocked accounts"
msgstr "Tài khoản đã bị chặn"
-#: src/Navigation.tsx:199
+#: src/Navigation.tsx:191
#: src/view/screens/ModerationBlockedAccounts.tsx:95
msgid "Blocked Accounts"
msgstr "Tài khoản đã bị chặn"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851
-#: src/screens/Messages/ConversationSettings/prompts.tsx:113
+#: src/screens/Messages/ConversationSettings/prompts.tsx:140
#: src/view/com/profile/ProfileMenu.tsx:558
msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you."
msgstr "Tài khoản bị chặn không thể trả lời bài đăng của bạn, đề cập đến bạn hoặc tương tác với bạn."
@@ -2029,7 +2115,7 @@ msgstr "Bluesky cùng bạn bè sẽ vui hơn!"
msgid "Bluesky is more fun with friends"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108
msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here."
msgstr ""
@@ -2053,7 +2139,7 @@ msgstr "Bluesky sẽ chọn một tập hợp các tài khoản được đề x
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 "Bluesky sẽ không hiển thị hồ sơ và bài đăng của bạn cho người dùng không đăng nhập. Các ứng dụng khác có thể không tuân thủ yêu cầu này. Việc này không giúp tài khoản của bạn bảo mật."
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136
msgid "Bluesky will proactively verify notable and authentic accounts."
msgstr "Bluesky sẽ chủ động xác thực các tài khoản nổi bật và đáng tin."
@@ -2137,23 +2223,30 @@ msgstr "Doanh nghiệp"
msgid "Button to go back to the home timeline"
msgstr ""
+#. The owner (creator) of a group chat.
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
#. placeholder {0}: sanitizeHandle(handle, '@')
#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@')
-#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@')
#: src/components/LabelingServiceCard/index.tsx:62
-#: src/components/moderation/ReportDialog/index.tsx:845
+#: src/components/moderation/ReportDialog/index.tsx:847
+#: src/screens/Messages/JoinRequest.tsx:166
#: src/screens/Search/components/StarterPackCard.tsx:107
#: src/screens/Search/Explore.tsx:971
msgid "By {0}"
msgstr "Bởi {0}"
#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@')
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:462
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:451
msgid "By <0>{0}0>"
msgstr "Bởi <0>{0}0>"
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:78
+msgid "By <0>{ownerDisplayName}0>"
+msgstr ""
+
#. placeholder {0}: authorProfile.handle
-#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79
+#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80
msgid "by <0>@{0}0>"
msgstr ""
@@ -2181,7 +2274,7 @@ msgstr "Bằng việc tạo tài khoản, bạn đồng ý với <0>Điều kho
msgid "By you"
msgstr "Bởi bạn"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:69
msgid "Camera"
msgstr "Máy ảnh"
@@ -2192,8 +2285,8 @@ msgstr "Máy ảnh"
#: src/components/contacts/screens/GetContacts.tsx:297
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:126
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128
#: src/components/dialogs/InAppBrowserConsent.tsx:99
#: src/components/dialogs/InAppBrowserConsent.tsx:105
#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192
@@ -2212,10 +2305,10 @@ msgstr "Máy ảnh"
#: src/features/liveNow/components/GoLiveDialog.tsx:254
#: src/lib/media/picker.tsx:38
#: src/screens/Deactivated.tsx:150
-#: src/screens/Messages/components/InviteLinkDialog.tsx:458
-#: src/screens/Messages/components/InviteLinkDialog.tsx:462
-#: src/screens/Messages/ConversationSettings/prompts.tsx:70
-#: src/screens/Messages/ConversationSettings/prompts.tsx:94
+#: src/screens/Messages/components/InviteLinkDialog.tsx:463
+#: src/screens/Messages/components/InviteLinkDialog.tsx:467
+#: src/screens/Messages/ConversationSettings/prompts.tsx:97
+#: src/screens/Messages/ConversationSettings/prompts.tsx:121
#: src/screens/Profile/Header/EditProfileDialog.tsx:215
#: src/screens/Profile/Header/EditProfileDialog.tsx:223
#: src/screens/Search/Shell.tsx:405
@@ -2228,11 +2321,11 @@ msgstr "Máy ảnh"
#: src/screens/Settings/Settings.tsx:300
#: src/screens/Takendown.tsx:102
#: src/screens/Takendown.tsx:105
-#: src/view/com/composer/Composer.tsx:1619
-#: src/view/com/composer/Composer.tsx:1629
+#: src/view/com/composer/Composer.tsx:1668
+#: src/view/com/composer/Composer.tsx:1678
#: src/view/com/composer/photos/EditImageDialog.web.tsx:44
#: src/view/com/composer/photos/EditImageDialog.web.tsx:53
-#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:228
msgid "Cancel"
msgstr "Hủy bỏ"
@@ -2248,9 +2341,9 @@ msgstr "Hủy kích hoạt lại và đăng xuất"
msgid "Cancel search"
msgstr "Huỷ tìm kiếm"
-#: src/components/PostControls/index.tsx:110
-#: src/components/PostControls/index.tsx:141
-#: src/components/PostControls/index.tsx:169
+#: src/components/PostControls/index.tsx:108
+#: src/components/PostControls/index.tsx:138
+#: src/components/PostControls/index.tsx:166
#: src/state/shell/composer/index.tsx:105
msgid "Cannot interact with a blocked user"
msgstr "Không thể tương tác với người dùng đã bị chặn"
@@ -2264,7 +2357,7 @@ msgstr "Phụ đề (.vtt)"
msgid "Captions & alt text"
msgstr "Phụ đề & văn bản thay thế"
-#: src/components/images/Gallery/index.tsx:255
+#: src/components/images/Gallery/index.tsx:263
msgid "carousel"
msgstr ""
@@ -2297,7 +2390,7 @@ msgstr ""
msgid "Change Handle"
msgstr "Thay đổi tên tài khoản"
-#: src/components/moderation/ReportDialog/index.tsx:443
+#: src/components/moderation/ReportDialog/index.tsx:445
msgid "Change moderation service"
msgstr "Thay đổi dịch vụ kiểm duyệt"
@@ -2310,11 +2403,11 @@ msgstr ""
msgid "Change password dialog"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:310
+#: src/components/moderation/ReportDialog/index.tsx:312
msgid "Change report category"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:388
+#: src/components/moderation/ReportDialog/index.tsx:390
msgid "Change report reason"
msgstr "Thay đổi lý do báo cáo"
@@ -2344,9 +2437,9 @@ msgid "Changes to the starter pack will not be reflected in the list after creat
msgstr ""
#: src/lib/hooks/useNotificationHandler.ts:133
-#: src/Navigation.tsx:573
-#: src/view/shell/bottom-bar/BottomBar.tsx:229
-#: src/view/shell/desktop/LeftNav.tsx:697
+#: src/Navigation.tsx:485
+#: src/view/shell/bottom-bar/BottomBar.tsx:230
+#: src/view/shell/desktop/LeftNav.tsx:698
#: src/view/shell/Drawer.tsx:469
msgid "Chat"
msgstr "Chat"
@@ -2361,6 +2454,13 @@ msgstr "Đã xóa đoạn chat"
msgid "Chat ended"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:105
+#: src/components/intents/GroupChatJoinDialog.tsx:228
+#: src/components/intents/GroupChatJoinDialog.tsx:259
+#: src/components/Post/Embed/JoinRequestEmbed.tsx:94
+msgid "Chat invite link no longer available"
+msgstr ""
+
#: src/components/dms/getSystemMessageInfo.ts:104
msgid "Chat locked"
msgstr ""
@@ -2378,30 +2478,30 @@ msgctxt "toast"
msgid "Chat muted"
msgstr "Đã tắt thông báo chat"
-#: src/components/dms/dialogs/NewChatDialog.tsx:66
+#: src/components/dms/dialogs/NewChatDialog.tsx:69
msgid "Chat recipient is not followed by the sender."
msgstr ""
-#: src/Navigation.tsx:588
+#: src/Navigation.tsx:505
msgid "Chat request inbox"
msgstr "Hộp thư yêu cầu trò chuyện"
-#: src/screens/Messages/Inbox.tsx:57
-#: src/screens/Messages/Inbox.tsx:99
+#: src/screens/Messages/Inbox.tsx:56
+#: src/screens/Messages/Inbox.tsx:96
msgid "Chat requests"
msgstr "Yêu cầu trò chuyện"
#: src/components/dms/ConvoMenu.tsx:84
-#: src/Navigation.tsx:583
-#: src/screens/Messages/ChatList.tsx:79
+#: src/Navigation.tsx:500
#: src/screens/Messages/ChatList.tsx:83
-#: src/screens/Messages/ChatList.tsx:472
-#: src/screens/Messages/ChatList.tsx:505
-#: src/screens/Messages/Settings.tsx:37
+#: src/screens/Messages/ChatList.tsx:87
+#: src/screens/Messages/ChatList.tsx:508
+#: src/screens/Messages/ChatList.tsx:543
+#: src/screens/Messages/Settings.tsx:38
msgid "Chat settings"
msgstr "Cài đặt chat"
-#: src/screens/Messages/Settings.tsx:129
+#: src/screens/Messages/Settings.tsx:131
msgid "Chat Settings"
msgstr "Cài đặt chat"
@@ -2423,9 +2523,9 @@ msgctxt "toast"
msgid "Chat unmuted"
msgstr "Đã bật lại thông báo chat"
-#: src/screens/Messages/ChatList.tsx:73
-#: src/screens/Messages/ChatList.tsx:460
+#: src/screens/Messages/ChatList.tsx:77
#: src/screens/Messages/ChatList.tsx:494
+#: src/screens/Messages/ChatList.tsx:532
msgid "Chats"
msgstr "Chats"
@@ -2479,7 +2579,7 @@ msgstr ""
msgid "Choose this color as your avatar"
msgstr "Chọn màu này làm hình đại diện của bạn"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:211
+#: src/screens/Messages/components/InviteLinkDialog.tsx:217
msgid "Choose who can join this group chat and how."
msgstr ""
@@ -2533,7 +2633,7 @@ msgstr ""
msgid "click here"
msgstr "nhấn vào đây"
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128
msgid "Click here to add people to this group chat"
msgstr ""
@@ -2541,7 +2641,7 @@ msgstr ""
msgid "Click here to contact our support team"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142
msgid "Click here to create or manage an invite link for this group chat"
msgstr ""
@@ -2558,7 +2658,7 @@ msgstr ""
msgid "Click here to resend the email"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388
msgid "Click here to restart the verification process."
msgstr ""
@@ -2567,11 +2667,11 @@ msgstr ""
msgid "Click here to update your birthdate"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285
msgid "Click here to update your email"
msgstr ""
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143
msgid "Click here to view the invite link for this group chat"
msgstr ""
@@ -2580,7 +2680,7 @@ msgstr ""
msgid "Click to open tag menu for {0}"
msgstr ""
-#: src/components/dms/MessageItem.tsx:559
+#: src/components/dms/MessageItem.tsx:541
msgid "Click to retry failed message"
msgstr "Nhấn để thử lại tin nhắn không thành công"
@@ -2594,28 +2694,30 @@ msgstr "Nhấn để thử lại tin nhắn không thành công"
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233
#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239
#: src/components/dialogs/LanguageSelectDialog.tsx:359
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200
#: src/components/dialogs/SearchablePeopleList.tsx:340
#: src/components/dialogs/StarterPackDialog.tsx:187
-#: src/components/dms/AddMembersFlow.tsx:367
+#: src/components/dms/AddMembersFlow.tsx:377
#: src/components/dms/AfterReportConversationDialog.tsx:91
#: src/components/dms/AfterReportConversationDialog.tsx:96
#: src/components/dms/AfterReportConversationDialog.tsx:247
#: src/components/dms/AfterReportConversationDialog.tsx:252
-#: src/components/dms/AfterReportDialog.tsx:89
#: src/components/dms/AfterReportDialog.tsx:94
-#: src/components/dms/AfterReportDialog.tsx:207
+#: src/components/dms/AfterReportDialog.tsx:99
#: src/components/dms/AfterReportDialog.tsx:212
+#: src/components/dms/AfterReportDialog.tsx:217
#: src/components/dms/EmojiPopup.android.tsx:59
-#: src/components/dms/InitiateChatFlow.tsx:516
+#: src/components/dms/InitiateChatFlow.tsx:542
+#: src/components/intents/GroupChatJoinDialog.tsx:205
+#: src/components/intents/GroupChatJoinDialog.tsx:240
#: src/components/NewskieDialog.tsx:169
#: src/components/NewskieDialog.tsx:175
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107
@@ -2623,14 +2725,14 @@ msgstr "Nhấn để thử lại tin nhắn không thành công"
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128
#: src/components/verification/VerificationsDialog.tsx:146
-#: src/components/verification/VerifierDialog.tsx:146
+#: src/components/verification/VerifierDialog.tsx:147
#: src/components/WhoCanReply.tsx:236
#: src/components/WhoCanReply.tsx:243
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45
#: src/features/liveNow/components/EditLiveDialog.tsx:217
#: src/features/liveNow/components/EditLiveDialog.tsx:223
-#: src/screens/Messages/components/InviteLinkDialog.tsx:481
-#: src/screens/Messages/components/InviteLinkDialog.tsx:486
+#: src/screens/Messages/components/InviteLinkDialog.tsx:487
+#: src/screens/Messages/components/InviteLinkDialog.tsx:492
#: src/screens/Settings/components/ChangePasswordDialog.tsx:288
#: src/screens/Settings/components/ChangePasswordDialog.tsx:293
#: src/view/com/feeds/MissingFeed.tsx:211
@@ -2647,6 +2749,10 @@ msgstr "Đóng hộp thoại đang mở"
msgid "Close alert"
msgstr "Đóng cảnh báo"
+#: src/screens/Messages/components/RequestStatus.tsx:82
+msgid "Close banner"
+msgstr ""
+
#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36
msgid "Close bottom drawer"
msgstr "Đóng trình đơn kéo dưới"
@@ -2657,8 +2763,9 @@ msgstr "Đóng trình đơn kéo dưới"
#: src/components/dialogs/LanguageSelectDialog.tsx:221
#: src/components/dialogs/LanguageSelectDialog.tsx:322
#: src/components/dialogs/LanguageSelectDialog.tsx:354
+#: src/components/dialogs/NotificationSettingsDialog.tsx:94
#: src/components/verification/VerificationsDialog.tsx:138
-#: src/components/verification/VerifierDialog.tsx:139
+#: src/components/verification/VerifierDialog.tsx:140
#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36
msgid "Close dialog"
msgstr "Đóng hộp thoại"
@@ -2672,7 +2779,7 @@ msgid "Close image"
msgstr "Đóng hình ảnh"
#: src/components/Lightbox/Lightbox.web.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:326
+#: src/components/Lightbox/Lightbox.web.tsx:334
msgid "Close image viewer"
msgstr ""
@@ -2683,6 +2790,14 @@ msgstr ""
msgid "Close menu"
msgstr "Đóng bảng chọn"
+#: src/screens/Messages/components/RequestStatus.tsx:83
+msgid "Close the incoming requests banner"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:198
+#: src/components/intents/GroupChatJoinDialog.tsx:199
+#: src/components/intents/GroupChatJoinDialog.tsx:235
+#: src/components/intents/GroupChatJoinDialog.tsx:236
#: src/components/Menu/index.tsx:361
msgid "Close this dialog"
msgstr "Đóng hộp thoại này"
@@ -2695,7 +2810,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:1627
+#: src/view/com/composer/Composer.tsx:1676
msgid "Closes post composer and discards post draft"
msgstr "Đóng trình soạn bài đăng và huỷ bỏ nháp"
@@ -2725,7 +2840,7 @@ msgid "Comics"
msgstr "Truyện tranh"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46
-#: src/Navigation.tsx:348
+#: src/Navigation.tsx:340
#: src/view/screens/CommunityGuidelines.tsx:28
msgid "Community Guidelines"
msgstr "Quy tắc cộng đồng"
@@ -2740,12 +2855,12 @@ msgstr "Hoàn thành thử thách"
#: src/lib/hotkeys/index.tsx:66
#: src/view/com/feeds/ComposerPrompt.tsx:147
-#: src/view/shell/desktop/LeftNav.tsx:586
+#: src/view/shell/desktop/LeftNav.tsx:587
msgid "Compose new post"
msgstr "Soạn bài đăng mới"
#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0
-#: src/view/com/composer/Composer.tsx:1503
+#: src/view/com/composer/Composer.tsx:1552
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ự}}"
@@ -2753,11 +2868,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:2464
+#: src/view/com/composer/Composer.tsx:2514
msgid "Compressing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2466
+#: src/view/com/composer/Composer.tsx:2516
msgid "Compressing video..."
msgstr "Đang nén video..."
@@ -2780,7 +2895,7 @@ msgstr "Đã cấu hình trong <0>cài đặt kiểm duyệt0>."
msgid "Confirm"
msgstr "Xác nhận"
-#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38
+#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37
#: src/screens/Login/LoginForm.tsx:284
#: src/screens/Settings/components/ChangePasswordDialog.tsx:187
#: src/screens/Settings/components/ChangePasswordDialog.tsx:191
@@ -2842,7 +2957,7 @@ msgstr "Nội dung & phương tiện"
msgid "Content and media"
msgstr "Nội dung và phương tiện"
-#: src/Navigation.tsx:531
+#: src/Navigation.tsx:443
msgid "Content and Media"
msgstr "Nội dung và phương tiện"
@@ -2889,7 +3004,7 @@ msgstr "Nền trình đơn, nhấn để đóng trình đơn."
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171
#: src/screens/Onboarding/StepInterests/index.tsx:93
-#: src/screens/Onboarding/StepProfile/index.tsx:303
+#: src/screens/Onboarding/StepProfile/index.tsx:304
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117
msgid "Continue"
@@ -2908,29 +3023,29 @@ msgstr ""
msgid "Continue thread..."
msgstr "Tiếp tục thảo luận..."
-#: src/components/dms/AddMembersFlow.tsx:307
-#: src/components/dms/InitiateChatFlow.tsx:443
+#: src/components/dms/AddMembersFlow.tsx:317
+#: src/components/dms/InitiateChatFlow.tsx:469
msgid "Continue to group name"
msgstr ""
#: src/screens/Onboarding/StepInterests/index.tsx:90
-#: src/screens/Onboarding/StepProfile/index.tsx:300
+#: src/screens/Onboarding/StepProfile/index.tsx:301
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114
#: src/screens/Signup/BackNextButtons.tsx:61
msgid "Continue to next step"
msgstr "Tiếp tục bước tiếp theo"
-#: src/screens/Messages/Conversation.tsx:65
+#: src/screens/Messages/Conversation.tsx:67
msgid "Conversation"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:309
+#: src/screens/Messages/components/ChatListItem.tsx:329
msgid "Conversation deleted"
msgstr "Hội thoại đã bị xóa"
-#: src/components/dms/AfterReportDialog.tsx:144
-#: src/components/dms/AfterReportDialog.tsx:147
+#: src/components/dms/AfterReportDialog.tsx:149
+#: src/components/dms/AfterReportDialog.tsx:152
msgctxt "toast"
msgid "Conversation deleted"
msgstr "Hội thoại đã bị xóa"
@@ -2941,11 +3056,18 @@ msgctxt "toast"
msgid "Conversation left"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:40
+#: src/screens/Messages/JoinRequests.tsx:192
+#: src/screens/Messages/JoinRequests.tsx:224
+msgid "Conversation not found."
+msgstr ""
+
#: src/screens/Settings/AboutSettings.tsx:162
msgid "Copied build version to clipboard"
msgstr "Đã sao chép phiên bản xây dựng vào bảng ghi tạm"
-#: src/components/dms/MessageContextMenu.tsx:79
+#: src/components/dms/ChatInvite/Root.tsx:82
+#: src/components/dms/MessageContextMenu.tsx:71
#: src/components/PostControls/DiscoverDebug.tsx:36
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272
#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77
@@ -2997,6 +3119,7 @@ msgstr "Sao chép DID"
msgid "Copy host"
msgstr "Sao chép máy chủ"
+#: src/components/dms/ChatInvite/Root.tsx:74
#: src/components/StarterPack/ShareDialog.tsx:115
#: src/screens/StarterPack/StarterPackScreen.tsx:644
msgid "Copy link"
@@ -3027,8 +3150,8 @@ msgstr ""
msgid "Copy link to starter pack"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:169
-#: src/components/dms/MessageContextMenu.tsx:173
+#: src/components/dms/MessageContextMenu.tsx:152
+#: src/components/dms/MessageContextMenu.tsx:156
msgid "Copy message text"
msgstr "Sao chép văn bản tin nhắn"
@@ -3052,7 +3175,7 @@ msgstr "Sao chép giá trị bản ghi TXT"
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108
-#: src/Navigation.tsx:353
+#: src/Navigation.tsx:345
#: src/view/screens/CopyrightPolicy.tsx:25
msgid "Copyright Policy"
msgstr "Chính sách bản quyền"
@@ -3065,7 +3188,7 @@ msgstr ""
msgid "Could not connect to feed service"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:158
+#: src/screens/Messages/components/MessageInputEmbed.tsx:200
msgid "Could not fetch post"
msgstr ""
@@ -3085,8 +3208,8 @@ msgid "Could not follow all matches. {0}"
msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:158
-#: src/components/dms/AfterReportDialog.tsx:134
-#: src/components/dms/LeaveConvoPrompt.tsx:34
+#: src/components/dms/AfterReportDialog.tsx:139
+#: src/components/dms/LeaveConvoPrompt.tsx:36
msgid "Could not leave chat"
msgstr "Không thể rời khỏi chat"
@@ -3094,6 +3217,10 @@ msgstr "Không thể rời khỏi chat"
msgid "Could not load feed"
msgstr "Không thể tải bảng tin"
+#: src/screens/Messages/components/MessageInputEmbed.tsx:321
+msgid "Could not load invite"
+msgstr ""
+
#: src/screens/ProfileList/components/ErrorScreen.tsx:27
#: src/screens/ProfileList/index.tsx:80
#: src/screens/ProfileList/index.tsx:102
@@ -3139,7 +3266,7 @@ msgstr ""
#. Text on button to create a new starter pack
#: src/components/dialogs/StarterPackDialog.tsx:113
#: src/components/dialogs/StarterPackDialog.tsx:210
-#: src/components/dms/InitiateChatFlow.tsx:452
+#: src/components/dms/InitiateChatFlow.tsx:478
#: src/components/StarterPack/ProfileStarterPacks.tsx:329
msgid "Create"
msgstr "Tạo"
@@ -3159,7 +3286,7 @@ msgstr "Tạo mã QR cho gói khởi đầu"
#: src/components/StarterPack/ProfileStarterPacks.tsx:207
#: src/components/StarterPack/ProfileStarterPacks.tsx:316
-#: src/Navigation.tsx:619
+#: src/Navigation.tsx:536
msgid "Create a starter pack"
msgstr "Tạo gói khởi đầu"
@@ -3174,13 +3301,14 @@ msgstr "Tạo gói khởi đầu cho tôi"
#: src/components/WelcomeModal.tsx:158
#: src/components/WelcomeModal.tsx:166
+#: src/screens/Messages/JoinRequest.tsx:300
#: src/screens/Signup/index.tsx:135
#: src/view/com/auth/SplashScreen.tsx:107
#: src/view/com/auth/SplashScreen.web.tsx:116
-#: src/view/shell/bottom-bar/BottomBar.tsx:332
-#: src/view/shell/bottom-bar/BottomBar.tsx:337
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235
+#: src/view/shell/bottom-bar/BottomBar.tsx:333
+#: src/view/shell/bottom-bar/BottomBar.tsx:338
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
#: src/view/shell/NavSignupCard.tsx:48
#: src/view/shell/NavSignupCard.tsx:53
msgid "Create account"
@@ -3198,7 +3326,7 @@ msgstr "Tạo tài khoản"
msgid "Create an account without using this starter pack"
msgstr "Tạo tài khoản nhưng không sử dụng gói khởi đầu này"
-#: src/screens/Onboarding/StepProfile/index.tsx:316
+#: src/screens/Onboarding/StepProfile/index.tsx:317
msgid "Create an avatar instead"
msgstr "Tạo hình đại diện"
@@ -3206,7 +3334,7 @@ msgstr "Tạo hình đại diện"
msgid "Create another"
msgstr "Tạo thêm"
-#: src/components/dms/InitiateChatFlow.tsx:451
+#: src/components/dms/InitiateChatFlow.tsx:477
msgid "Create group chat"
msgstr ""
@@ -3228,19 +3356,20 @@ msgstr ""
msgid "Create moderation list"
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:294
#: src/view/com/auth/SplashScreen.tsx:100
#: src/view/com/auth/SplashScreen.web.tsx:108
msgid "Create new account"
msgstr "Tạo tài khoản mới"
-#: src/screens/Messages/ConversationSettings/index.tsx:488
+#: src/screens/Messages/ConversationSettings/index.tsx:487
msgid "Create or modify an invite link for this group chat"
msgstr ""
#. Accessibility label for button to create a moderation report for the selected option
#. placeholder {0}: option.title
-#: src/components/moderation/ReportDialog/index.tsx:707
-#: src/components/moderation/ReportDialog/index.tsx:752
+#: src/components/moderation/ReportDialog/index.tsx:709
+#: src/components/moderation/ReportDialog/index.tsx:754
msgid "Create report for {0}"
msgstr "Tạo báo cáo cho {0}"
@@ -3256,8 +3385,8 @@ msgstr ""
#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', })
#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })
#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', })
-#: src/screens/Messages/components/InviteLinkDialog.tsx:312
-#: src/screens/Messages/ConversationSettings/index.tsx:441
+#: src/screens/Messages/components/InviteLinkDialog.tsx:324
+#: src/screens/Messages/ConversationSettings/index.tsx:440
#: src/screens/Settings/AppPasswords.tsx:174
msgid "Created {0}"
msgstr "Đã tạo {0}"
@@ -3341,7 +3470,7 @@ msgstr "Mặc định"
msgid "Default icons"
msgstr "Biểu tượng mặc định"
-#: src/components/dms/MessageContextMenu.tsx:224
+#: src/components/dms/MessageOverlays.tsx:184
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275
#: src/screens/Settings/AppPasswords.tsx:213
@@ -3382,15 +3511,15 @@ msgstr "Xóa bản ghi khai báo chat"
msgid "Delete contacts"
msgstr ""
-#: src/components/dms/AfterReportDialog.tsx:146
-#: src/components/dms/AfterReportDialog.tsx:190
-#: src/components/dms/AfterReportDialog.tsx:193
+#: src/components/dms/AfterReportDialog.tsx:151
+#: src/components/dms/AfterReportDialog.tsx:195
+#: src/components/dms/AfterReportDialog.tsx:198
#: src/screens/Messages/components/RequestButtons.tsx:142
#: src/screens/Messages/components/RequestButtons.tsx:144
msgid "Delete conversation"
msgstr "Xóa cuộc trò chuyện"
-#: src/components/dms/MessageContextMenu.tsx:184
+#: src/components/dms/MessageContextMenu.tsx:167
msgid "Delete for me"
msgstr "Xóa cho tôi"
@@ -3399,11 +3528,11 @@ msgstr "Xóa cho tôi"
msgid "Delete list"
msgstr "Xoá danh sách"
-#: src/components/dms/MessageContextMenu.tsx:222
+#: src/components/dms/MessageOverlays.tsx:182
msgid "Delete message"
msgstr "Xóa tin nhắn"
-#: src/components/dms/MessageContextMenu.tsx:181
+#: src/components/dms/MessageContextMenu.tsx:164
msgid "Delete message for me"
msgstr "Xóa tin nhắn cho tôi"
@@ -3413,7 +3542,7 @@ msgstr "Xóa tài khoản của tôi"
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789
-#: src/view/com/composer/Composer.tsx:1515
+#: src/view/com/composer/Composer.tsx:1564
msgid "Delete post"
msgstr "Xóa bài đăng"
@@ -3434,12 +3563,12 @@ msgstr "Xóa danh sách này?"
msgid "Delete this post?"
msgstr "Xóa bài đăng này?"
-#: src/components/Post/Embed/index.tsx:190
+#: src/components/Post/Embed/index.tsx:209
msgid "Deleted"
msgstr "Đã xóa"
-#: src/components/dms/MessagesListHeader.tsx:107
-#: src/screens/Messages/components/ChatListItem.tsx:132
+#: src/components/dms/MessagesListHeader.tsx:109
+#: src/screens/Messages/components/ChatListItem.tsx:134
#: src/screens/Messages/ConversationSettings/Member.tsx:75
msgid "Deleted Account"
msgstr "Đã xóa tài khoản"
@@ -3507,13 +3636,13 @@ msgstr "Hộp thoại: điều chỉnh ai có thể tương tác với bài đă
msgid "Dim"
msgstr "Mờ"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:344
-#: src/screens/Messages/components/InviteLinkDialog.tsx:349
+#: src/screens/Messages/components/InviteLinkDialog.tsx:356
+#: src/screens/Messages/components/InviteLinkDialog.tsx:361
msgid "Disable"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240
msgid "Disable 2FA"
msgstr ""
@@ -3521,7 +3650,7 @@ msgstr ""
msgid "Disable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156
msgid "Disable email 2FA"
msgstr ""
@@ -3534,8 +3663,8 @@ msgstr "Tắt Email 2FA"
msgid "Disable haptic feedback"
msgstr "Tắt phản hồi xúc giác"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:446
-#: src/screens/Messages/components/InviteLinkDialog.tsx:452
+#: src/screens/Messages/components/InviteLinkDialog.tsx:451
+#: src/screens/Messages/components/InviteLinkDialog.tsx:457
msgid "Disable link"
msgstr ""
@@ -3547,7 +3676,7 @@ msgstr ""
msgid "Disable replies entirely"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:426
+#: src/screens/Messages/components/InviteLinkDialog.tsx:438
msgid "Disable this invite link?"
msgstr ""
@@ -3560,9 +3689,9 @@ msgstr "Đã tắt"
#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101
#: src/screens/Profile/Header/EditProfileDialog.tsx:79
-#: src/view/com/composer/Composer.tsx:1294
-#: src/view/com/composer/Composer.tsx:1338
-#: src/view/com/composer/Composer.tsx:1548
+#: src/view/com/composer/Composer.tsx:1347
+#: src/view/com/composer/Composer.tsx:1391
+#: src/view/com/composer/Composer.tsx:1597
#: src/view/com/composer/drafts/DraftItem.tsx:242
#: src/view/com/composer/drafts/DraftsButton.tsx:131
msgid "Discard"
@@ -3573,19 +3702,19 @@ msgstr "Hủy bỏ"
msgid "Discard changes?"
msgstr "Hủy thay đổi?"
-#: src/view/com/composer/Composer.tsx:1292
+#: src/view/com/composer/Composer.tsx:1345
#: src/view/com/composer/drafts/DraftItem.tsx:239
#: src/view/com/composer/drafts/DraftsButton.tsx:98
msgid "Discard draft?"
msgstr "Hủy bản nháp?"
-#: src/view/com/composer/Composer.tsx:1309
-#: src/view/com/composer/Composer.tsx:1540
+#: src/view/com/composer/Composer.tsx:1362
+#: src/view/com/composer/Composer.tsx:1589
msgid "Discard post?"
msgstr "Hủy bài đăng?"
-#: src/screens/Profile/components/GermButton.tsx:261
-#: src/screens/Profile/components/GermButton.tsx:268
+#: src/screens/Profile/components/GermButton.tsx:262
+#: src/screens/Profile/components/GermButton.tsx:269
msgid "Disconnect Germ DM"
msgstr ""
@@ -3613,11 +3742,11 @@ msgstr "Khám phá bảng tin mới"
msgid "Dismiss"
msgstr "Bỏ qua"
-#: src/components/contacts/FindContactsBannerNUX.tsx:77
+#: src/components/contacts/FindContactsBannerNUX.tsx:78
msgid "Dismiss banner"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2385
+#: src/view/com/composer/Composer.tsx:2435
msgid "Dismiss error"
msgstr "Bỏ qua lỗi "
@@ -3673,7 +3802,7 @@ msgstr "Không chứa hình khỏa thân."
msgid "Domain verified!"
msgstr "Tên miền đã được xác minh!"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385
msgid "Don't have a code or need a new one? <0>Click here.0>"
msgstr ""
@@ -3681,7 +3810,7 @@ msgstr ""
msgid "Don’t see a code? <0>Click here to resend.0>"
msgstr ""
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
msgid "Don't see an email? <0>Click here to resend.0>"
msgstr ""
@@ -3700,16 +3829,19 @@ msgstr ""
#: src/components/contacts/screens/ViewMatches.tsx:412
#: src/components/dialogs/BirthDateSettings.tsx:193
#: src/components/dialogs/BirthDateSettings.tsx:200
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200
#: src/components/dialogs/LanguageSelectDialog.tsx:327
+#: src/components/dialogs/NotificationSettingsDialog.tsx:98
#: src/components/dialogs/ServerInput.tsx:237
#: src/components/dialogs/ServerInput.tsx:239
#: src/components/dms/AfterReportConversationDialog.tsx:164
-#: src/components/dms/AfterReportDialog.tsx:140
+#: src/components/dms/AfterReportDialog.tsx:145
#: src/components/forms/DateField/index.tsx:104
#: src/components/forms/DateField/index.tsx:110
#: src/lib/media/picker.tsx:37
-#: src/screens/Onboarding/StepProfile/index.tsx:353
-#: src/screens/Onboarding/StepProfile/index.tsx:356
+#: src/screens/Onboarding/StepProfile/index.tsx:354
+#: src/screens/Onboarding/StepProfile/index.tsx:357
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214
#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221
#: src/view/com/composer/labels/LabelsBtn.tsx:219
@@ -3725,7 +3857,7 @@ msgctxt "action"
msgid "Done"
msgstr "Xong"
-#: src/components/dms/MessageItem.tsx:463
+#: src/components/dms/MessageItem.tsx:445
msgid "Double tap or long press the message to add a reaction"
msgstr "Nhấp đúp hoặc nhấp và giữ tin nhắn để thêm bày tỏ cảm xúc"
@@ -3741,15 +3873,6 @@ msgstr "Chạm hai lần để thích"
msgid "Download Bluesky"
msgstr "Tải Bluesky"
-#: src/screens/Settings/components/ExportCarDialog.tsx:118
-msgid "Download CAR file"
-msgstr "Tải tệp CAR"
-
-#: src/screens/Settings/components/ExportCarDialog.tsx:123
-msgctxt "button"
-msgid "Download CAR file"
-msgstr "Tải tệp CAR"
-
#: src/screens/Settings/components/ExportCarDialog.tsx:149
msgid "Download chat data"
msgstr ""
@@ -3759,16 +3882,25 @@ msgctxt "button"
msgid "Download chat data"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:304
-#: src/components/Lightbox/Lightbox.web.tsx:316
+#: src/components/Lightbox/Lightbox.web.tsx:312
+#: src/components/Lightbox/Lightbox.web.tsx:324
msgid "Download image"
msgstr ""
+#: src/screens/Settings/components/ExportCarDialog.tsx:118
+msgid "Download profile data"
+msgstr ""
+
+#: src/screens/Settings/components/ExportCarDialog.tsx:123
+msgctxt "button"
+msgid "Download profile data"
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115
msgid "Doxxing"
msgstr ""
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120
#: src/view/com/composer/drafts/DraftsButton.tsx:70
#: src/view/com/composer/drafts/DraftsButton.tsx:79
#: src/view/com/composer/drafts/DraftsListDialog.tsx:119
@@ -3823,9 +3955,8 @@ msgstr ""
msgid "Eating disorders"
msgstr ""
-#: src/screens/Messages/components/EditTextButton.tsx:51
+#: src/screens/Messages/components/EditTextButton.tsx:52
#: src/screens/Settings/AccountSettings.tsx:150
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255
#: src/screens/StarterPack/StarterPackScreen.tsx:604
#: src/screens/StarterPack/Wizard/index.tsx:331
#: src/screens/StarterPack/Wizard/index.tsx:336
@@ -3838,8 +3969,8 @@ msgctxt "action"
msgid "Edit"
msgstr "Chỉnh sửa"
-#: src/view/com/util/UserAvatar.tsx:460
-#: src/view/com/util/UserBanner.tsx:122
+#: src/view/com/util/UserAvatar.tsx:464
+#: src/view/com/util/UserBanner.tsx:125
msgid "Edit avatar"
msgstr "Chỉnh sửa hình đại diện"
@@ -3847,14 +3978,14 @@ msgstr "Chỉnh sửa hình đại diện"
msgid "Edit Feeds"
msgstr "Chỉnh sửa bảng tin"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:27
-#: src/screens/Messages/ConversationSettings/prompts.tsx:32
+#: src/screens/Messages/ConversationSettings/prompts.tsx:36
+#: src/screens/Messages/ConversationSettings/prompts.tsx:41
msgid "Edit group name"
msgstr ""
#: src/view/com/composer/photos/EditImageDialog.web.tsx:86
#: src/view/com/composer/photos/EditImageDialog.web.tsx:90
-#: src/view/com/composer/photos/Gallery.tsx:216
+#: src/view/com/composer/photos/Gallery.tsx:218
msgid "Edit image"
msgstr "Chỉnh sửa hình ảnh"
@@ -3868,7 +3999,16 @@ msgstr "Chỉnh sửa cài đặt tương tác"
msgid "Edit interests"
msgstr "Chỉnh sửa mục quan tâm"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:326
+#: src/screens/Messages/JoinRequests.tsx:294
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:300
+msgctxt "button"
+msgid "Edit invite link"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:338
msgid "Edit link settings"
msgstr ""
@@ -3886,20 +4026,15 @@ msgstr ""
msgid "Edit moderation list"
msgstr ""
-#: src/Navigation.tsx:363
+#: src/Navigation.tsx:355
#: src/view/screens/Feeds.tsx:511
msgid "Edit My Feeds"
msgstr "Chỉnh sửa bảng tin của tôi"
-#: src/screens/Messages/ConversationSettings/index.tsx:475
+#: src/screens/Messages/ConversationSettings/index.tsx:474
msgid "Edit name"
msgstr ""
-#. placeholder {0}: createSanitizedDisplayName( profile, )
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246
-msgid "Edit notifications from {0}"
-msgstr ""
-
#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114
msgid "Edit People"
msgstr "Thay đổi người"
@@ -3925,7 +4060,7 @@ msgstr "Chỉnh sửa hồ sơ"
msgid "Edit starter pack"
msgstr "Chỉnh sửa gói khởi đầu"
-#: src/screens/Messages/ConversationSettings/index.tsx:474
+#: src/screens/Messages/ConversationSettings/index.tsx:473
msgid "Edit this group chat’s name"
msgstr ""
@@ -3937,7 +4072,7 @@ msgstr ""
msgid "Edit who can reply"
msgstr "Chỉnh sửa ai có thể trả lời"
-#: src/Navigation.tsx:624
+#: src/Navigation.tsx:541
msgid "Edit your starter pack"
msgstr "Chỉnh sửa gói khởi đầu của bạn"
@@ -3971,7 +4106,7 @@ msgstr "Địa chỉ email"
msgid "Email Resent"
msgstr "Đã gởi lại email"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218
msgid "Email sent!"
msgstr ""
@@ -4006,8 +4141,8 @@ msgstr "Nhúng bài đăng vào trang web của bạn. Chỉ cần sao chép đo
msgid "Embedded video player"
msgstr "Trình phát video nhúng"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108
#: src/screens/Settings/components/Email2FAToggle.tsx:31
msgid "Enable"
msgstr "Bật"
@@ -4025,7 +4160,7 @@ msgstr "Bật nội dung 18+"
msgid "Enable captions"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91
msgid "Enable email 2FA"
msgstr ""
@@ -4038,13 +4173,12 @@ msgstr "Bật phương tiện ngoại vi"
msgid "Enable media players for"
msgstr "Bật trình phát phương tiện cho"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142
#: src/view/screens/Storybook/Admonitions.tsx:76
msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <1/>."
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:103
-#: src/screens/Settings/NotificationSettings/index.tsx:107
+#: src/screens/Settings/NotificationSettings/index.tsx:114
+#: src/screens/Settings/NotificationSettings/index.tsx:118
msgid "Enable push notifications"
msgstr ""
@@ -4091,8 +4225,8 @@ msgstr "Nhập mật khẩu"
msgid "Enter a word or tag"
msgstr "Nhập từ hoặc thẻ"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328
#: src/screens/Settings/components/ChangePasswordDialog.tsx:64
msgid "Enter code"
msgstr ""
@@ -4143,7 +4277,7 @@ msgstr "Mở toàn màn hình"
msgid "Entertainment"
msgstr "Giải trí"
-#: src/view/com/composer/Composer.tsx:2484
+#: src/view/com/composer/Composer.tsx:2534
#: src/view/com/util/error/ErrorScreen.tsx:40
msgid "Error"
msgstr "Lỗi"
@@ -4185,23 +4319,23 @@ msgstr "Mọi người có thể trả lời"
msgid "Everybody can reply to this post."
msgstr "Mọi người có thể trả lời bài đăng này."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174
msgid "Everyone"
msgstr "Tất cả mọi người"
-#: src/screens/Messages/Settings.tsx:75
+#: src/screens/Messages/Settings.tsx:77
msgctxt "allow group chat invites from"
msgid "Everyone"
msgstr "Tất cả mọi người"
-#: src/screens/Messages/Settings.tsx:60
+#: src/screens/Messages/Settings.tsx:62
msgctxt "allow messages from"
msgid "Everyone"
msgstr "Tất cả mọi người"
-#: src/screens/Settings/NotificationSettings/index.tsx:236
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:243
+#: src/screens/Settings/NotificationSettings/index.tsx:341
msgid "Everything else"
msgstr ""
@@ -4217,8 +4351,8 @@ msgstr "Trừ người dùng bạn đang theo dõi"
msgid "Exit fullscreen"
msgstr "Thoát toàn màn hình"
-#: src/components/Lightbox/chrome/Footer.tsx:51
-#: src/components/Lightbox/Lightbox.web.tsx:237
+#: src/components/Lightbox/chrome/Footer.tsx:69
+#: src/components/Lightbox/Lightbox.web.tsx:245
msgid "Expand alt text"
msgstr "Mở rộng văn bản thay thế"
@@ -4226,7 +4360,7 @@ msgstr "Mở rộng văn bản thay thế"
msgid "Expand list of users"
msgstr "Mở rộng danh sách người dùng"
-#: src/view/com/composer/ComposerReplyTo.tsx:88
+#: src/view/com/composer/ComposerReplyTo.tsx:92
msgid "Expand or collapse the full post you are replying to"
msgstr "Mở rộng hoặc thu gọn toàn bộ bài đăng bạn đang trả lời"
@@ -4238,7 +4372,7 @@ msgstr ""
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:460
+#: src/lib/api/index.ts:487
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"
@@ -4277,9 +4411,9 @@ msgstr "Phương tiện phản cảm hoặc có khả năng phản cảm."
msgid "Explicit sexual images."
msgstr "Hình ảnh khiêu dâm."
-#: src/Navigation.tsx:828
+#: src/Navigation.tsx:745
#: src/screens/Search/Shell.tsx:362
-#: src/view/shell/desktop/LeftNav.tsx:676
+#: src/view/shell/desktop/LeftNav.tsx:677
#: src/view/shell/Drawer.tsx:417
msgid "Explore"
msgstr "Khám phá"
@@ -4289,11 +4423,8 @@ msgstr "Khám phá"
msgid "Explore the app"
msgstr ""
-#: src/screens/Messages/Settings.tsx:254
-#: src/screens/Messages/Settings.tsx:264
-msgid "Export chat data"
-msgstr ""
-
+#: src/screens/Messages/Settings.tsx:253
+#: src/screens/Messages/Settings.tsx:263
#: src/screens/Settings/components/ExportCarDialog.tsx:130
msgid "Export my chat data"
msgstr ""
@@ -4322,7 +4453,7 @@ msgstr "Phương tiện ngoại vi"
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 "Phương tiện ngoại vi có thể cho phép trang web thu thập thông tin về bạn và thiết bị của bạn. Thông tin không được gởi đi hoặc yêu cầu cho đến khi bạn nhấn nút \"phát\"."
-#: src/Navigation.tsx:382
+#: src/Navigation.tsx:374
#: src/screens/Settings/ExternalMediaPreferences.tsx:35
msgid "External Media Preferences"
msgstr "Tùy chỉnh phương tiện ngoại vi"
@@ -4336,8 +4467,12 @@ msgctxt "toast"
msgid "Failed to accept chat"
msgstr "Chấp nhận yêu cầu không thành công"
+#: src/screens/Messages/JoinRequests.tsx:186
+msgid "Failed to accept join request"
+msgstr ""
+
#: src/components/dms/ActionsWrapper.web.tsx:77
-#: src/components/dms/MessageContextMenu.tsx:119
+#: src/components/dms/MessageContextMenu.tsx:103
msgid "Failed to add emoji reaction"
msgstr "Đã xảy ra lỗi khi thêm bày tỏ cảm xúc"
@@ -4354,7 +4489,7 @@ msgstr ""
msgid "Failed to change handle. Please try again."
msgstr "Không tạo được tên người dùng. Vui lòng thử lại."
-#: src/components/Lightbox/Lightbox.web.tsx:294
+#: src/components/Lightbox/Lightbox.web.tsx:302
msgid "Failed to copy link"
msgstr ""
@@ -4367,7 +4502,7 @@ msgstr "Không tạo được mật khẩu ứng dụng. Vui lòng thử lại."
msgid "Failed to create conversation"
msgstr "Tạo cuộc trò chuyện không thành công"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:99
+#: src/screens/Messages/components/InviteLinkDialog.tsx:98
msgid "Failed to create invite link"
msgstr ""
@@ -4382,7 +4517,7 @@ msgctxt "toast"
msgid "Failed to delete chat"
msgstr "Xóa đoạn chat không thành công"
-#: src/components/dms/MessageContextMenu.tsx:101
+#: src/components/dms/MessageOverlays.tsx:112
msgid "Failed to delete message"
msgstr "Không xóa được tin nhắn"
@@ -4394,24 +4529,24 @@ 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/Messages/components/InviteLinkDialog.tsx:122
+#: src/screens/Messages/components/InviteLinkDialog.tsx:121
msgid "Failed to disable invite link"
msgstr ""
#. placeholder {0}: error?.message
-#: src/screens/Profile/components/GermButton.tsx:195
+#: src/screens/Profile/components/GermButton.tsx:196
msgid "Failed to disconnect Germ DM. Error: {0}"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:345
+#: src/screens/Messages/ConversationSettings/index.tsx:344
msgid "Failed to edit group chat name"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:112
+#: src/screens/Messages/components/InviteLinkDialog.tsx:111
msgid "Failed to edit invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:132
+#: src/screens/Messages/components/InviteLinkDialog.tsx:131
msgid "Failed to enable invite link"
msgstr ""
@@ -4427,19 +4562,27 @@ msgstr ""
msgid "Failed to hide suggestion, please check your internet connection"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:218
+msgid "Failed to ignore join request"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:117
+msgid "Failed to join the group chat. Please try again."
+msgstr ""
+
#: src/components/contacts/screens/ViewMatches.tsx:582
msgid "Failed to launch SMS app"
msgstr ""
#: src/screens/Messages/components/ChatEnded.tsx:42
#: src/screens/Messages/components/ChatLocked.tsx:53
-#: src/screens/Messages/ConversationSettings/index.tsx:372
+#: src/screens/Messages/ConversationSettings/index.tsx:371
msgctxt "toast"
msgid "Failed to leave group chat"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:334
-#: src/screens/Messages/Inbox.tsx:211
+#: src/screens/Messages/ChatList.tsx:345
+#: src/screens/Messages/Inbox.tsx:201
msgid "Failed to load conversations"
msgstr "Tải cuộc trò chuyện không thành công"
@@ -4456,17 +4599,8 @@ msgstr ""
msgid "Failed to load feeds preferences"
msgstr "Không tải được cài đặt bảng tin"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117
-#: src/screens/Settings/NotificationSettings/index.tsx:116
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53
+#: src/components/dialogs/NotificationSettingsDialog.tsx:77
+#: src/screens/Settings/NotificationSettings/index.tsx:127
msgid "Failed to load notification settings."
msgstr ""
@@ -4493,16 +4627,15 @@ msgstr "Không tải được gợi ý bảng tin"
msgid "Failed to load suggested follows"
msgstr "Không tải được gợi ý theo dõi"
-#: src/screens/Messages/ConversationSettings/index.tsx:393
+#: src/screens/Messages/ConversationSettings/index.tsx:392
msgid "Failed to lock group chat"
msgstr ""
-#: src/screens/Messages/Inbox.tsx:311
-#: src/screens/Messages/Inbox.tsx:338
+#: src/screens/Messages/Inbox.tsx:299
msgid "Failed to mark all requests as read"
msgstr "Đánh dấu tất cả yêu cầu là đã đọc không thành công"
-#: src/screens/Messages/ConversationSettings/index.tsx:359
+#: src/screens/Messages/ConversationSettings/index.tsx:358
msgid "Failed to mute group chat"
msgstr ""
@@ -4511,7 +4644,7 @@ msgid "Failed to pin post"
msgstr "Không ghim được bài đăng"
#. placeholder {0}: e?.message
-#: src/screens/Profile/components/GermButton.tsx:163
+#: src/screens/Profile/components/GermButton.tsx:164
msgid "Failed to reconnect Germ DM. Error: {0}"
msgstr ""
@@ -4525,8 +4658,8 @@ msgid "Failed to remove data. {0}"
msgstr ""
#: src/components/dms/ActionsWrapper.web.tsx:73
-#: src/components/dms/MessageContextMenu.tsx:115
-#: src/components/dms/ReactionsDialog.tsx:171
+#: src/components/dms/MessageContextMenu.tsx:99
+#: src/components/dms/ReactionsDialog.tsx:175
msgid "Failed to remove emoji reaction"
msgstr "Đã xảy ra lỗi khi xoá bày tỏ cảm xúc"
@@ -4542,15 +4675,19 @@ msgstr ""
msgid "Failed to remove verification"
msgstr "Đã có lỗi xảy ra khi xoá xác minh"
+#: src/components/intents/GroupChatJoinDialog.tsx:151
+msgid "Failed to rescind your request. Please try again."
+msgstr ""
+
#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81
msgid "Failed to resolve location. Please try again."
msgstr ""
-#: src/view/com/composer/Composer.tsx:584
+#: src/view/com/composer/Composer.tsx:639
msgid "Failed to save draft"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:311
+#: src/components/Lightbox/Lightbox.web.tsx:319
msgid "Failed to save image"
msgstr ""
@@ -4569,7 +4706,7 @@ msgctxt "toast"
msgid "Failed to save your interests."
msgstr "Đã xảy ra lỗi khi lưu những mục quan tâm."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137
msgid "Failed to send email, please try again."
msgstr ""
@@ -4580,7 +4717,7 @@ msgstr ""
#: src/components/moderation/LabelsOnMeDialog.tsx:266
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77
-#: src/screens/Messages/components/ChatDisabled.tsx:115
+#: src/screens/Messages/components/ChatDisabled.tsx:119
msgid "Failed to submit appeal, please try again."
msgstr "Không gởi được kháng nghị, vui lòng thử lại."
@@ -4589,7 +4726,7 @@ msgid "Failed to toggle thread mute, please try again"
msgstr "Không thay đổi được chế độ im lặng thảo luận, vui lòng thử lại"
#: src/screens/Messages/components/ChatLocked.tsx:42
-#: src/screens/Messages/ConversationSettings/index.tsx:396
+#: src/screens/Messages/ConversationSettings/index.tsx:395
msgid "Failed to unlock group chat"
msgstr ""
@@ -4597,12 +4734,12 @@ msgstr ""
msgid "Failed to unpin list"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82
msgid "Failed to update email 2FA settings"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:194
msgid "Failed to update email, please try again."
msgstr ""
@@ -4614,7 +4751,7 @@ msgstr "Không thể cập nhật bảng tin"
msgid "Failed to update notification declaration"
msgstr ""
-#: src/screens/Messages/Settings.tsx:92
+#: src/screens/Messages/Settings.tsx:94
msgid "Failed to update settings"
msgstr "Không thể cập nhật cài đặt"
@@ -4641,7 +4778,7 @@ msgstr ""
msgid "False information about elections"
msgstr ""
-#: src/Navigation.tsx:298
+#: src/Navigation.tsx:290
msgid "Feed"
msgstr "Bảng tin"
@@ -4649,7 +4786,7 @@ msgstr "Bảng tin"
#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@')
#. placeholder {0}: sanitizeHandle(view.creator.handle, '@')
#: src/components/FeedCard.tsx:170
-#: src/state/queries/feed.ts:118
+#: src/state/queries/feed.ts:127
#: src/view/com/feeds/FeedSourceCard.tsx:151
msgid "Feed by {0}"
msgstr "Bảng tin bởi {0}"
@@ -4662,7 +4799,7 @@ msgstr ""
msgid "Feed identifier"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:361
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:353
msgid "Feed menu"
msgstr "Menu bảng tin"
@@ -4686,14 +4823,14 @@ msgctxt "toast"
msgid "Feedback sent to feed operator"
msgstr ""
-#: src/Navigation.tsx:604
+#: src/Navigation.tsx:521
#: src/screens/SavedFeeds.tsx:112
#: src/screens/SavedFeeds.tsx:303
#: src/screens/Search/SearchResults.tsx:80
#: src/screens/StarterPack/StarterPackScreen.tsx:196
#: src/view/screens/Feeds.tsx:504
#: src/view/screens/Profile.tsx:239
-#: src/view/shell/desktop/LeftNav.tsx:711
+#: src/view/shell/desktop/LeftNav.tsx:712
#: src/view/shell/Drawer.tsx:533
msgid "Feeds"
msgstr "Bảng tin"
@@ -4739,7 +4876,7 @@ msgstr "Lọc tìm kiếm theo ngôn ngữ (hiện tại: {currentLanguageLabel}
msgid "Filter who can opt to receive notifications for your activity"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:166
msgid "Filter who you receive notifications from"
msgstr ""
@@ -4747,11 +4884,11 @@ msgstr ""
msgid "Finalizing"
msgstr "Đang hoàn tất"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146
msgid "Finally!"
msgstr ""
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156
msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime."
msgstr ""
@@ -4768,8 +4905,8 @@ msgstr ""
msgid "Find accounts to follow"
msgstr "Tìm tài khoản đề theo dõi"
-#: src/Navigation.tsx:438
-#: src/Navigation.tsx:646
+#: src/Navigation.tsx:430
+#: src/Navigation.tsx:563
msgid "Find Contacts"
msgstr ""
@@ -4799,7 +4936,7 @@ msgstr "Tìm người để theo dõi"
msgid "Find posts, users, and feeds on Bluesky"
msgstr "Tìm bài đăng, người dùng, và bảng tin trên Bluesky"
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98
msgid "Find your friends"
msgstr ""
@@ -4944,8 +5081,12 @@ msgstr "Theo dõi bởi <0>{0}0> và <1>{1}1>"
msgid "Followed by <0>{0}0>, <1>{1}1>, and {2, plural, one {# other} other {# others}}"
msgstr "Theo dõi bởi <0>{0}0>, <1>{1}1>, và {2, plural, other {# người khác}}"
+#: src/components/intents/GroupChatJoinDialog.tsx:322
+msgid "Followers can join"
+msgstr ""
+
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:252
+#: src/Navigation.tsx:244
msgid "Followers of @{0} that you know"
msgstr "Người đang theo dõi @{0} mà bạn biết"
@@ -4995,19 +5136,16 @@ msgstr "Đang theo dõi {handle}"
msgid "Following feed preferences"
msgstr "Cài đặt bảng tin Đang theo dõi"
-#: src/Navigation.tsx:369
+#: src/Navigation.tsx:361
#: src/screens/Settings/FollowingFeedPreferences.tsx:57
msgid "Following Feed Preferences"
msgstr "Cài đặt bảng tin Đang theo dõi"
+#: src/components/Pills.tsx:175
#: src/screens/Profile/Header/Handle.tsx:33
msgid "Follows you"
msgstr "Theo dõi bạn"
-#: src/components/Pills.tsx:175
-msgid "Follows You"
-msgstr "Theo dõi bạn"
-
#: src/screens/Settings/AppearanceSettings.tsx:128
msgid "Font"
msgstr "Phông chữ"
@@ -5069,7 +5207,7 @@ msgstr "Quên?"
msgid "Free your feed"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162
msgid "From"
msgstr ""
@@ -5086,35 +5224,35 @@ msgstr "Từ <0/>"
msgid "Generate a starter pack"
msgstr "Tạo gói khởi đầu"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:206
-#: src/screens/Messages/components/InviteLinkDialog.tsx:244
-#: src/screens/Messages/components/InviteLinkDialog.tsx:268
+#: src/screens/Messages/components/InviteLinkDialog.tsx:212
+#: src/screens/Messages/components/InviteLinkDialog.tsx:252
+#: src/screens/Messages/components/InviteLinkDialog.tsx:280
msgid "Generate invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:397
+#: src/screens/Messages/components/InviteLinkDialog.tsx:409
msgid "Generate new invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:402
+#: src/screens/Messages/components/InviteLinkDialog.tsx:414
msgid "Generate new link"
msgstr ""
#: src/screens/Profile/components/GermButton.tsx:86
-#: src/screens/Profile/components/GermButton.tsx:224
+#: src/screens/Profile/components/GermButton.tsx:225
msgid "Germ DM"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:182
+#: src/screens/Profile/components/GermButton.tsx:183
msgid "Germ DM disconnected"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:233
-#: src/screens/Profile/components/GermButton.tsx:238
+#: src/screens/Profile/components/GermButton.tsx:234
+#: src/screens/Profile/components/GermButton.tsx:239
msgid "Germ DM Link"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:159
+#: src/screens/Profile/components/GermButton.tsx:160
msgid "Germ DM reconnected"
msgstr ""
@@ -5122,46 +5260,50 @@ msgstr ""
msgid "Get help"
msgstr "Trợ giúp"
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:343
+msgid "Get notifications for starter pack joins, verification, and other activity."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:269
msgid "Get notifications when people follow you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people like posts that you've reposted."
-msgstr ""
-
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:261
msgid "Get notifications when people like your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:324
+msgid "Get notifications when people like your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:285
msgid "Get notifications when people mention you."
msgstr ""
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:293
msgid "Get notifications when people quote your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43
+#: src/screens/Settings/NotificationSettings/index.tsx:277
msgid "Get notifications when people reply to your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43
-msgid "Get notifications when people repost posts that you've reposted."
+#: src/screens/Settings/NotificationSettings/index.tsx:302
+msgid "Get notifications when people repost your posts."
msgstr ""
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43
-msgid "Get notifications when people repost your posts."
+#: src/screens/Settings/NotificationSettings/index.tsx:333
+msgid "Get notifications when people repost your reposts."
+msgstr ""
+
+#: src/screens/Settings/NotificationSettings/index.tsx:311
+msgid "Get notifications when there's activity on posts you're subscribed to."
msgstr ""
#: src/components/activity-notifications/SubscribeProfileButton.tsx:94
msgid "Get notified about new posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107
-msgid "Get notified about posts and replies from accounts you choose."
-msgstr ""
-
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226
msgid "Get notified of new posts from {name}"
msgstr ""
@@ -5174,27 +5316,27 @@ msgstr ""
msgid "Get notified when {name} posts"
msgstr ""
-#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138
+#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139
msgid "Get notified when someone posts"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87
-#: src/screens/Messages/components/InviteLinkDialog.tsx:187
-#: src/screens/Messages/components/InviteLinkDialog.tsx:194
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81
+#: src/screens/Messages/components/InviteLinkDialog.tsx:192
+#: src/screens/Messages/components/InviteLinkDialog.tsx:199
msgid "Get started"
msgstr "Bắt đầu"
-#: src/components/MediaPreview.tsx:136
+#: src/components/MediaPreview.tsx:182
#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69
msgid "GIF"
msgstr "GIF"
-#: src/view/com/composer/Composer.tsx:2489
+#: src/view/com/composer/Composer.tsx:2539
msgid "GIF uploaded"
msgstr ""
-#: src/screens/Onboarding/StepProfile/index.tsx:258
+#: src/screens/Onboarding/StepProfile/index.tsx:259
msgid "Give your profile a face"
msgstr "Chọn hình cho hồ sơ của bạn"
@@ -5213,20 +5355,21 @@ msgstr ""
#: src/screens/VideoFeed/components/Header.tsx:163
#: src/screens/VideoFeed/index.tsx:1168
#: src/screens/VideoFeed/index.tsx:1172
-#: src/view/com/auth/LoggedOut.tsx:89
+#: src/view/com/auth/LoggedOut.tsx:103
#: src/view/com/profile/ProfileFollowers.tsx:178
#: src/view/com/profile/ProfileFollowers.tsx:179
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go back"
msgstr "Quay lại"
#: src/components/Error.tsx:77
#: src/screens/List/ListHiddenScreen.tsx:228
-#: src/screens/Messages/Conversation.tsx:346
+#: src/screens/Messages/Conversation.tsx:371
#: src/screens/Profile/ErrorState.tsx:63
#: src/screens/Profile/ErrorState.tsx:67
#: src/screens/StarterPack/StarterPackScreen.tsx:807
-#: src/view/screens/NotFound.tsx:45
msgid "Go Back"
msgstr "Quay lại"
@@ -5237,7 +5380,9 @@ msgid "Go back to previous step"
msgstr "Quay lại bước trước"
#: src/screens/Bookmarks/index.tsx:303
-#: src/view/screens/NotFound.tsx:46
+#: src/view/screens/NotFound.tsx:51
+#: src/view/screens/NotFound.tsx:52
+#: src/view/screens/NotFound.tsx:57
msgid "Go home"
msgstr "Về trang chủ"
@@ -5247,10 +5392,6 @@ msgctxt "Button to go back to the home timeline"
msgid "Go home"
msgstr "Về trang chủ"
-#: src/view/screens/NotFound.tsx:45
-msgid "Go Home"
-msgstr "Về trang chủ"
-
#: src/view/com/profile/ProfileMenu.tsx:370
#: src/view/com/profile/ProfileMenu.tsx:391
msgid "Go live"
@@ -5284,7 +5425,7 @@ msgid "Go to account settings"
msgstr ""
#. placeholder {0}: profile.handle
-#: src/screens/Messages/components/ChatListItem.tsx:153
+#: src/screens/Messages/components/ChatListItem.tsx:155
msgid "Go to conversation with {0}"
msgstr "Đến hội thoại với {0}"
@@ -5299,12 +5440,12 @@ msgstr "Tiếp theo"
#: src/components/dms/ConvoMenu.tsx:272
#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191
-#: src/view/shell/desktop/LeftNav.tsx:335
-#: src/view/shell/desktop/LeftNav.tsx:341
+#: src/view/shell/desktop/LeftNav.tsx:336
+#: src/view/shell/desktop/LeftNav.tsx:342
msgid "Go to profile"
msgstr "Đến hồ sơ"
-#: src/screens/Messages/components/ChatListItem.tsx:211
+#: src/screens/Messages/components/ChatListItem.tsx:213
msgid "Go to the group chat named \"{chatName}\""
msgstr ""
@@ -5320,8 +5461,8 @@ msgstr ""
msgid "Going live is currently disabled for your account"
msgstr ""
-#: src/screens/Profile/components/GermButton.tsx:252
-#: src/screens/Profile/components/GermButton.tsx:257
+#: src/screens/Profile/components/GermButton.tsx:253
+#: src/screens/Profile/components/GermButton.tsx:258
msgid "Got it"
msgstr ""
@@ -5340,59 +5481,75 @@ msgstr ""
msgid "Grooming or predatory behavior"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:513
+#: src/components/dms/ChatInvite/Card.tsx:45
+#: src/components/intents/GroupChatJoinDialog.tsx:298
+#: src/screens/Messages/JoinRequest.tsx:116
+msgid "Group chat"
+msgstr ""
+
+#: src/screens/Messages/components/InviteLinkDialog.tsx:517
msgid "Group chat invite link dialog"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:385
+#: src/screens/Messages/ConversationSettings/index.tsx:384
msgctxt "toast"
msgid "Group chat locked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:352
+#: src/screens/Messages/ConversationSettings/index.tsx:351
msgctxt "toast"
msgid "Group chat muted"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:340
+#: src/screens/Messages/ConversationSettings/index.tsx:339
msgctxt "toast"
msgid "Group chat name updated"
msgstr ""
-#: src/Navigation.tsx:578
+#: src/Navigation.tsx:490
#: src/screens/Messages/ConversationSettings/index.tsx:91
msgid "Group chat settings"
msgstr ""
#: src/screens/Messages/components/ChatLocked.tsx:38
-#: src/screens/Messages/ConversationSettings/index.tsx:387
+#: src/screens/Messages/ConversationSettings/index.tsx:386
msgctxt "toast"
msgid "Group chat unlocked"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:354
+#: src/screens/Messages/ConversationSettings/index.tsx:353
msgctxt "toast"
msgid "Group chat unmuted"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:330
+#: src/screens/Messages/Conversation.tsx:355
msgid "Group chats are not yet available"
msgstr ""
-#: src/screens/Messages/Conversation.tsx:328
+#: src/screens/Messages/Conversation.tsx:353
msgid "Group chats are now available"
msgstr ""
+#. placeholder {0}: convo.details.memberLimit
+#: src/screens/Messages/components/InviteLinkDialog.tsx:178
+msgid "Group chats can only have a maximum of {0, plural, other {# people}}."
+msgstr ""
+
#: src/components/dialogs/SearchablePeopleList.tsx:569
msgid "Group is locked"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:231
-#: src/components/dms/InitiateChatFlow.tsx:551
-#: src/screens/Messages/ConversationSettings/prompts.tsx:33
+#: src/components/dms/InitiateChatFlow.tsx:240
+#: src/components/dms/InitiateChatFlow.tsx:577
+#: src/screens/Messages/ConversationSettings/prompts.tsx:42
msgid "Group name"
msgstr ""
+#: src/components/dms/InitiateChatFlow.tsx:602
+#: src/screens/Messages/ConversationSettings/prompts.tsx:61
+msgid "Group name is too long. The maximum number of characters is {MAX_GROUP_NAME_GRAPHEME_LENGTH}."
+msgstr ""
+
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219
msgid "Hacking or system attacks"
msgstr ""
@@ -5421,7 +5578,7 @@ msgid "Handle too long. Please try a shorter one."
msgstr "Tên tài khoản quá dài. Vui lòng thử tên ngắn hơn."
#: src/components/FeedCard.tsx:156
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123
msgid "Happening now"
msgstr ""
@@ -5446,7 +5603,7 @@ msgstr ""
msgid "Harming or endangering minors"
msgstr ""
-#: src/Navigation.tsx:562
+#: src/Navigation.tsx:474
msgid "Hashtag"
msgstr "Hashtag"
@@ -5458,8 +5615,8 @@ msgstr "Hashtag {tag}"
msgid "Hate speech"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325
msgid "Have a code? <0>Click here.0>"
msgstr ""
@@ -5483,7 +5640,7 @@ msgstr ""
msgid "Help"
msgstr "Giúp đỡ"
-#: src/screens/Onboarding/StepProfile/index.tsx:261
+#: src/screens/Onboarding/StepProfile/index.tsx:262
msgid "Help people know you're not a bot by uploading a picture or creating an avatar."
msgstr "Giúp người khác biết bạn không phải là bot bằng cách tải lên hoặc tạo hình đại diện."
@@ -5652,18 +5809,18 @@ msgstr "Hmmmm, có vấn đề khi tải dữ liệu này. Xem bên dưới đ
msgid "Hmmmm, we couldn't load that moderation service."
msgstr "Hmmmm, không thể tải dịch vụ kiểm duyệt đó."
-#: src/view/com/composer/state/video.ts:430
+#: src/view/com/composer/state/video.ts:415
msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!"
msgstr "Chờ nhé! Chúng tôi đang dần dần cấp quyền truy cập video, và bạn vẫn đang trong hàng chờ. Hãy kiểm tra lại sau!"
-#: src/screens/Messages/Conversation.tsx:337
+#: src/screens/Messages/Conversation.tsx:362
msgid "Hold your horses! This feature isn't available to you yet. Please check back later."
msgstr ""
-#: src/Navigation.tsx:823
-#: src/Navigation.tsx:844
-#: src/view/shell/bottom-bar/BottomBar.tsx:184
-#: src/view/shell/desktop/LeftNav.tsx:666
+#: src/Navigation.tsx:740
+#: src/Navigation.tsx:761
+#: src/view/shell/bottom-bar/BottomBar.tsx:185
+#: src/view/shell/desktop/LeftNav.tsx:667
#: src/view/shell/Drawer.tsx:443
msgid "Home"
msgstr "Trang chủ"
@@ -5721,7 +5878,7 @@ msgstr "Tôi hiểu"
msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:238
+#: src/components/Lightbox/Lightbox.web.tsx:246
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"
@@ -5757,7 +5914,7 @@ msgstr "Danh sách không thể được khôi phục sau khi đã bị xóa."
msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here.0>"
msgstr "Nếu bạn có tên miền riêng, bạn có thể sử dụng nó làm tên người dùng. Điều này giúp bạn tự xác minh danh tính của mình. <0>Tìm hiểu thêm tại đây.0>"
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
msgid "If you need to update your email, <0>click here0>."
msgstr ""
@@ -5765,7 +5922,7 @@ msgstr ""
msgid "If you remove this post, you won't be able to recover it."
msgstr "Bài đăng không thể được khôi phục sau khi đã bị xóa."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:209
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:206
msgid "If you update your email address, email 2FA will be disabled."
msgstr ""
@@ -5773,7 +5930,6 @@ msgstr ""
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Nếu bạn muốn thay đổi mật khẩu, chúng tôi sẽ gởi mã xác minh để xác nhận rằng đây là tài khoản của bạn."
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160
#: src/view/screens/Storybook/Admonitions.tsx:90
msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security0>."
msgstr ""
@@ -5786,23 +5942,33 @@ msgstr "Nếu bạn là một lập trình viên, bạn có thể tự quản l
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."
-#: src/components/images/ImageLayoutGridItem.tsx:76
+#. Ignore a request to join a chat
+#: src/screens/Messages/JoinRequests.tsx:484
+msgctxt "button"
+msgid "Ignore"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:478
+msgid "Ignore join request"
+msgstr ""
+
+#: src/components/images/ImageLayoutGridItem.tsx:96
msgid "Image"
msgstr "Ảnh"
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:427
+#: src/components/images/Gallery/index.tsx:451
msgid "Image {0}"
msgstr ""
#. placeholder {0}: index + 1
#. placeholder {1}: imgs.length
-#: src/components/Lightbox/Lightbox.web.tsx:253
+#: src/components/Lightbox/Lightbox.web.tsx:261
msgid "Image {0} of {1}"
msgstr ""
#. placeholder {0}: index + 1
-#: src/components/images/Gallery/index.tsx:418
+#: src/components/images/Gallery/index.tsx:436
msgid "Image {0} of {imageCount}"
msgstr ""
@@ -5817,27 +5983,27 @@ msgid "Image cache cleared, freed {0}"
msgstr "Đã xoá bộ nhớ đệm hình ảnh, giải phóng {0}"
#. placeholder {0}: images.length
-#: src/components/images/Gallery/index.tsx:256
+#: src/components/images/Gallery/index.tsx:264
msgid "Image gallery, {0} images"
msgstr ""
#. Image has been moderated and user has the option of showing it temporarily
-#: src/features/liveNow/components/LiveStatusDialog.tsx:299
+#: src/features/liveNow/components/LiveStatusDialog.tsx:300
msgid "Image is hidden due to your moderation settings."
msgstr ""
#. Image has been moderated and is not visible to the user
-#: src/features/liveNow/components/LiveStatusDialog.tsx:309
+#: src/features/liveNow/components/LiveStatusDialog.tsx:310
msgid "Image is unavailable."
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:73
-#: src/components/Lightbox/Lightbox.web.tsx:257
#: src/components/Lightbox/Lightbox.web.tsx:265
+#: src/components/Lightbox/Lightbox.web.tsx:273
msgid "Image options"
msgstr ""
-#: src/components/Lightbox/Lightbox.web.tsx:308
+#: src/components/Lightbox/Lightbox.web.tsx:316
#: src/lib/media/save-image.ios.ts:25
#: src/lib/media/save-image.ts:29
msgid "Image saved"
@@ -5862,13 +6028,13 @@ msgstr ""
msgid "Import contacts"
msgstr ""
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115
-#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116
+#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127
msgid "Import Contacts"
msgstr ""
#: src/components/contacts/FindContactsBannerNUX.tsx:33
-#: src/components/contacts/FindContactsBannerNUX.tsx:71
+#: src/components/contacts/FindContactsBannerNUX.tsx:72
msgid "Import contacts to find your friends"
msgstr ""
@@ -5881,40 +6047,40 @@ msgstr ""
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 ""
-#: src/screens/Settings/NotificationSettings/index.tsx:285
+#: src/screens/Settings/NotificationSettings/index.tsx:387
msgid "In-app"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151
msgid "In-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:268
-msgid "In-app, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:370
+msgid "In-app, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:276
-msgid "In-app, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:378
+msgid "In-app, people you follow"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:283
-msgid "In-app, Push"
+#: src/screens/Settings/NotificationSettings/index.tsx:385
+msgid "In-app, push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:266
-msgid "In-app, Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:368
+msgid "In-app, push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:274
-msgid "In-app, Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:376
+msgid "In-app, push, people you follow"
msgstr ""
-#: src/screens/Messages/ChatList.tsx:351
+#: src/screens/Messages/ChatList.tsx:362
msgid "Inbox empty"
msgstr ""
#. Title message shown in chat requests inbox when it's empty
-#: src/screens/Messages/Inbox.tsx:228
+#: src/screens/Messages/Inbox.tsx:218
msgid "Inbox zero!"
msgstr "Không có yêu cầu nào!"
@@ -5963,6 +6129,10 @@ msgstr ""
msgid "Invalid 2FA confirmation code."
msgstr "Mã xác nhận 2FA không hợp lệ"
+#: src/components/intents/GroupChatJoinDialog.tsx:127
+msgid "Invalid group chat code."
+msgstr ""
+
#: src/screens/Settings/components/ChangeHandleDialog.tsx:615
msgid "Invalid handle. Please try a different one."
msgstr "Tên người dùng không hợp lệ. Vui lòng thử tên khác."
@@ -5977,10 +6147,14 @@ msgstr ""
msgid "Invalid phone number"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:100
msgid "Invalid report subject"
msgstr "Tiêu đề báo cáo không hợp lệ"
+#: src/components/intents/GroupChatJoinDialog.tsx:158
+msgid "Invalid rescind request."
+msgstr ""
+
#: src/components/intents/VerifyEmailIntentDialog.tsx:86
msgid "Invalid Verification Code"
msgstr "Mã xác minh không hợp lệ"
@@ -6010,12 +6184,12 @@ msgstr ""
msgid "Invite friends <0/>"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:167
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
-#: src/screens/Messages/components/InviteLinkDialog.tsx:296
-#: src/screens/Messages/components/InviteLinkDialog.tsx:471
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149
-#: src/screens/Messages/ConversationSettings/index.tsx:491
+#: src/screens/Messages/components/InviteLinkDialog.tsx:166
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
+#: src/screens/Messages/components/InviteLinkDialog.tsx:310
+#: src/screens/Messages/components/InviteLinkDialog.tsx:477
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148
+#: src/screens/Messages/ConversationSettings/index.tsx:490
msgid "Invite link"
msgstr ""
@@ -6024,7 +6198,7 @@ msgid "Invite link created"
msgstr ""
#: src/components/dms/getSystemMessageInfo.ts:138
-#: src/screens/Messages/components/InviteLinkDialog.tsx:290
+#: src/screens/Messages/components/InviteLinkDialog.tsx:304
msgid "Invite link disabled"
msgstr ""
@@ -6074,7 +6248,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin
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."
#. placeholder {0}: videoState.jobId
-#: src/view/com/composer/Composer.tsx:2404
+#: src/view/com/composer/Composer.tsx:2454
msgid "Job ID: {0}"
msgstr "ID công việc: {0}"
@@ -6083,6 +6257,11 @@ msgstr "ID công việc: {0}"
msgid "Jobs"
msgstr "Công việc"
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:254
+msgid "Join"
+msgstr ""
+
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210
#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215
#: src/screens/StarterPack/StarterPackScreen.tsx:478
@@ -6090,6 +6269,15 @@ msgstr "Công việc"
msgid "Join Bluesky"
msgstr "Tham gia Bluesky"
+#: src/components/intents/GroupChatJoinDialog.tsx:63
+#: src/components/intents/GroupChatJoinDialog.tsx:419
+msgid "Join group chat"
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:147
+msgid "Join request rescinded."
+msgstr ""
+
#: src/components/StarterPack/QrCode.tsx:72
#: src/view/shell/NavSignupCard.tsx:41
msgid "Join the conversation"
@@ -6099,8 +6287,8 @@ msgstr "Tham gia trò chuyện"
msgid "Journalism"
msgstr "Báo chí"
-#: src/view/com/composer/Composer.tsx:1342
-#: src/view/com/composer/Composer.tsx:1352
+#: src/view/com/composer/Composer.tsx:1395
+#: src/view/com/composer/Composer.tsx:1405
#: src/view/com/composer/drafts/DraftsButton.tsx:135
msgid "Keep editing"
msgstr ""
@@ -6143,7 +6331,7 @@ msgstr "Nhãn trên tài khoản của bạn"
msgid "Labels on your content"
msgstr "Nhãn trên nội dung của bạn"
-#: src/Navigation.tsx:225
+#: src/Navigation.tsx:217
msgid "Language Settings"
msgstr "Cài đặt ngôn ngữ"
@@ -6174,7 +6362,7 @@ msgid "Latest"
msgstr "Mới nhất"
#: src/components/verification/VerificationsDialog.tsx:168
-#: src/components/verification/VerifierDialog.tsx:135
+#: src/components/verification/VerifierDialog.tsx:136
#: src/screens/Moderation/VerificationSettings.tsx:50
#: src/screens/Profile/Header/EditProfileDialog.tsx:346
#: src/screens/Settings/components/ChangeHandleDialog.tsx:215
@@ -6229,7 +6417,7 @@ msgid "Learn more about this warning"
msgstr "Tìm hiểu thêm về cảnh báo này"
#: src/components/verification/VerificationsDialog.tsx:153
-#: src/components/verification/VerifierDialog.tsx:121
+#: src/components/verification/VerifierDialog.tsx:122
msgctxt "english-only-resource"
msgid "Learn more about verification on Bluesky"
msgstr ""
@@ -6239,7 +6427,7 @@ msgstr ""
msgid "Learn more about what is public on Bluesky."
msgstr "Tìm hiểu thêm về những gì công khai trên Bluesky."
-#: src/screens/Profile/components/GermButton.tsx:211
+#: src/screens/Profile/components/GermButton.tsx:212
msgid "Learn more about your Germ DM link"
msgstr ""
@@ -6252,8 +6440,8 @@ msgstr ""
msgid "Learn more."
msgstr "Tìm hiểu thêm."
-#: src/components/dms/LeaveConvoPrompt.tsx:49
-#: src/screens/Messages/ConversationSettings/index.tsx:527
+#: src/components/dms/LeaveConvoPrompt.tsx:59
+#: src/screens/Messages/ConversationSettings/index.tsx:526
msgid "Leave"
msgstr "Rời đi"
@@ -6276,7 +6464,7 @@ msgstr "Rời chat"
#: src/components/dms/ConvoMenu.tsx:250
#: src/components/dms/ConvoMenu.tsx:316
#: src/components/dms/ConvoMenu.tsx:320
-#: src/components/dms/LeaveConvoPrompt.tsx:43
+#: src/components/dms/LeaveConvoPrompt.tsx:53
msgid "Leave conversation"
msgstr "Rời đối thoại"
@@ -6284,13 +6472,13 @@ msgstr "Rời đối thoại"
#: src/components/dms/AfterReportConversationDialog.tsx:174
msgctxt "button"
msgid "Leave conversation"
-msgstr ""
+msgstr "Rời đối thoại"
-#: src/screens/Messages/ConversationSettings/prompts.tsx:92
+#: src/screens/Messages/ConversationSettings/prompts.tsx:119
msgid "Leave group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:526
+#: src/screens/Messages/ConversationSettings/index.tsx:525
msgid "Leave this group chat"
msgstr ""
@@ -6327,13 +6515,13 @@ msgctxt "Name of app icon variant"
msgid "Light"
msgstr "Sáng"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:523
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:509
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
#. placeholder {0}: post.likeCount || 0
-#: src/components/PostControls/index.tsx:287
+#: src/components/PostControls/index.tsx:284
msgid "Like ({0, plural, one {# like} other {# likes}})"
msgstr "Thích ({0, plural, other {# lượt thích}})"
@@ -6346,11 +6534,7 @@ msgstr "Thích 10 bài"
msgid "Like 10 posts to train the Discover feed"
msgstr "Thích 10 bài để dạy cho bảng tin Khám phá"
-#: src/Navigation.tsx:475
-msgid "Like notifications"
-msgstr ""
-
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:511
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:497
msgid "Like this feed"
msgstr "Thích bảng tin này"
@@ -6358,8 +6542,8 @@ msgstr "Thích bảng tin này"
msgid "Like this labeler"
msgstr "Thích dịch vụ gắn nhãn này"
-#: src/Navigation.tsx:303
-#: src/Navigation.tsx:308
+#: src/Navigation.tsx:295
+#: src/Navigation.tsx:300
msgid "Liked by"
msgstr "Thích bởi"
@@ -6377,29 +6561,25 @@ msgid "Liked by {0, plural, one {# user} other {# users}}"
msgstr "Thích bởi {0, plural, other {# người dùng}}"
#: src/components/LabelingServiceCard/index.tsx:96
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:499
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:486
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168
#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182
msgid "Liked by {likeCount, plural, one {# user} other {# users}}"
msgstr "Thích bởi {likeCount, plural, other {# người dùng}}"
#: src/lib/hooks/useNotificationHandler.ts:160
-#: src/screens/Settings/NotificationSettings/index.tsx:127
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:138
+#: src/screens/Settings/NotificationSettings/index.tsx:259
#: src/view/screens/Profile.tsx:238
msgid "Likes"
msgstr "Lượt thích"
#: src/lib/hooks/useNotificationHandler.ts:202
-#: src/screens/Settings/NotificationSettings/index.tsx:208
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:322
msgid "Likes of your reposts"
msgstr ""
-#: src/Navigation.tsx:499
-msgid "Likes of your reposts notifications"
-msgstr ""
-
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486
msgid "Likes on this post"
msgstr "Lượt thích cho bài đăng này"
@@ -6409,11 +6589,11 @@ msgstr "Lượt thích cho bài đăng này"
msgid "Linear"
msgstr "Ngang hàng"
-#: src/components/Lightbox/Lightbox.web.tsx:292
+#: src/components/Lightbox/Lightbox.web.tsx:300
msgid "Link copied to clipboard"
msgstr ""
-#: src/Navigation.tsx:258
+#: src/Navigation.tsx:250
msgid "List"
msgstr "Danh sách"
@@ -6499,11 +6679,11 @@ msgctxt "toast"
msgid "List unmuted"
msgstr "Đã đã bỏ ẩn toàn danh sách"
-#: src/Navigation.tsx:179
+#: src/Navigation.tsx:171
#: src/view/screens/Lists.tsx:60
#: src/view/screens/Profile.tsx:233
#: src/view/screens/Profile.tsx:241
-#: src/view/shell/desktop/LeftNav.tsx:721
+#: src/view/shell/desktop/LeftNav.tsx:722
#: src/view/shell/Drawer.tsx:548
msgid "Lists"
msgstr "Danh sách"
@@ -6545,7 +6725,7 @@ msgstr ""
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/features/liveNow/components/LiveStatusDialog.tsx:244
+#: src/features/liveNow/components/LiveStatusDialog.tsx:245
msgid "Live feature is in beta"
msgstr ""
@@ -6595,27 +6775,27 @@ msgstr ""
msgid "Loading..."
msgstr "Đang tải..."
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Lock"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:69
+#: src/screens/Messages/ConversationSettings/prompts.tsx:96
msgid "Lock group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:67
+#: src/screens/Messages/ConversationSettings/prompts.tsx:94
msgid "Lock group chat?"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:503
+#: src/screens/Messages/ConversationSettings/index.tsx:502
msgid "Lock this group chat"
msgstr ""
-#: src/screens/Messages/ConversationSettings/index.tsx:505
+#: src/screens/Messages/ConversationSettings/index.tsx:504
msgid "Locked"
msgstr ""
-#: src/Navigation.tsx:328
+#: src/Navigation.tsx:320
msgid "Log"
msgstr "Log"
@@ -6662,7 +6842,7 @@ msgstr "Có vẻ như bạn đang thiếu bảng tin theo dõi. <0>Nhấn vào
msgid "Love GIFs"
msgstr ""
-#: src/components/dialogs/EmailDialog/index.tsx:41
+#: src/components/dialogs/EmailDialog/index.tsx:39
msgid "Make adjustments to email settings for your account"
msgstr ""
@@ -6687,9 +6867,8 @@ msgstr "Quản lý cài đặt xác minh"
msgid "Manage your muted words and tags"
msgstr "Quản lý từ cấm và thẻ"
-#: src/screens/Messages/Inbox.tsx:323
-#: src/screens/Messages/Inbox.tsx:346
-#: src/screens/Messages/Inbox.tsx:352
+#: src/screens/Messages/Inbox.tsx:307
+#: src/screens/Messages/Inbox.tsx:313
msgid "Mark all as read"
msgstr "Đánh dấu tất cả là đã đọc"
@@ -6698,13 +6877,12 @@ msgstr "Đánh dấu tất cả là đã đọc"
msgid "Mark as read"
msgstr "Đánh dấu đã đọc"
-#: src/screens/Messages/Inbox.tsx:306
-#: src/screens/Messages/Inbox.tsx:333
+#: src/screens/Messages/Inbox.tsx:294
msgid "Marked all as read"
msgstr "Đã đánh dấu tất cả là đã đọc"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
msgid "Maybe later"
msgstr "Để sau"
@@ -6727,25 +6905,21 @@ 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ả."
#. The heading above the list of chat members.
-#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29
+#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34
msgid "Members"
msgstr ""
-#: src/screens/Messages/ConversationSettings/prompts.tsx:68
+#: src/screens/Messages/ConversationSettings/prompts.tsx:95
msgid "Members can still read chat history but can’t send new messages."
msgstr ""
-#: src/Navigation.tsx:459
-msgid "Mention notifications"
-msgstr ""
-
#: src/components/WhoCanReply.tsx:320
msgid "mentioned users"
msgstr "người dùng được đề cập"
#: src/lib/hooks/useNotificationHandler.ts:181
-#: src/screens/Settings/NotificationSettings/index.tsx:160
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:171
+#: src/screens/Settings/NotificationSettings/index.tsx:284
#: src/view/screens/Notifications.tsx:99
msgid "Mentions"
msgstr "Nhắc đến"
@@ -6775,22 +6949,22 @@ msgstr "Tin nhắn {0}"
msgid "Message {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:310
+#: src/screens/Messages/components/ChatListItem.tsx:330
msgid "Message deleted"
msgstr "Đã xóa tin nhắn"
-#: src/components/dms/MessageContextMenu.tsx:100
+#: src/components/dms/MessageOverlays.tsx:111
msgctxt "toast"
msgid "Message deleted"
msgstr "Đã xóa tin nhắn"
-#: src/components/dms/MessageItem.tsx:553
+#: src/components/dms/MessageItem.tsx:535
msgid "Message failed to send."
msgstr ""
#. placeholder {0}: sender?.handle ?? 'unknown'
#. placeholder {1}: message.text
-#: src/components/dms/MessageContextMenu.tsx:146
+#: src/components/dms/MessageContextMenu.tsx:129
msgid "Message from @{0}: {1}"
msgstr "Tin nhắn từ @{0}: {1}"
@@ -6813,19 +6987,19 @@ msgstr "Tin nhắn quá dài"
msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})"
msgstr ""
-#: src/components/dms/MessageContextMenu.tsx:145
+#: src/components/dms/MessageContextMenu.tsx:128
msgid "Message options"
msgstr "Tuỳ chọn tin nhắn"
-#: src/Navigation.tsx:838
+#: src/Navigation.tsx:755
msgid "Messages"
msgstr "Tin nhắn"
-#: src/components/dms/MessageItem.tsx:652
+#: src/components/dms/MessageItem.tsx:634
msgid "Messages from this person are hidden while they are blocking you."
msgstr ""
-#: src/components/dms/MessageItem.tsx:647
+#: src/components/dms/MessageItem.tsx:629
msgid "Messages from this person are hidden while you are blocking them."
msgstr ""
@@ -6838,10 +7012,6 @@ msgstr "Nửa đêm"
msgid "Minor harassment or bullying"
msgstr ""
-#: src/Navigation.tsx:523
-msgid "Miscellaneous notifications"
-msgstr ""
-
#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35
msgid "Misleading"
msgstr ""
@@ -6850,7 +7020,7 @@ msgstr ""
msgid "Missing media"
msgstr ""
-#: src/Navigation.tsx:184
+#: src/Navigation.tsx:176
#: src/screens/Moderation/index.tsx:100
msgid "Moderation"
msgstr "Kiểm duyệt"
@@ -6894,7 +7064,7 @@ msgstr "Đã cập nhật danh sách kiểm duyệt"
msgid "Moderation lists"
msgstr "Danh sách kiểm duyệt"
-#: src/Navigation.tsx:189
+#: src/Navigation.tsx:181
#: src/view/screens/ModerationModlists.tsx:60
msgid "Moderation Lists"
msgstr "Danh sách kiểm duyệt"
@@ -6903,7 +7073,7 @@ msgstr "Danh sách kiểm duyệt"
msgid "moderation settings"
msgstr "Cài đặt kiểm duyệt"
-#: src/Navigation.tsx:318
+#: src/Navigation.tsx:310
msgid "Moderation states"
msgstr "Trạng thái kiểm duyệt"
@@ -6949,7 +7119,7 @@ msgstr "Phim ảnh"
msgid "Music"
msgstr "Âm nhạc"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Mute"
msgstr "Tắt tiếng"
@@ -6994,7 +7164,7 @@ msgstr "Danh sách ẩn"
msgid "Mute these accounts?"
msgstr "Ẩn các tài khoản này?"
-#: src/screens/Messages/ConversationSettings/index.tsx:465
+#: src/screens/Messages/ConversationSettings/index.tsx:464
msgid "Mute this group chat"
msgstr ""
@@ -7032,7 +7202,7 @@ msgstr "Tắt thông báo thảo luận"
msgid "Mute words & tags"
msgstr "Ẩn từ & thẻ"
-#: src/screens/Messages/ConversationSettings/index.tsx:467
+#: src/screens/Messages/ConversationSettings/index.tsx:466
msgid "Muted"
msgstr ""
@@ -7040,7 +7210,7 @@ msgstr ""
msgid "Muted accounts"
msgstr "Tài khoản bị ẩn"
-#: src/Navigation.tsx:194
+#: src/Navigation.tsx:186
#: src/view/screens/ModerationMutedAccounts.tsx:107
msgid "Muted Accounts"
msgstr "Tài khoản bị ẩn"
@@ -7108,8 +7278,8 @@ msgstr "Điều hướng đến màn hình kế tiếp"
msgid "Navigates to your profile"
msgstr "Điều hướng đến hồ sơ của bạn"
-#: src/components/moderation/ReportDialog/index.tsx:340
-#: src/components/moderation/ReportDialog/index.tsx:356
+#: src/components/moderation/ReportDialog/index.tsx:342
+#: src/components/moderation/ReportDialog/index.tsx:358
msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?"
msgstr ""
@@ -7136,34 +7306,34 @@ msgstr ""
msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}"
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:161
-#: src/components/dms/dialogs/NewChatDialog.tsx:171
-#: src/screens/Messages/ChatList.tsx:158
-#: src/screens/Messages/ChatList.tsx:159
-#: src/screens/Messages/ChatList.tsx:366
-#: src/screens/Messages/ChatList.tsx:367
-#: src/screens/Messages/ChatList.tsx:480
+#: src/components/dms/dialogs/NewChatDialog.tsx:165
+#: src/components/dms/dialogs/NewChatDialog.tsx:176
+#: src/screens/Messages/ChatList.tsx:166
+#: src/screens/Messages/ChatList.tsx:167
+#: src/screens/Messages/ChatList.tsx:380
+#: src/screens/Messages/ChatList.tsx:381
+#: src/screens/Messages/ChatList.tsx:517
msgid "New chat"
msgstr "Chat mới"
#. placeholder {0}: createSanitizedDisplayName(members[0])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58
msgid "New chat with {0}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62
msgid "New chat with {0} and {1}"
msgstr ""
#. placeholder {0}: createSanitizedDisplayName(members[0])
#. placeholder {1}: createSanitizedDisplayName(members[1])
-#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73
+#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70
msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:223
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:219
msgid "New email address"
msgstr "Địa chỉ email mới"
@@ -7174,29 +7344,25 @@ msgstr "Địa chỉ email mới"
msgid "New Feature"
msgstr "Tính năng mới"
-#: src/Navigation.tsx:491
-msgid "New follower notifications"
-msgstr ""
-
#: src/lib/hooks/useNotificationHandler.ts:195
-#: src/screens/Settings/NotificationSettings/index.tsx:138
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:149
+#: src/screens/Settings/NotificationSettings/index.tsx:268
msgid "New followers"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:230
+#: src/components/dms/InitiateChatFlow.tsx:239
msgid "New group chat"
msgstr ""
#. Button used to create a new group chat.
#. Button used to create a new group chat.
-#: src/components/dms/InitiateChatFlow.tsx:712
-#: src/components/dms/InitiateChatFlow.tsx:745
+#: src/components/dms/InitiateChatFlow.tsx:774
+#: src/components/dms/InitiateChatFlow.tsx:808
msgctxt "action"
msgid "New group chat"
msgstr ""
-#: src/components/dms/InitiateChatFlow.tsx:267
+#: src/components/dms/InitiateChatFlow.tsx:276
msgid "New group chat with:"
msgstr ""
@@ -7227,7 +7393,7 @@ msgid "New post"
msgstr "Bài đăng mới"
#: src/view/com/feeds/FeedPage.tsx:179
-#: src/view/shell/desktop/LeftNav.tsx:597
+#: src/view/shell/desktop/LeftNav.tsx:598
msgctxt "action"
msgid "New post"
msgstr "Bài đăng mới"
@@ -7262,8 +7428,8 @@ msgstr "Tin tức"
#: src/components/contacts/screens/ViewMatches.tsx:395
#: src/components/contacts/screens/ViewMatches.tsx:410
-#: src/components/dms/AddMembersFlow.tsx:308
-#: src/components/dms/InitiateChatFlow.tsx:444
+#: src/components/dms/AddMembersFlow.tsx:318
+#: src/components/dms/InitiateChatFlow.tsx:470
#: src/screens/Login/ForgotPasswordForm.tsx:149
#: src/screens/Login/ForgotPasswordForm.tsx:156
#: src/screens/Login/SetNewPasswordForm.tsx:186
@@ -7335,7 +7501,7 @@ msgstr ""
msgid "No GIFs to show right now. Try again in a moment."
msgstr ""
-#: src/features/liveNow/components/LinkPreview.tsx:63
+#: src/features/liveNow/components/LinkPreview.tsx:64
msgid "No image"
msgstr ""
@@ -7362,7 +7528,7 @@ msgstr "Không còn theo dõi {0}"
msgid "No media yet"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:296
+#: src/screens/Messages/components/ChatListItem.tsx:316
msgid "No messages yet"
msgstr "Chưa có tin nhắn nào"
@@ -7378,12 +7544,12 @@ msgstr ""
msgid "No notifications yet!"
msgstr "Chưa có thông báo nào!"
-#: src/screens/Messages/Settings.tsx:86
+#: src/screens/Messages/Settings.tsx:88
msgctxt "allow group chat invites from"
msgid "No one"
msgstr ""
-#: src/screens/Messages/Settings.tsx:68
+#: src/screens/Messages/Settings.tsx:70
msgctxt "allow messages from"
msgid "No one"
msgstr ""
@@ -7435,8 +7601,8 @@ msgid "No result"
msgstr "Không có kết quả"
#: src/components/dialogs/SearchablePeopleList.tsx:250
-#: src/components/dms/AddMembersFlow.tsx:240
-#: src/components/dms/InitiateChatFlow.tsx:340
+#: src/components/dms/AddMembersFlow.tsx:250
+#: src/components/dms/InitiateChatFlow.tsx:350
#: src/components/ProgressGuide/FollowDialog.tsx:221
msgid "No results"
msgstr "Không có kết quả"
@@ -7509,10 +7675,6 @@ msgstr ""
msgid "Non-sexual Nudity"
msgstr "Khỏa thân không khiêu dâm"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223
-msgid "None"
-msgstr ""
-
#: src/screens/FindContactsFlowScreen.tsx:62
#: src/screens/Settings/FindContactsSettings.tsx:104
msgid "Not available on this platform."
@@ -7522,12 +7684,12 @@ msgstr ""
msgid "Not followed by anyone you’re following"
msgstr ""
-#: src/Navigation.tsx:174
+#: src/Navigation.tsx:166
#: src/view/screens/Profile.tsx:132
msgid "Not Found"
msgstr "Không tìm thấy"
-#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130
+#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131
msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right."
msgstr ""
@@ -7548,44 +7710,31 @@ msgstr ""
msgid "Nothing saved yet"
msgstr ""
-#: src/Navigation.tsx:445
-#: src/Navigation.tsx:599
+#: src/components/dialogs/NotificationSettingsDialog.tsx:64
+#: src/Navigation.tsx:437
+#: src/Navigation.tsx:516
#: src/view/screens/Notifications.tsx:134
msgid "Notification settings"
msgstr "Cài đặt thông báo"
-#: src/screens/Messages/Settings.tsx:231
-#: src/screens/Messages/Settings.tsx:244
+#: src/screens/Messages/Settings.tsx:230
+#: src/screens/Messages/Settings.tsx:243
msgid "Notification sounds"
msgstr "Âm thanh thông báo"
-#: src/Navigation.tsx:594
-#: src/Navigation.tsx:833
+#: src/Navigation.tsx:511
+#: src/Navigation.tsx:750
#: src/screens/Notifications/ActivityList.tsx:31
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93
-#: src/screens/Settings/NotificationSettings/index.tsx:93
-#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30
+#: src/screens/Settings/NotificationSettings/index.tsx:104
#: src/screens/Settings/Settings.tsx:197
#: src/screens/Settings/Settings.tsx:200
#: src/view/screens/Notifications.tsx:128
-#: src/view/shell/bottom-bar/BottomBar.tsx:260
-#: src/view/shell/desktop/LeftNav.tsx:686
+#: src/view/shell/bottom-bar/BottomBar.tsx:261
+#: src/view/shell/desktop/LeftNav.tsx:687
#: src/view/shell/Drawer.tsx:496
msgid "Notifications"
msgstr "Thông báo"
-#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43
-msgid "Notifications for everything else, such as when someone joins via one of your starter packs."
-msgstr ""
-
#: src/lib/hooks/useTimeAgo.ts:135
msgid "now"
msgstr "bây giờ"
@@ -7601,7 +7750,7 @@ msgstr ""
#: src/lib/moderation/useLabelBehaviorDescription.ts:14
#: src/screens/Settings/AccountSettings.tsx:164
-#: src/screens/Settings/NotificationSettings/index.tsx:292
+#: src/screens/Settings/NotificationSettings/index.tsx:394
msgid "Off"
msgstr "Tắt"
@@ -7623,7 +7772,8 @@ msgstr "OK"
#: src/components/BotAccountAlert.tsx:52
#: src/components/BotAccountAlert.tsx:57
-#: src/components/dms/MessageItem.tsx:659
+#: src/components/dms/InitiateChatFlow.tsx:707
+#: src/components/dms/MessageItem.tsx:641
#: src/screens/Login/PasswordUpdatedForm.tsx:37
#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661
msgid "Okay"
@@ -7648,35 +7798,35 @@ msgstr "trên<0><1/><2><3/>2>0>"
msgid "Onboarding reset"
msgstr "Đặt lại quá trình hướng dẫn"
-#: src/components/dms/dialogs/NewChatDialog.tsx:110
+#: src/components/dms/dialogs/NewChatDialog.tsx:113
msgid "One of the selected recipients does not allow group chats."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:93
+#: src/components/dms/dialogs/NewChatDialog.tsx:96
msgid "One of the selected recipients has blocked you and cannot be messaged."
msgstr ""
-#: src/view/com/composer/Composer.tsx:793
+#: src/view/com/composer/Composer.tsx:855
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:790
+#: src/view/com/composer/Composer.tsx:852
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:411
+#: src/view/com/composer/SelectMediaButton.tsx:417
msgid "One or more of your selected files are not supported."
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:434
-msgid "One or more of your selected files are too large. Maximum size is 100 MB."
+#: src/view/com/composer/SelectMediaButton.tsx:440
+msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB} MB."
msgstr ""
-#: src/view/com/composer/Composer.tsx:595
+#: src/view/com/composer/Composer.tsx:650
msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}"
msgstr ""
-#: src/view/com/composer/Composer.tsx:800
+#: src/view/com/composer/Composer.tsx:862
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ế"
@@ -7685,6 +7835,26 @@ msgstr "Một hoặc nhiều video thiếu văn bản thay thế"
msgid "Only {0} can reply."
msgstr "Chỉ {0} có thể trả lời"
+#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept
+#. placeholder {0}: result.accepted.length
+#. placeholder {1}: next.length
+#. placeholder {2}: next.length
+#: src/view/com/composer/Composer.tsx:225
+msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:196
+msgid "Only admins can accept join requests."
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:228
+msgid "Only admins can ignore join requests."
+msgstr ""
+
+#: src/components/intents/GroupChatJoinDialog.tsx:125
+msgid "Only followers can join this group chat."
+msgstr ""
+
#: src/screens/Settings/ActivityPrivacySettings.tsx:121
#: src/screens/Settings/ActivityPrivacySettings.tsx:126
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158
@@ -7695,6 +7865,16 @@ msgstr ""
msgid "Only image files are supported"
msgstr "Chỉ hỗ trợ tệp hình ảnh"
+#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), )
+#: src/screens/Messages/JoinRequest.tsx:207
+msgid "Only people {0} follows can join."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:115
+#: src/components/intents/GroupChatJoinDialog.tsx:269
+msgid "Only people the chat owner follows can join"
+msgstr ""
+
#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41
msgid "Only WebVTT (.vtt) files are supported"
msgstr "Chỉ hỗ trợ tệp WebVTT (.vtt)"
@@ -7712,7 +7892,7 @@ msgstr "Ôi, có gì đó không đúng!"
msgid "Oops!"
msgstr "Ôi!"
-#: src/screens/Onboarding/StepProfile/index.tsx:310
+#: src/screens/Onboarding/StepProfile/index.tsx:311
msgid "Open avatar creator"
msgstr "Mở trình tạo hình đại diện"
@@ -7720,12 +7900,17 @@ msgstr "Mở trình tạo hình đại diện"
msgid "Open camera"
msgstr ""
+#: src/components/dms/ChatInvite/Root.tsx:87
+#: src/components/intents/GroupChatJoinDialog.tsx:408
+msgid "Open chat"
+msgstr ""
+
#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139
msgid "Open chat member options for {displayName}"
msgstr ""
-#: src/screens/Messages/components/ChatListItem.tsx:471
-#: src/screens/Messages/components/ChatListItem.tsx:475
+#: src/screens/Messages/components/ChatListItem.tsx:495
+#: src/screens/Messages/components/ChatListItem.tsx:499
msgid "Open conversation options"
msgstr "Mở tùy chọn hội thoại"
@@ -7739,16 +7924,16 @@ msgstr "Mở trình đơn"
#: src/screens/Messages/components/MessageComposer.tsx:176
#: src/screens/Messages/components/MessageInput.web.tsx:148
-#: src/view/com/composer/Composer.tsx:2044
+#: src/view/com/composer/Composer.tsx:2094
msgid "Open emoji picker"
msgstr "Mở trình chọn biểu tượng cảm xúc"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:197
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:192
msgid "Open feed info screen"
msgstr "Mở màn hình thông tin bảng tin"
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:293
#: src/screens/Profile/components/ProfileFeedHeader.tsx:298
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:303
msgid "Open feed options menu"
msgstr "Mở trình đơn tùy chọn bảng tin"
@@ -7760,13 +7945,17 @@ msgstr "Mở danh sách emoji đầy đủ"
msgid "Open Germ DM"
msgstr ""
-#: src/components/dms/MessagesListHeader.tsx:169
-#: src/components/dms/MessagesListHeader.tsx:208
+#: src/components/intents/GroupChatJoinDialog.tsx:401
+msgid "Open group chat"
+msgstr ""
+
+#: src/components/dms/MessagesListHeader.tsx:181
+#: src/components/dms/MessagesListHeader.tsx:220
msgid "Open group chat settings"
msgstr ""
-#: src/components/Post/Embed/ExternalEmbed/index.tsx:86
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143
+#: src/components/Post/Embed/ExternalEmbed/index.tsx:88
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:140
msgid "Open link to {niceUrl}"
msgstr "Mở liên kết đến {niceUrl}"
@@ -7790,8 +7979,8 @@ msgstr "Mở gói"
msgid "Open post options menu"
msgstr "Mở bảng tùy chọn bài đăng"
-#: src/features/liveNow/components/LiveStatusDialog.tsx:218
-#: src/features/liveNow/components/LiveStatusDialog.tsx:228
+#: src/features/liveNow/components/LiveStatusDialog.tsx:219
+#: src/features/liveNow/components/LiveStatusDialog.tsx:229
msgid "Open profile"
msgstr ""
@@ -7817,6 +8006,10 @@ msgstr "Mở trang storybook"
msgid "Open system log"
msgstr "Mở log hệ thống"
+#: src/components/intents/GroupChatJoinDialog.tsx:402
+msgid "Open this group chat"
+msgstr ""
+
#. placeholder {0}: feedInfo.displayName
#: src/view/shell/desktop/Feeds.tsx:185
msgid "Opens {0} feed"
@@ -7838,7 +8031,7 @@ msgstr "Mở chi tiết bổ sung cho một mục gỡ lỗi"
msgid "Opens alt text dialog"
msgstr "Mở hộp thoại văn bản thay thế"
-#: src/view/com/composer/photos/OpenCameraBtn.tsx:71
+#: src/view/com/composer/photos/OpenCameraBtn.tsx:70
msgid "Opens camera on device"
msgstr "Mở máy ảnh trên thiết bị"
@@ -7858,22 +8051,24 @@ msgstr "Mở trình soạn thảo"
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:505
-msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF."
+#. Accessibility hint for button in composer to add images, a video, or a GIF to a post.
+#: src/view/com/composer/SelectMediaButton.tsx:511
+msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF."
msgstr ""
+#: src/screens/Messages/JoinRequest.tsx:295
#: src/view/com/auth/SplashScreen.tsx:102
#: src/view/com/auth/SplashScreen.web.tsx:110
msgid "Opens flow to create a new Bluesky account"
msgstr "Mở quy trình tạo tài khoản Bluesky mới"
+#: src/screens/Messages/JoinRequest.tsx:281
#: src/view/com/auth/SplashScreen.tsx:120
#: src/view/com/auth/SplashScreen.web.tsx:124
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"
-#: src/components/images/Gallery/index.tsx:428
+#: src/components/images/Gallery/index.tsx:452
msgid "Opens full image"
msgstr ""
@@ -7890,7 +8085,7 @@ msgstr ""
msgid "Opens link {0}"
msgstr ""
-#: src/view/com/util/UserAvatar.tsx:599
+#: src/view/com/util/UserAvatar.tsx:603
msgid "Opens live status dialog"
msgstr ""
@@ -7919,9 +8114,9 @@ msgstr ""
msgid "Opens this draft in the composer"
msgstr ""
-#: src/components/dms/MessageItem.tsx:229
+#: src/components/dms/MessageItem.tsx:233
#: src/view/com/notifications/NotificationFeedItem.tsx:1019
-#: src/view/com/util/UserAvatar.tsx:617
+#: src/view/com/util/UserAvatar.tsx:621
msgid "Opens this profile"
msgstr "Mở hồ sơ này"
@@ -7997,12 +8192,12 @@ msgstr ""
#: src/components/dms/AfterReportConversationDialog.tsx:86
#: src/components/dms/AfterReportConversationDialog.tsx:213
-#: src/components/dms/AfterReportDialog.tsx:84
-#: src/components/dms/AfterReportDialog.tsx:176
+#: src/components/dms/AfterReportDialog.tsx:89
+#: src/components/dms/AfterReportDialog.tsx:181
msgid "Our moderation team has received your report."
msgstr "Đội ngũ kiểm duyệt của chúng tôi đã nhận được báo cáo của bạn."
-#: src/screens/Messages/components/ChatDisabled.tsx:50
+#: src/screens/Messages/components/ChatDisabled.tsx:54
msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky."
msgstr "Kiểm duyệt viên của chúng tôi đã xem xét các báo cáo và quyết định vô hiệu hóa quyền truy cập chat của bạn trên Bluesky."
@@ -8010,16 +8205,17 @@ msgstr "Kiểm duyệt viên của chúng tôi đã xem xét các báo cáo và
msgid "Owner"
msgstr ""
+#: src/components/dms/LeaveConvoPrompt.tsx:44
+msgid "Owner must lock the group before leaving."
+msgstr ""
+
#: src/components/Lists.tsx:205
#: src/components/Lists.tsx:220
-#: src/view/screens/NotFound.tsx:36
+#: src/view/screens/NotFound.tsx:34
+#: src/view/screens/NotFound.tsx:41
msgid "Page not found"
msgstr "Không tìm thấy trang"
-#: src/view/screens/NotFound.tsx:33
-msgid "Page Not Found"
-msgstr "Không tìm thấy trang"
-
#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs.
#: src/features/gifPicker/components/GifCategoryPills.tsx:85
msgid "Party GIFs"
@@ -8068,34 +8264,34 @@ msgstr "Dừng video"
msgid "People"
msgstr "Con người"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:154
+#: src/screens/Messages/components/InviteLinkDialog.tsx:153
msgid "People {ownerName} follows can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:159
+#: src/screens/Messages/components/InviteLinkDialog.tsx:158
msgid "People {ownerName} follows can request to join"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:245
+#: src/Navigation.tsx:237
msgid "People followed by @{0}"
msgstr "Người\tđược @{0} theo dõi"
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:238
+#: src/Navigation.tsx:230
msgid "People following @{0}"
msgstr "Người đang theo dõi @{0}"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198
msgid "People I follow"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:153
+#: src/screens/Messages/components/InviteLinkDialog.tsx:152
msgid "People I follow can join instantly"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:158
+#: src/screens/Messages/components/InviteLinkDialog.tsx:157
msgid "People I follow can request to join"
msgstr ""
@@ -8141,8 +8337,8 @@ msgid "Pictures meant for adults."
msgstr "Hình ảnh cho người lớn"
#: src/components/FeedCard.tsx:364
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:528
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:534
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:514
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:520
#: src/screens/SavedFeeds.tsx:559
msgid "Pin feed"
msgstr "Ghim bảng tin"
@@ -8152,7 +8348,7 @@ msgstr "Ghim bảng tin"
msgid "Pin to home"
msgstr "Ghim vào trang chủ"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:344
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:337
msgid "Pin to Home"
msgstr "Ghim vào trang chủ"
@@ -8166,8 +8362,8 @@ msgid "Pinned"
msgstr "Đã ghim"
#. placeholder {0}: info.displayName
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:164
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:178
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:159
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:173
msgid "Pinned {0} to Home"
msgstr "Đã ghim {0} vào trang chủ"
@@ -8236,7 +8432,7 @@ msgstr "Vui lòng chọn tên tài khoản."
msgid "Please choose your password."
msgstr "Vui lòng chọn mật khẩu."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:291
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:286
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 ""
@@ -8244,7 +8440,7 @@ msgstr ""
msgid "Please complete the verification captcha."
msgstr "Vui lòng hoàn thành xác minh captcha."
-#: src/view/com/composer/state/video.ts:454
+#: src/view/com/composer/state/video.ts:439
msgid "Please confirm your email address to upload videos."
msgstr ""
@@ -8265,14 +8461,14 @@ msgstr "Vui lòng điền mật khẩu. Mật khẩu phải có ít nhất 8 ký
msgid "Please enter a unique name for this app password or use our randomly generated one."
msgstr "Vui lòng nhập tên cho mật khẩu ứng dụng này hoặc sử dụng một tên được tạo ngẫu nhiên."
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:136
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:134
#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146
msgid "Please enter a valid code."
msgstr ""
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:149
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:147
msgid "Please enter a valid email address."
msgstr ""
@@ -8285,7 +8481,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access
msgstr ""
#. placeholder {0}: currentAccount!.email
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269
msgid "Please enter the code we sent to <0>{0}0> below."
msgstr ""
@@ -8293,7 +8489,7 @@ msgstr ""
msgid "Please enter the code you received and the new password you would like to use."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:248
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
msgid "Please enter the security code we sent to your previous email address."
msgstr ""
@@ -8306,7 +8502,7 @@ msgstr "Vui lòng nhập email của bạn."
msgid "Please enter your invite code."
msgstr "Vui lòng nhập mã mời."
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:218
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:214
msgid "Please enter your new email address."
msgstr ""
@@ -8323,7 +8519,7 @@ msgstr "Vui lòng nhập tên tài khoản"
msgid "Please explain why you think this label was incorrectly applied by {0}"
msgstr "Vui lòng giải thích vì sao bạn nghĩ nhãn này đã được áp dụng sai bởi {0}"
-#: src/screens/Messages/components/ChatDisabled.tsx:139
+#: src/screens/Messages/components/ChatDisabled.tsx:143
msgid "Please explain why you think your chats were incorrectly disabled"
msgstr "Vui lòng giải thích vì sao bạn nghĩ chat của bạn đã bị vô hiệu hóa sai"
@@ -8366,7 +8562,7 @@ msgstr ""
msgid "Please use the native app to sync your contacts."
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59
msgid "Please verify your email"
msgstr ""
@@ -8383,7 +8579,7 @@ msgstr "Chính trị"
msgid "Porn"
msgstr "Hình ảnh khiêu dâm"
-#: src/view/com/composer/Composer.tsx:1693
+#: src/view/com/composer/Composer.tsx:1742
msgctxt "action"
msgid "Post"
msgstr "Đăng"
@@ -8403,12 +8599,12 @@ msgstr ""
msgid "Post a video"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1691
+#: src/view/com/composer/Composer.tsx:1740
msgctxt "action"
msgid "Post All"
msgstr "Đăng tất cả"
-#: src/view/com/composer/Composer.tsx:1351
+#: src/view/com/composer/Composer.tsx:1404
msgid "Post anyway"
msgstr ""
@@ -8417,10 +8613,10 @@ msgid "Post blocked"
msgstr ""
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:271
-#: src/Navigation.tsx:278
-#: src/Navigation.tsx:285
-#: src/Navigation.tsx:292
+#: src/Navigation.tsx:263
+#: src/Navigation.tsx:270
+#: src/Navigation.tsx:277
+#: src/Navigation.tsx:284
msgid "Post by @{0}"
msgstr "Đăng bởi @{0}"
@@ -8429,7 +8625,7 @@ msgctxt "toast"
msgid "Post deleted"
msgstr "Đã xóa bài đăng"
-#: src/lib/api/index.ts:193
+#: src/lib/api/index.ts:189
msgid "Post failed to upload. Please check your Internet connection and try again."
msgstr "Không đăng bài đăng được. Vui lòng kiểm tra kết nối mạng và thử lại."
@@ -8454,7 +8650,7 @@ msgstr "Bài đăng ẩn bởi bạn"
msgid "Post interaction settings"
msgstr "Cài đặt tương tác bài đăng"
-#: src/Navigation.tsx:205
+#: src/Navigation.tsx:197
#: src/screens/ModerationInteractionSettings/index.tsx:35
msgid "Post Interaction Settings"
msgstr "Cài đặt tương tác bài đăng"
@@ -8464,8 +8660,8 @@ msgstr "Cài đặt tương tác bài đăng"
msgid "Post language selection"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:354
#: src/screens/Messages/components/InviteLinkDialog.tsx:366
+#: src/screens/Messages/components/InviteLinkDialog.tsx:378
msgid "Post link"
msgstr ""
@@ -8491,7 +8687,6 @@ msgstr "Đã gở ghim bài đăng"
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269
#: src/screens/ProfileList/index.tsx:167
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:219
#: src/screens/StarterPack/StarterPackScreen.tsx:197
#: src/view/screens/Profile.tsx:234
msgid "Posts"
@@ -8505,10 +8700,6 @@ msgstr "Bài đăng có thể bị ẩn dựa trên văn bản, thẻ, hoặc c
msgid "Posts hidden"
msgstr "Bài đăng đã ẩn"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217
-msgid "Posts, Replies"
-msgstr ""
-
#: src/components/dialogs/LinkWarning.tsx:89
msgid "Potentially misleading link"
msgstr ""
@@ -8528,6 +8719,7 @@ msgstr "Nhấn để thử kết nối lại"
#: src/components/Error.tsx:61
#: src/components/Lists.tsx:104
#: src/screens/Messages/components/MessageListError.tsx:23
+#: src/screens/Messages/JoinRequests.tsx:350
#: src/screens/Signup/BackNextButtons.tsx:48
msgid "Press to retry"
msgstr "Nhấn để thử lại"
@@ -8536,7 +8728,7 @@ msgstr "Nhấn để thử lại"
msgid "Press to view followers of this account that you also follow"
msgstr "Nhấn để xem người theo dõi của tài khoản này mà bạn cũng theo dõi"
-#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120
+#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121
msgid "Preview"
msgstr ""
@@ -8559,21 +8751,20 @@ msgstr "Quyền riêng tư"
msgid "Privacy and security"
msgstr "Quyền riêng tư và bảo mật"
+#: src/Navigation.tsx:414
#: src/Navigation.tsx:422
-#: src/Navigation.tsx:430
#: src/screens/Settings/ActivityPrivacySettings.tsx:41
#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45
msgid "Privacy and Security"
msgstr "Quyền riêng tư và bảo mật"
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164
#: src/view/screens/Storybook/Admonitions.tsx:94
msgid "Privacy and Security settings"
msgstr ""
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36
#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103
-#: src/Navigation.tsx:338
+#: src/Navigation.tsx:330
#: src/screens/Settings/AboutSettings.tsx:95
#: src/screens/Settings/AboutSettings.tsx:98
#: src/view/screens/PrivacyPolicy.tsx:25
@@ -8586,15 +8777,15 @@ msgstr "Chính sách bảo mật"
msgid "Privacy violation of a minor"
msgstr ""
-#: src/view/com/composer/Composer.tsx:2478
+#: src/view/com/composer/Composer.tsx:2528
msgid "Processing GIF..."
msgstr ""
-#: src/view/com/composer/Composer.tsx:2480
+#: src/view/com/composer/Composer.tsx:2530
msgid "Processing video..."
msgstr "Đang xử lý video..."
-#: src/lib/api/index.ts:66
+#: src/lib/api/index.ts:62
msgid "Processing..."
msgstr "Đang xử lý..."
@@ -8602,8 +8793,8 @@ msgstr "Đang xử lý..."
msgid "profile"
msgstr "hồ sơ"
-#: src/view/shell/bottom-bar/BottomBar.tsx:303
-#: src/view/shell/desktop/LeftNav.tsx:744
+#: src/view/shell/bottom-bar/BottomBar.tsx:304
+#: src/view/shell/desktop/LeftNav.tsx:745
#: src/view/shell/Drawer.tsx:80
#: src/view/shell/Drawer.tsx:599
msgid "Profile"
@@ -8635,39 +8826,39 @@ 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:1677
+#: src/view/com/composer/Composer.tsx:1726
msgid "Publish post"
msgstr "Đăng bài"
#. Accessibility label for button to publish multiple posts in a thread
-#: src/view/com/composer/Composer.tsx:1672
+#: src/view/com/composer/Composer.tsx:1721
msgid "Publish posts"
msgstr "Đăng bài"
#. Accessibility label for button to publish multiple replies in a thread
-#: src/view/com/composer/Composer.tsx:1661
+#: src/view/com/composer/Composer.tsx:1710
msgid "Publish replies"
msgstr "Đăng trả lời"
#. Accessibility label for button to publish a single reply
-#: src/view/com/composer/Composer.tsx:1666
+#: src/view/com/composer/Composer.tsx:1715
msgid "Publish reply"
msgstr "Đăng trả lời"
-#: src/screens/Settings/NotificationSettings/index.tsx:287
+#: src/screens/Settings/NotificationSettings/index.tsx:389
msgid "Push"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134
msgid "Push notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:270
-msgid "Push, Everyone"
+#: src/screens/Settings/NotificationSettings/index.tsx:372
+msgid "Push, everyone"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:278
-msgid "Push, People you follow"
+#: src/screens/Settings/NotificationSettings/index.tsx:380
+msgid "Push, people you follow"
msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:140
@@ -8682,10 +8873,6 @@ msgstr "Đã tải mã QR!"
msgid "QR code saved to your camera roll!"
msgstr "Đã lưu mã QR vào camera roll!"
-#: src/Navigation.tsx:467
-msgid "Quote notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:176
#: src/components/PostControls/RepostButton.tsx:199
#: src/components/PostControls/RepostButton.web.tsx:84
@@ -8711,8 +8898,8 @@ msgstr "Trích dẫn bài đăng đã bị tắt"
#: src/lib/hooks/useNotificationHandler.ts:188
#: src/screens/Post/PostQuotes.tsx:31
-#: src/screens/Settings/NotificationSettings/index.tsx:171
-#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:182
+#: src/screens/Settings/NotificationSettings/index.tsx:291
msgid "Quotes"
msgstr "Trích dẫn"
@@ -8733,11 +8920,11 @@ msgstr ""
msgid "Re-attach quote"
msgstr "Đính kèm lại trích dẫn"
-#: src/screens/Messages/components/InviteLinkDialog.tsx:384
+#: src/screens/Messages/components/InviteLinkDialog.tsx:396
msgid "Re-enable invite link"
msgstr ""
-#: src/screens/Messages/components/InviteLinkDialog.tsx:391
+#: src/screens/Messages/components/InviteLinkDialog.tsx:403
msgid "Re-enable link"
msgstr ""
@@ -8745,8 +8932,8 @@ msgstr ""
msgid "React with {emoji}"
msgstr "Bày tỏ cảm xúc với {emoji}"
-#: src/components/dms/ReactionsDialog.tsx:65
-#: src/components/dms/ReactionsDialog.tsx:90
+#: src/components/dms/ReactionsDialog.tsx:66
+#: src/components/dms/ReactionsDialog.tsx:94
msgid "Reactions"
msgstr ""
@@ -8764,8 +8951,8 @@ msgctxt "english-only-resource"
msgid "read about how to use search filters"
msgstr ""
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160
-#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162
+#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173
msgid "Read blog post"
msgstr "Đọc bài blog"
@@ -8812,11 +8999,11 @@ msgstr ""
msgid "Reason for appeal"
msgstr "Lý do khiếu nại"
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140
msgid "Receive in-app notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123
msgid "Receive push notifications"
msgstr ""
@@ -8841,6 +9028,10 @@ msgstr "Đề xuất"
msgid "Reconnect"
msgstr "Kết nối lại"
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80
+msgid "Refresh the page to see it."
+msgstr ""
+
#. Reject a chat request, this opens a menu with options
#: src/screens/Messages/components/RequestButtons.tsx:131
msgid "Reject"
@@ -8850,8 +9041,8 @@ msgstr "Từ chối"
msgid "Reject chat request"
msgstr "Từ chối yêu cầu trò chuyện"
-#: src/screens/Messages/ChatList.tsx:338
-#: src/screens/Messages/Inbox.tsx:215
+#: src/screens/Messages/ChatList.tsx:349
+#: src/screens/Messages/Inbox.tsx:205
msgid "Reload conversations"
msgstr "Tải lại hội thoại"
@@ -8896,17 +9087,17 @@ msgstr "Xóa tài khoản"
msgid "Remove all contacts"
msgstr ""
-#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19
+#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18
msgid "Remove attachment"
msgstr "Xóa tệp đính kèm"
-#: src/view/com/util/UserAvatar.tsx:519
-#: src/view/com/util/UserAvatar.tsx:522
+#: src/view/com/util/UserAvatar.tsx:523
+#: src/view/com/util/UserAvatar.tsx:526
msgid "Remove Avatar"
msgstr "Xóa hình đại diện"
-#: src/view/com/util/UserBanner.tsx:189
-#: src/view/com/util/UserBanner.tsx:192
+#: src/view/com/util/UserBanner.tsx:193
+#: src/view/com/util/UserBanner.tsx:196
msgid "Remove Banner"
msgstr "Xóa hình bìa"
@@ -8914,8 +9105,9 @@ msgstr "Xóa hình bìa"
msgid "Remove caption file"
msgstr ""
-#: src/screens/Messages/components/MessageInputEmbed.tsx:192
-#: src/screens/Messages/components/MessageInputEmbed.tsx:248
+#: src/screens/Messages/components/MessageInputEmbed.tsx:234
+#: src/screens/Messages/components/MessageInputEmbed.tsx:289
+#: src/screens/Messages/components/MessageInputEmbed.tsx:355
msgid "Remove embed"
msgstr "Xóa nhúng"
@@ -8933,8 +9125,8 @@ msgstr "Xóa bảng tin?"
msgid "Remove from chat"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:332
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:325
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179
#: src/screens/SavedFeeds.tsx:549
@@ -8959,7 +9151,7 @@ msgstr ""
msgid "Remove from your feeds?"
msgstr "Xóa khỏi bảng tin của bạn?"
-#: src/view/com/composer/photos/Gallery.tsx:225
+#: src/view/com/composer/photos/Gallery.tsx:227
msgid "Remove image"
msgstr "Xóa hình"
@@ -9009,11 +9201,11 @@ msgstr "Xoá xác minh"
msgid "Remove your verification for this account?"
msgstr "Xoá xác minh của bạn khỏi tài khoản này?"
-#: src/components/Post/Embed/index.tsx:225
+#: src/components/Post/Embed/index.tsx:244
msgid "Removed by author"
msgstr "Xóa bởi tác giả"
-#: src/components/Post/Embed/index.tsx:223
+#: src/components/Post/Embed/index.tsx:242
msgid "Removed by you"
msgstr "Xóa bởi bạn"
@@ -9035,7 +9227,7 @@ msgstr ""
msgid "Removed from starter pack"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:124
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:121
#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77
#: src/view/com/posts/FeedShutdownMsg.tsx:45
msgid "Removed from your feeds"
@@ -9089,9 +9281,8 @@ msgstr ""
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274
#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286
#: src/lib/hooks/useNotificationHandler.ts:174
-#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221
-#: src/screens/Settings/NotificationSettings/index.tsx:149
-#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:160
+#: src/screens/Settings/NotificationSettings/index.tsx:275
#: src/view/screens/Profile.tsx:235
msgid "Replies"
msgstr "Trả lời"
@@ -9104,14 +9295,14 @@ 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:1689
+#: src/view/com/composer/Composer.tsx:1738
msgctxt "action"
msgid "Reply"
msgstr "Trả lời"
#. Accessibility label for the reply button, verb form followed by number of replies and noun form
#. placeholder {0}: post.replyCount || 0
-#: src/components/PostControls/index.tsx:243
+#: src/components/PostControls/index.tsx:240
msgid "Reply ({0, plural, one {# reply} other {# replies}})"
msgstr "Trả lời ({0, plural, other {# trả lời}})"
@@ -9125,10 +9316,6 @@ msgstr "Trả lời bị ẩn bởi tác giả của thảo luận"
msgid "Reply Hidden by You"
msgstr "Trả lời bị ẩn bởi bạn"
-#: src/Navigation.tsx:451
-msgid "Reply notifications"
-msgstr ""
-
#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418
msgid "Reply settings are chosen by the author of the thread"
msgstr "Cài đặt trả lời được chọn bởi tác giả của thảo luận"
@@ -9146,9 +9333,9 @@ msgstr "Đã cập nhật trạng thái hiển thị trả lời"
msgid "Reply was successfully hidden"
msgstr "Ẩn thành công trả lời"
-#: src/components/dms/MessageContextMenu.tsx:193
-#: src/features/liveNow/components/LiveStatusDialog.tsx:266
-#: src/screens/Messages/ConversationSettings/index.tsx:518
+#: src/components/dms/MessageContextMenu.tsx:176
+#: src/features/liveNow/components/LiveStatusDialog.tsx:267
+#: src/screens/Messages/ConversationSettings/index.tsx:517
msgid "Report"
msgstr "Báo cáo"
@@ -9164,13 +9351,13 @@ msgstr "Báo cáo tài khoản"
msgid "Report conversation"
msgstr "Báo cáo hội thoại"
-#: src/components/moderation/ReportDialog/index.tsx:96
-#: src/components/moderation/ReportDialog/index.tsx:261
+#: src/components/moderation/ReportDialog/index.tsx:98
+#: src/components/moderation/ReportDialog/index.tsx:263
msgid "Report dialog"
msgstr "Hộp thoại báo cáo"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:550
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:556
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:536
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:542
msgid "Report feed"
msgstr "Báo cáo bảng tin"
@@ -9179,7 +9366,7 @@ msgstr "Báo cáo bảng tin"
msgid "Report list"
msgstr "Báo cáo danh sách"
-#: src/components/dms/MessageContextMenu.tsx:190
+#: src/components/dms/MessageContextMenu.tsx:173
msgid "Report message"
msgstr "Báo cáo tin nhắn"
@@ -9199,8 +9386,8 @@ msgstr "Báo cáo gói khởi đầu"
#: src/components/dms/AfterReportConversationDialog.tsx:83
#: src/components/dms/AfterReportConversationDialog.tsx:210
-#: src/components/dms/AfterReportDialog.tsx:81
-#: src/components/dms/AfterReportDialog.tsx:173
+#: src/components/dms/AfterReportDialog.tsx:86
+#: src/components/dms/AfterReportDialog.tsx:178
msgid "Report submitted"
msgstr "Đã gửi báo cáo"
@@ -9213,7 +9400,7 @@ msgstr ""
msgid "Report this feed"
msgstr "Báo cáo bảng tin này"
-#: src/screens/Messages/ConversationSettings/index.tsx:517
+#: src/screens/Messages/ConversationSettings/index.tsx:516
msgid "Report this group chat"
msgstr ""
@@ -9222,7 +9409,7 @@ msgid "Report this list"
msgstr "Báo cáo danh sách này"
#: src/components/moderation/ReportDialog/copy.ts:19
-#: src/features/liveNow/components/LiveStatusDialog.tsx:249
+#: src/features/liveNow/components/LiveStatusDialog.tsx:250
msgid "Report this livestream"
msgstr ""
@@ -9256,10 +9443,6 @@ msgstr "Đăng lại"
msgid "Repost ({0, plural, one {# repost} other {# reposts}})"
msgstr "Đăng lại ({0, plural, other {# đăng lại}})"
-#: src/Navigation.tsx:483
-msgid "Repost notifications"
-msgstr ""
-
#: src/components/PostControls/RepostButton.tsx:146
#: src/components/PostControls/RepostButton.web.tsx:43
#: src/components/PostControls/RepostButton.web.tsx:103
@@ -9282,8 +9465,8 @@ msgid "Reposted by you"
msgstr "Đăng lại bởi bạn"
#: src/lib/hooks/useNotificationHandler.ts:167
-#: src/screens/Settings/NotificationSettings/index.tsx:182
-#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:193
+#: src/screens/Settings/NotificationSettings/index.tsx:300
msgid "Reposts"
msgstr ""
@@ -9292,13 +9475,17 @@ msgid "Reposts of this post"
msgstr "Lượt đăng lại của bài đăng này"
#: src/lib/hooks/useNotificationHandler.ts:209
-#: src/screens/Settings/NotificationSettings/index.tsx:223
-#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41
+#: src/screens/Settings/NotificationSettings/index.tsx:230
+#: src/screens/Settings/NotificationSettings/index.tsx:331
msgid "Reposts of your reposts"
msgstr ""
-#: src/Navigation.tsx:507
-msgid "Reposts of your reposts notifications"
+#: src/components/intents/GroupChatJoinDialog.tsx:418
+msgid "Request access to group chat"
+msgstr ""
+
+#: src/screens/Messages/JoinRequests.tsx:178
+msgid "Request approved."
msgstr ""
#: src/screens/Settings/components/ChangePasswordDialog.tsx:226
@@ -9306,17 +9493,36 @@ msgstr ""
msgid "Request code"
msgstr ""
+#: src/screens/Messages/JoinRequests.tsx:210
+msgid "Request ignored."
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:100
+#: src/components/intents/GroupChatJoinDialog.tsx:253
+msgid "Request to join"
+msgstr ""
+
+#: src/components/dms/ChatInvite/Root.tsx:119
+msgid "Requested"
+msgstr ""
+
#. Incoming message requests
-#: src/screens/Messages/components/InboxRequests.tsx:24
+#: src/screens/Messages/components/InboxRequests.tsx:26
msgid "Requests"
msgstr ""
+#: src/Navigation.tsx:495
+#: src/screens/Messages/JoinRequests.tsx:58
+#: src/screens/Messages/JoinRequests.tsx:420
+msgid "Requests to join"
+msgstr ""
+
#: src/screens/Settings/AccessibilitySettings.tsx:59
#: src/screens/Settings/AccessibilitySettings.tsx:64
msgid "Require alt text before posting"
msgstr "Yêu cầu văn bản thay thế trước khi đăng"
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95
msgid "Require an email code to sign in to your account."
msgstr "Yêu cầu một mã gửi qua email để đăng nhập vào tài khoản của bạn."
@@ -9328,7 +9534,11 @@ msgstr "Bắt buộc đối với nhà quản lý này"
msgid "Required in your region"
msgstr "Bắt buộc đối với khu vực của bạn"
-#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41
+#: src/components/intents/GroupChatJoinDialog.tsx:273
+msgid "Rescind request"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39
msgid "Resend"
msgstr ""
@@ -9393,15 +9603,16 @@ msgstr "Thử lại hành động cuối cùng (đã xảy ra lỗi)"
#: src/components/contacts/screens/VerifyNumber.tsx:355
#: src/components/Error.tsx:65
#: src/components/Lists.tsx:115
-#: src/components/moderation/ReportDialog/index.tsx:295
+#: src/components/moderation/ReportDialog/index.tsx:297
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56
#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59
#: src/components/StarterPack/ProfileStarterPacks.tsx:377
#: src/screens/Login/LoginForm.tsx:329
#: src/screens/Login/LoginForm.tsx:335
-#: src/screens/Messages/ChatList.tsx:343
+#: src/screens/Messages/ChatList.tsx:354
#: src/screens/Messages/components/MessageListError.tsx:24
-#: src/screens/Messages/Inbox.tsx:220
+#: src/screens/Messages/Inbox.tsx:210
+#: src/screens/Messages/JoinRequests.tsx:356
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268
#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271
#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92
@@ -9415,7 +9626,7 @@ msgstr "Thử lại hành động cuối cùng (đã xảy ra lỗi)"
msgid "Retry"
msgstr "Thử lại"
-#: src/components/moderation/ReportDialog/index.tsx:292
+#: src/components/moderation/ReportDialog/index.tsx:294
#: src/view/screens/Storybook/Admonitions.tsx:61
msgid "Retry loading report options"
msgstr "Thử tải lại tùy chọn báo cáo"
@@ -9426,14 +9637,14 @@ msgstr "Thử tải lại tùy chọn báo cáo"
msgid "Return to previous page"
msgstr "Trở về trang trước"
-#: src/view/screens/NotFound.tsx:50
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to home page"
msgstr "Trở về trang chủ"
#: src/screens/ProfileList/components/ErrorScreen.tsx:36
#: src/screens/Settings/components/ChangeHandleDialog.tsx:577
#: src/screens/VideoFeed/index.tsx:1169
-#: src/view/screens/NotFound.tsx:49
+#: src/view/screens/NotFound.tsx:54
msgid "Returns to previous page"
msgstr "Trở về trang trước"
@@ -9454,7 +9665,7 @@ msgstr ""
#: src/components/StarterPack/QrCodeDialog.tsx:207
#: src/features/liveNow/components/EditLiveDialog.tsx:204
#: src/features/liveNow/components/EditLiveDialog.tsx:211
-#: src/screens/Messages/ConversationSettings/prompts.tsx:47
+#: src/screens/Messages/ConversationSettings/prompts.tsx:71
#: src/screens/Profile/Header/EditProfileDialog.tsx:233
#: src/screens/Profile/Header/EditProfileDialog.tsx:247
#: src/screens/SavedFeeds.tsx:124
@@ -9479,27 +9690,29 @@ msgstr ""
#: src/screens/SavedFeeds.tsx:124
#: src/screens/SavedFeeds.tsx:311
#: src/screens/SavedFeeds.tsx:315
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save changes"
msgstr "Lưu thay đổi"
-#: src/view/com/composer/Composer.tsx:1304
+#: src/view/com/composer/Composer.tsx:1357
#: src/view/com/composer/drafts/DraftsButton.tsx:93
msgid "Save changes?"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1332
+#: src/view/com/composer/Composer.tsx:1385
#: src/view/com/composer/drafts/DraftsButton.tsx:125
msgid "Save draft"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1306
+#: src/view/com/composer/Composer.tsx:1359
#: src/view/com/composer/drafts/DraftsButton.tsx:95
msgid "Save draft?"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:99
+#: src/components/MediaPreview.tsx:231
+#: src/components/Post/Embed/ImageContextMenu.tsx:70
#: src/components/StarterPack/ShareDialog.tsx:144
#: src/components/StarterPack/ShareDialog.tsx:150
msgid "Save image"
@@ -9518,12 +9731,12 @@ msgstr "Lưu mã QR"
msgid "Save these options for next time"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:327
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:333
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:320
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:326
msgid "Save to my feeds"
msgstr "Lưu vào bảng tin của tôi"
-#: src/view/shell/desktop/LeftNav.tsx:731
+#: src/view/shell/desktop/LeftNav.tsx:732
#: src/view/shell/Drawer.tsx:574
msgctxt "link to bookmarks screen"
msgid "Saved"
@@ -9534,13 +9747,13 @@ msgstr ""
msgid "Saved Feeds"
msgstr "Bảng tin đã lưu"
-#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144
-#: src/Navigation.tsx:638
+#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145
+#: src/Navigation.tsx:555
#: src/screens/Bookmarks/index.tsx:59
msgid "Saved Posts"
msgstr ""
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:134
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:131
#: src/screens/ProfileList/components/Header.tsx:88
msgid "Saved to your feeds"
msgstr "Đã lưu vào bảng tin của bạn"
@@ -9551,8 +9764,8 @@ msgstr "Đã lưu vào bảng tin của bạn"
msgid "Say hello!"
msgstr "Gửi lời chào!"
-#: src/screens/Messages/ChatList.tsx:152
-#: src/screens/Messages/ChatList.tsx:360
+#: src/screens/Messages/ChatList.tsx:157
+#: src/screens/Messages/ChatList.tsx:371
msgid "Say hi to someone"
msgstr ""
@@ -9576,18 +9789,18 @@ msgstr ""
msgid "Scroll to top"
msgstr "Cuộn đến đầu trang"
-#: src/components/dialogs/SearchablePeopleList.tsx:672
+#: src/components/dialogs/SearchablePeopleList.tsx:671
#: src/components/forms/SearchInput.tsx:51
#: src/components/forms/SearchInput.tsx:53
#: src/screens/Search/Shell.tsx:362
#: src/screens/Search/Shell.tsx:525
-#: src/view/shell/bottom-bar/BottomBar.tsx:204
+#: src/view/shell/bottom-bar/BottomBar.tsx:205
msgid "Search"
msgstr "Tìm kiếm"
#. placeholder {0}: profile.handle
#. placeholder {0}: route.params.name
-#: src/Navigation.tsx:264
+#: src/Navigation.tsx:256
#: src/screens/Profile/ProfileSearch.tsx:37
msgid "Search @{0}'s posts"
msgstr "Tìm kiếm bài đăng của @{0}"
@@ -9667,7 +9880,7 @@ msgstr "Tìm kiếm bài đăng của tôi"
msgid "Search posts"
msgstr "Tìm kiếm bài đăng"
-#: src/components/dialogs/SearchablePeopleList.tsx:692
+#: src/components/dialogs/SearchablePeopleList.tsx:691
#: src/components/dms/components/UserSearchInput.tsx:63
#: src/components/ProgressGuide/FollowDialog.tsx:727
msgid "Search profiles"
@@ -9677,13 +9890,13 @@ msgstr "Tìm hồ sơ"
msgid "Search..."
msgstr "Tìm kiếm..."
-#: src/components/dialogs/SearchablePeopleList.tsx:693
+#: src/components/dialogs/SearchablePeopleList.tsx:692
#: src/components/dms/components/UserSearchInput.tsx:64
#: src/components/ProgressGuide/FollowDialog.tsx:728
msgid "Searches for profiles"
msgstr "Tìm hồ sơ"
-#: src/components/dialogs/EmailDialog/screens/Update.tsx:244
+#: src/components/dialogs/EmailDialog/screens/Update.tsx:240
msgid "Security step required"
msgstr ""
@@ -9759,7 +9972,7 @@ msgstr ""
msgid "Select a color"
msgstr "Chọn màu"
-#: src/components/moderation/ReportDialog/index.tsx:378
+#: src/components/moderation/ReportDialog/index.tsx:380
msgid "Select a reason"
msgstr ""
@@ -9828,7 +10041,7 @@ msgstr "Chọn GIF"
msgid "Select GIF \"{0}\""
msgstr "Chọn GIF \"{0}\""
-#: src/components/dms/InitiateChatFlow.tsx:651
+#: src/components/dms/InitiateChatFlow.tsx:699
msgid "Select group chat members"
msgstr ""
@@ -9850,7 +10063,7 @@ msgstr "Chọn ngôn ngữ..."
msgid "Select languages"
msgstr "Chọn ngôn ngữ..."
-#: src/components/moderation/ReportDialog/index.tsx:428
+#: src/components/moderation/ReportDialog/index.tsx:430
msgid "Select moderation service"
msgstr "Chọn dịch vụ kiểm duyệt"
@@ -9904,11 +10117,11 @@ msgstr "Chọn sở thích của bạn từ các tùy chọn dưới đây"
msgid "Select your preferred language for translations in your feed."
msgstr "Chọn ngôn ngữ ưa thích cho bản dịch trong bảng tin của bạn."
-#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115
+#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118
msgid "Select your preferred notification channels"
msgstr ""
-#: src/view/com/composer/SelectMediaButton.tsx:414
+#: src/view/com/composer/SelectMediaButton.tsx:420
msgid "Selecting multiple media types is not supported."
msgstr ""
@@ -9921,9 +10134,9 @@ msgstr ""
msgid "Send code"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175
-#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172
+#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311
#: src/screens/Settings/components/DeleteAccountDialog.tsx:199
msgid "Send email"
msgstr "Gửi email"
@@ -9939,7 +10152,7 @@ msgstr ""
msgid "Send feedback"
msgstr "Gửi phản hồi"
-#: src/screens/Messages/components/MessageComposer.tsx:284
+#: src/screens/Messages/components/MessageComposer.tsx:288
#: src/screens/Messages/components/MessageInput.web.tsx:225
msgid "Send message"
msgstr "Gửi tin nhắn"
@@ -9952,7 +10165,7 @@ msgstr ""
msgid "Send post to..."
msgstr "Gửi bài đăng đến..."
-#: src/components/moderation/ReportDialog/index.tsx:816
+#: src/components/moderation/ReportDialog/index.tsx:818
msgid "Send report to {title}"
msgstr "Gửi báo cáo cho {title}"
@@ -9960,7 +10173,7 @@ msgstr "Gửi báo cáo cho {title}"
msgid "Send the message from your phone"
msgstr ""
-#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121
#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124
msgid "Send verification email"
@@ -9974,7 +10187,7 @@ msgid "Send via direct message"
msgstr "Gửi qua tin nhắn"
#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', })
-#: src/components/dms/MessageContextMenu.tsx:154
+#: src/components/dms/MessageContextMenu.tsx:137
msgid "Sent at {0}"
msgstr ""
@@ -10015,14 +10228,14 @@ msgstr ""
msgid "Sets email for password reset"
msgstr "Đặt email để đặt lại mật khẩu"
-#: src/Navigation.tsx:220
+#: src/Navigation.tsx:212
#: src/screens/Settings/Settings.tsx:98
-#: src/view/shell/desktop/LeftNav.tsx:754
+#: src/view/shell/desktop/LeftNav.tsx:755
#: src/view/shell/Drawer.tsx:612
msgid "Settings"
msgstr "Cài đặt"
-#: src/screens/Settings/NotificationSettings/index.tsx:188
+#: src/screens/Settings/NotificationSettings/index.tsx:199
msgid "Settings for activity from others"
msgstr ""
@@ -10030,39 +10243,39 @@ msgstr ""
msgid "Settings for allowing others to be notified of your posts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:122
+#: src/screens/Settings/NotificationSettings/index.tsx:133
msgid "Settings for like notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:155
+#: src/screens/Settings/NotificationSettings/index.tsx:166
msgid "Settings for mention notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:133
+#: src/screens/Settings/NotificationSettings/index.tsx:144
msgid "Settings for new follower notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:231
+#: src/screens/Settings/NotificationSettings/index.tsx:238
msgid "Settings for notifications for everything else"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:202
+#: src/screens/Settings/NotificationSettings/index.tsx:212
msgid "Settings for notifications for likes of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:217
+#: src/screens/Settings/NotificationSettings/index.tsx:225
msgid "Settings for notifications for reposts of your reposts"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:166
+#: src/screens/Settings/NotificationSettings/index.tsx:177
msgid "Settings for quote notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:144
+#: src/screens/Settings/NotificationSettings/index.tsx:155
msgid "Settings for reply notifications"
msgstr ""
-#: src/screens/Settings/NotificationSettings/index.tsx:177
+#: src/screens/Settings/NotificationSettings/index.tsx:188
msgid "Settings for repost notifications"
msgstr ""
@@ -10079,10 +10292,12 @@ msgstr "Hành vi gợi dục hoặc khỏa thân khiêu dâm."
msgid "Sexually Suggestive"
msgstr "Khiêu dâm"
+#: src/components/MediaPreview.tsx:237
+#: src/components/Post/Embed/ImageContextMenu.tsx:74
#: src/components/StarterPack/QrCodeDialog.tsx:195
#: src/screens/Hashtag.tsx:130
-#: src/screens/Messages/components/InviteLinkDialog.tsx:370
-#: src/screens/Messages/components/InviteLinkDialog.tsx:377
+#: src/screens/Messages/components/InviteLinkDialog.tsx:382
+#: src/screens/Messages/components/InviteLinkDialog.tsx:389
#: src/screens/StarterPack/StarterPackScreen.tsx:447
#: src/screens/Topic.tsx:90
msgid "Share"
@@ -10098,8 +10313,8 @@ msgid "Share author DID"
msgstr ""
#: src/components/Lightbox/chrome/ImageMenu.tsx:94
-#: src/components/Lightbox/Lightbox.web.tsx:273
-#: src/components/Lightbox/Lightbox.web.tsx:299
+#: src/components/Lightbox/Lightbox.web.tsx:281
+#: src/components/Lightbox/Lightbox.web.tsx:307
msgid "Share image"
msgstr ""
@@ -10124,7 +10339,7 @@ msgstr ""
msgid "Share QR code"
msgstr "Chia sẻ mã QR"
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:480
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:469
msgid "Share this feed"
msgstr "Chia sẻ bảng tin này"
@@ -10151,7 +10366,7 @@ msgstr ""
msgid "Share your contacts to find friends"
msgstr ""
-#: src/Navigation.tsx:323
+#: src/Navigation.tsx:315
msgid "Shared Preferences Tester"
msgstr "Trình kiểm tra cài đặt đã chia sẻ"
@@ -10167,16 +10382,16 @@ msgstr "Hiển thị văn bản thay thế"
#: src/components/moderation/ScreenHider.tsx:179
#: src/components/moderation/ScreenHider.tsx:182
-#: src/features/liveNow/components/LiveStatusDialog.tsx:317
-#: src/features/liveNow/components/LiveStatusDialog.tsx:321
+#: src/features/liveNow/components/LiveStatusDialog.tsx:318
+#: src/features/liveNow/components/LiveStatusDialog.tsx:322
#: src/screens/List/ListHiddenScreen.tsx:194
#: src/screens/VideoFeed/index.tsx:646
#: src/screens/VideoFeed/index.tsx:652
msgid "Show anyway"
msgstr "Vẫn hiển thị"
-#: src/screens/Settings/AutomationLabelSettings.tsx:181
-#: src/screens/Settings/AutomationLabelSettings.tsx:194
+#: src/screens/Settings/AutomationLabelSettings.tsx:185
+#: src/screens/Settings/AutomationLabelSettings.tsx:198
msgid "Show automation label"
msgstr ""
@@ -10270,7 +10485,7 @@ msgid "Show warning and filter from feeds"
msgstr "Hiển thị cảnh báo và bộ lọc từ bảng tin"
#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171
msgid "Show when you’re live"
msgstr ""
@@ -10297,15 +10512,17 @@ msgstr "Hiển thị nội dung"
#: src/screens/Login/LoginForm.tsx:179
#: src/screens/Login/LoginForm.tsx:350
#: src/screens/Login/LoginForm.tsx:356
+#: src/screens/Messages/JoinRequest.tsx:280
+#: src/screens/Messages/JoinRequest.tsx:286
#: src/screens/Search/SearchResults.tsx:316
#: src/view/com/auth/SplashScreen.tsx:118
#: src/view/com/auth/SplashScreen.tsx:124
#: src/view/com/auth/SplashScreen.web.tsx:122
#: src/view/com/auth/SplashScreen.web.tsx:130
-#: src/view/shell/bottom-bar/BottomBar.tsx:342
-#: src/view/shell/bottom-bar/BottomBar.tsx:347
-#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245
+#: src/view/shell/bottom-bar/BottomBar.tsx:343
+#: src/view/shell/bottom-bar/BottomBar.tsx:348
#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250
+#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255
#: src/view/shell/NavSignupCard.tsx:58
#: src/view/shell/NavSignupCard.tsx:63
msgid "Sign in"
@@ -10329,6 +10546,10 @@ msgstr "Đăng nhập hoặc đăng ký tài khoản"
msgid "Sign in or create your account to join the conversation!"
msgstr "Đăng nhập hoặc tạo tài khoản để tham gia cuộc trò chuyện!"
+#: src/screens/Messages/JoinRequest.tsx:205
+msgid "Sign in to accept invite."
+msgstr ""
+
#: src/components/AccountList.tsx:70
msgid "Sign in to account that is not listed"
msgstr "Đăng nhập vào tải khoản chưa được liệt kê"
@@ -10337,6 +10558,10 @@ msgstr "Đăng nhập vào tải khoản chưa được liệt kê"
msgid "Sign in to Bluesky or create a new account"
msgstr "Đăng nhập vào Bluesky hoặc tạo tài khoản mới"
+#: src/screens/Messages/JoinRequest.tsx:204
+msgid "Sign in to request access to this group chat."
+msgstr ""
+
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571
#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573
msgid "Sign in to view post"
@@ -10348,9 +10573,9 @@ msgstr ""
#: src/screens/SignupQueued.tsx:94
#: src/screens/SignupQueued.tsx:97
#: src/screens/Takendown.tsx:88
-#: src/view/shell/desktop/LeftNav.tsx:226
-#: src/view/shell/desktop/LeftNav.tsx:281
-#: src/view/shell/desktop/LeftNav.tsx:284
+#: src/view/shell/desktop/LeftNav.tsx:227
+#: src/view/shell/desktop/LeftNav.tsx:282
+#: src/view/shell/desktop/LeftNav.tsx:285
msgid "Sign out"
msgstr "Đăng xuất"
@@ -10359,7 +10584,7 @@ msgid "Sign Out"
msgstr "Đăng xuất"
#: src/screens/Settings/Settings.tsx:296
-#: src/view/shell/desktop/LeftNav.tsx:223
+#: src/view/shell/desktop/LeftNav.tsx:224
msgid "Sign out?"
msgstr "Đăng xuất?"
@@ -10391,7 +10616,7 @@ msgstr "Bỏ qua"
msgid "Skip contact sharing and continue to the app"
msgstr ""
-#: src/view/com/composer/Composer.tsx:1349
+#: src/view/com/composer/Composer.tsx:1402
msgid "Skip empty posts?"
msgstr ""
@@ -10405,7 +10630,7 @@ msgstr ""
msgid "Skip to next step"
msgstr ""
-#: src/components/images/Gallery/index.tsx:417
+#: src/components/images/Gallery/index.tsx:435
msgid "slide"
msgstr ""
@@ -10413,7 +10638,7 @@ msgstr ""
msgid "Smaller"
msgstr "Nhỏ hơn"
-#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92
+#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86
msgid "Snoozes the reminder"
msgstr "Tạm bỏ qua lời nhắc"
@@ -10462,7 +10687,7 @@ msgid "Someone left the group"
msgstr ""
#. placeholder {0}: reaction.value
-#: src/components/dms/MessageItem.tsx:294
+#: src/components/dms/MessageItem.tsx:274
msgid "Someone reacted {0}"
msgstr "Ai đó đã bày tỏ cảm xúc {0}"
@@ -10487,17 +10712,22 @@ msgstr ""
msgid "Someone was removed from the group"
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:101
+#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48
+msgid "Something new is here"
+msgstr ""
+
+#: src/components/moderation/ReportDialog/index.tsx:103
msgid "Something wasn't quite right with the data you're trying to report. Please contact support."
msgstr "Có điều gì đó không đúng với dữ liệu bạn đang cố gắng báo cáo. Vui lòng liên hệ bộ phận hỗ trợ."
-#: src/screens/Messages/Conversation.tsx:135
+#: src/screens/Messages/Conversation.tsx:137
#: src/screens/Messages/ConversationSettings/index.tsx:112
+#: src/screens/Messages/JoinRequests.tsx:87
msgid "Something went wrong"
msgstr "Có gì đó không đúng"
#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139
-#: src/components/moderation/ReportDialog/index.tsx:287
+#: src/components/moderation/ReportDialog/index.tsx:289
#: src/screens/Deactivated.tsx:86
#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59
#: src/view/screens/Storybook/Admonitions.tsx:56
@@ -10517,11 +10747,11 @@ msgstr "Có gì đó không đúng!"
msgid "Something went wrong. Please try again in a moment."
msgstr ""
-#: src/components/moderation/ReportDialog/index.tsx:245
+#: src/components/moderation/ReportDialog/index.tsx:247
msgid "Something went wrong. Please try again."
msgstr "Có lỗi xảy ra. Xin vui lòng thử lại."
-#: src/screens/Profile/components/ProfileFeedHeader.tsx:546
+#: src/screens/Profile/components/ProfileFeedHeader.tsx:532
msgid "Something wrong? Let us know."
msgstr "Có gì không đúng? Hãy cho chúng tôi biết."
@@ -10568,7 +10798,7 @@ msgstr "Thể thao"
msgid "Start a conversation, and it will appear here."
msgstr ""
-#: src/components/dms/dialogs/NewChatDialog.tsx:177
+#: src/components/dms/dialogs/NewChatDialog.tsx:182
msgid "Start a new chat"
msgstr "Bắt đầu cuộc trò chuyện mới"
@@ -10582,17 +10812,17 @@ msgstr "Bắt đầu thêm người"
msgid "Start adding people!"
msgstr "Bắt đầu thêm người!"
-#: src/components/dms/InitiateChatFlow.tsx:652
+#: src/components/dms/InitiateChatFlow.tsx:700
msgid "Start chat"
msgstr ""
#: src/components/dialogs/SearchablePeopleList.tsx:428
-#: src/components/dms/InitiateChatFlow.tsx:785
+#: src/components/dms/InitiateChatFlow.tsx:848
msgid "Start chat with {displayName}"
msgstr "Bắt đầu trò chuyện với {displayName}"
-#: src/Navigation.tsx:609
-#: src/Navigation.tsx:614
+#: src/Navigation.tsx:526
+#: src/Navigation.tsx:531
#: src/screens/StarterPack/Wizard/index.tsx:197
msgid "Starter Pack"
msgstr "Gói khởi đầu"
@@ -10654,12 +10884,12 @@ msgstr "Dữ liệu đã được xóa, bạn cần khởi động lại ứng d
msgid "Stored as part of a secure code for matching with others"
msgstr ""
-#: src/Navigation.tsx:313
+#: src/Navigation.tsx:305
#: src/screens/Settings/Settings.tsx:456
msgid "Storybook"
msgstr "Storybook"
-#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181
+#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182
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 ""
@@ -10671,8 +10901,8 @@ msgstr ""
#: src/components/SendErrorReportDialog.tsx:95
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139
#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140
-#: src/screens/Messages/components/ChatDisabled.tsx:171
-#: src/screens/Messages/components/ChatDisabled.tsx:173
+#: src/screens/Messages/components/ChatDisabled.tsx:175
+#: src/screens/Messages/components/ChatDisabled.tsx:177
msgid "Submit"
msgstr "Gửi"
@@ -10684,9 +10914,9 @@ msgstr "Gửi khiếu nại"
msgid "Submit Appeal"
msgstr "Gửi khiếu nại"
-#: src/components/moderation/ReportDialog/index.tsx:506
-#: src/components/moderation/ReportDialog/index.tsx:567
-#: src/components/moderation/ReportDialog/index.tsx:574
+#: src/components/moderation/ReportDialog/index.tsx:508
+#: src/components/moderation/ReportDialog/index.tsx:569
+#: src/components/moderation/ReportDialog/index.tsx:576
msgid "Submit report"
msgstr "Gửi báo cáo"
@@ -10695,13 +10925,13 @@ msgid "Subscribe"
msgstr "Đăng ký"
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:424
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453
msgid "Subscribe on {0}"
msgstr ""
#. placeholder {0}: highlightedPublisher.name
-#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428
+#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:452
msgid "Subscribe to {publicationTitle} on {0}"
msgstr ""
@@ -10732,16 +10962,20 @@ msgid "Success"
msgstr ""
#: src/compon